shellphone.app/app/routes/__app/keypad.tsx

133 lines
3.8 KiB
TypeScript
Raw Normal View History

2022-05-22 10:59:53 +00:00
import { Fragment } from "react";
import type { LoaderFunction, MetaFunction } from "@remix-run/node";
2022-05-14 10:22:06 +00:00
import { useNavigate } from "@remix-run/react";
2022-05-22 10:59:53 +00:00
import { json, useLoaderData } from "superjson-remix";
2021-08-29 23:53:22 +00:00
import { Transition } from "@headlessui/react";
import { IoBackspace, IoCall } from "react-icons/io5";
2022-05-22 10:59:53 +00:00
import { Prisma } from "@prisma/client";
2022-05-14 10:22:06 +00:00
import useKeyPress from "~/features/keypad/hooks/use-key-press";
2022-05-22 10:59:53 +00:00
import useOnBackspacePress from "~/features/keypad/hooks/use-on-backspace-press";
import Keypad from "~/features/keypad/components/keypad";
import BlurredKeypad from "~/features/keypad/components/blurred-keypad";
import MissingTwilioCredentials from "~/features/core/components/missing-twilio-credentials";
2022-05-14 10:22:06 +00:00
import InactiveSubscription from "~/features/core/components/inactive-subscription";
2022-05-22 10:59:53 +00:00
import { getSeoMeta } from "~/utils/seo";
import db from "~/utils/db.server";
import { requireLoggedIn } from "~/utils/auth.server";
import { usePhoneNumber, usePressDigit, useRemoveDigit } from "~/features/keypad/hooks/atoms";
export const meta: MetaFunction = () => ({
...getSeoMeta({ title: "Keypad" }),
});
type KeypadLoaderData = {
hasOngoingSubscription: boolean;
hasPhoneNumber: boolean;
lastRecipientCalled?: string;
};
export const loader: LoaderFunction = async ({ request }) => {
const { phoneNumber } = await requireLoggedIn(request);
const hasOngoingSubscription = true; // TODO
const hasPhoneNumber = Boolean(phoneNumber);
const lastCall =
phoneNumber &&
(await db.phoneCall.findFirst({
where: { phoneNumberId: phoneNumber.id },
orderBy: { createdAt: Prisma.SortOrder.desc },
}));
return json<KeypadLoaderData>({
hasOngoingSubscription,
hasPhoneNumber,
lastRecipientCalled: lastCall?.recipient,
});
};
2022-05-14 10:22:06 +00:00
export default function KeypadPage() {
2022-05-22 10:59:53 +00:00
const { hasOngoingSubscription, hasPhoneNumber, lastRecipientCalled } = useLoaderData<KeypadLoaderData>();
2022-05-14 10:22:06 +00:00
const navigate = useNavigate();
2022-05-22 10:59:53 +00:00
const [phoneNumber, setPhoneNumber] = usePhoneNumber();
const removeDigit = useRemoveDigit();
const pressDigit = usePressDigit();
const onBackspacePress = useOnBackspacePress();
useKeyPress((key) => {
if (!hasOngoingSubscription) {
return;
}
if (key === "Backspace") {
return removeDigit();
}
pressDigit(key);
});
2021-08-29 23:53:22 +00:00
2022-05-22 10:59:53 +00:00
if (!hasPhoneNumber) {
return (
<>
<MissingTwilioCredentials />
<BlurredKeypad />
</>
);
}
2021-07-31 17:22:48 +00:00
if (!hasOngoingSubscription) {
return (
<>
<InactiveSubscription />
2022-05-22 10:59:53 +00:00
<BlurredKeypad />
</>
);
}
2021-07-31 17:22:48 +00:00
return (
2021-10-15 22:24:28 +00:00
<>
<div className="w-96 h-full flex flex-col justify-around py-5 mx-auto text-center text-black">
<div className="h-16 text-3xl text-gray-700">
<span>{phoneNumber}</span>
</div>
2022-05-22 10:59:53 +00:00
<Keypad>
2021-10-15 22:24:28 +00:00
<button
onClick={async () => {
2022-05-22 10:59:53 +00:00
if (!hasPhoneNumber || !hasOngoingSubscription) {
return;
2021-10-15 22:24:28 +00:00
}
if (phoneNumber === "") {
2022-05-22 10:59:53 +00:00
if (lastRecipientCalled) {
setPhoneNumber(lastRecipientCalled);
2021-10-15 22:24:28 +00:00
}
2021-07-31 17:22:48 +00:00
2021-10-15 22:24:28 +00:00
return;
2021-08-13 11:55:05 +00:00
}
2022-05-14 10:22:06 +00:00
await navigate(`/outgoing-call/${encodeURI(phoneNumber)}`);
2021-10-15 22:24:28 +00:00
setPhoneNumber("");
}}
className="cursor-pointer select-none col-start-2 h-12 w-12 flex justify-center items-center mx-auto bg-green-800 rounded-full"
>
<IoCall className="w-6 h-6 text-white" />
</button>
<Transition
as={Fragment}
show={phoneNumber.length > 0}
enter="transition duration-300 ease-in-out"
enterFrom="transform scale-95 opacity-0"
enterTo="transform scale-100 opacity-100"
leave="transition duration-100 ease-out"
leaveFrom="transform scale-100 opacity-100"
leaveTo="transform scale-95 opacity-0"
>
<div {...onBackspacePress} className="cursor-pointer select-none m-auto">
<IoBackspace className="w-6 h-6" />
</div>
</Transition>
</Keypad>
</div>
</>
2021-07-31 17:22:48 +00:00
);
2022-05-14 10:22:06 +00:00
}