57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import type { LoaderFunction } from "@remix-run/node";
|
|
import { json } from "superjson-remix";
|
|
import { parsePhoneNumber } from "awesome-phonenumber";
|
|
import { type Message, Prisma } from "@prisma/client";
|
|
|
|
import db from "~/utils/db.server";
|
|
import { requireLoggedIn } from "~/utils/auth.server";
|
|
import { redirect } from "@remix-run/node";
|
|
|
|
type ConversationType = {
|
|
recipient: string;
|
|
formattedPhoneNumber: string;
|
|
messages: Message[];
|
|
};
|
|
|
|
export type ConversationLoaderData = {
|
|
conversation: ConversationType;
|
|
};
|
|
|
|
const loader: LoaderFunction = async ({ request, params }) => {
|
|
const { twilio } = await requireLoggedIn(request);
|
|
if (!twilio) {
|
|
return redirect("/messages");
|
|
}
|
|
|
|
const twilioAccountSid = twilio.accountSid;
|
|
const recipient = decodeURIComponent(params.recipient ?? "");
|
|
const conversation = await getConversation(recipient);
|
|
|
|
return json<ConversationLoaderData>({ conversation });
|
|
|
|
async function getConversation(recipient: string): Promise<ConversationType> {
|
|
const phoneNumber = await db.phoneNumber.findUnique({
|
|
where: { twilioAccountSid_isCurrent: { twilioAccountSid, isCurrent: true } },
|
|
});
|
|
if (!phoneNumber || phoneNumber.isFetchingMessages) {
|
|
throw new Error("unreachable");
|
|
}
|
|
|
|
const formattedPhoneNumber = parsePhoneNumber(recipient).getNumber("international");
|
|
const messages = await db.message.findMany({
|
|
where: {
|
|
phoneNumberId: phoneNumber.id,
|
|
OR: [{ from: recipient }, { to: recipient }],
|
|
},
|
|
orderBy: { sentAt: Prisma.SortOrder.asc },
|
|
});
|
|
return {
|
|
recipient,
|
|
formattedPhoneNumber,
|
|
messages,
|
|
};
|
|
}
|
|
};
|
|
|
|
export default loader;
|