33 lines
828 B
TypeScript
33 lines
828 B
TypeScript
import type { LoaderFunctionArgs } from "@remix-run/server-runtime";
|
|
import { z } from "zod";
|
|
import { prisma } from "~/db.server";
|
|
import { redirectWithErrorMessage } from "~/models/message.server";
|
|
import { v3BillingPath } from "~/utils/pathBuilder";
|
|
|
|
const ParamsSchema = z.object({
|
|
organizationId: z.string(),
|
|
});
|
|
|
|
export const loader = async ({ request, params }: LoaderFunctionArgs) => {
|
|
const { organizationId } = ParamsSchema.parse(params);
|
|
|
|
const org = await prisma.organization.findUnique({
|
|
select: {
|
|
slug: true,
|
|
},
|
|
where: {
|
|
id: organizationId,
|
|
},
|
|
});
|
|
|
|
if (!org) {
|
|
throw new Response(null, { status: 404 });
|
|
}
|
|
|
|
return redirectWithErrorMessage(
|
|
v3BillingPath({ slug: org.slug }),
|
|
request,
|
|
"You didn't complete your details on Stripe. Please try again."
|
|
);
|
|
};
|