53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { type LoaderFunctionArgs, redirect } from "@remix-run/server-runtime";
|
|
import { prisma } from "~/db.server";
|
|
import { getUsersInvites } from "~/models/member.server";
|
|
import { SelectBestEnvironmentPresenter } from "~/presenters/SelectBestEnvironmentPresenter.server";
|
|
import { requireUser } from "~/services/session.server";
|
|
import {
|
|
invitesPath,
|
|
newOrganizationPath,
|
|
newProjectPath,
|
|
v3EnvironmentPath,
|
|
} from "~/utils/pathBuilder";
|
|
|
|
//this loader chooses the best project to redirect you to, ideally based on the cookie
|
|
export const loader = async ({ request }: LoaderFunctionArgs) => {
|
|
const user = await requireUser(request);
|
|
|
|
//if there are invites then we should redirect to the invites page
|
|
const invites = await getUsersInvites({ email: user.email });
|
|
if (invites.length > 0) {
|
|
return redirect(invitesPath());
|
|
}
|
|
|
|
const presenter = new SelectBestEnvironmentPresenter();
|
|
try {
|
|
const { project, organization, environment } = await presenter.call({
|
|
user,
|
|
});
|
|
//redirect them to the most appropriate project
|
|
return redirect(v3EnvironmentPath(organization, project, environment));
|
|
} catch (_e) {
|
|
const organization = await prisma.organization.findFirst({
|
|
where: {
|
|
members: {
|
|
some: {
|
|
userId: user.id,
|
|
},
|
|
},
|
|
deletedAt: null,
|
|
},
|
|
orderBy: {
|
|
createdAt: "desc",
|
|
},
|
|
});
|
|
|
|
if (organization) {
|
|
return redirect(newProjectPath(organization));
|
|
}
|
|
|
|
//this should only happen if the user has no projects, and no invites
|
|
return redirect(newOrganizationPath());
|
|
}
|
|
};
|