import { useCallback, useEffect } from "react"; import type { MetaFunction } from "@remix-run/node"; import { useParams } from "@remix-run/react"; import { IoCall } from "react-icons/io5"; import { getSeoMeta } from "~/utils/seo"; import { usePhoneNumber, usePressDigit } from "~/features/keypad/hooks/atoms"; import useDevice from "~/features/phone-calls/hooks/use-device"; import useMakeCall from "~/features/phone-calls/hooks/use-make-call"; import Keypad from "~/features/keypad/components/keypad"; export const meta: MetaFunction = ({ params }) => { const recipient = decodeURIComponent(params.recipient ?? ""); return { ...getSeoMeta({ title: `Calling ${recipient}`, }), }; }; export default function OutgoingCallPage() { const params = useParams<{ recipient: string }>(); const recipient = decodeURIComponent(params.recipient ?? ""); const [phoneNumber, setPhoneNumber] = usePhoneNumber(); const onHangUp = useCallback(() => setPhoneNumber(""), [setPhoneNumber]); const call = useMakeCall({ recipient, onHangUp }); const { isDeviceReady } = useDevice(); const pressDigit = usePressDigit(); const onDigitPressProps = useCallback( (digit: string) => ({ onPress() { pressDigit(digit); call.sendDigits(digit); }, }), [call, pressDigit], ); useEffect(() => { if (isDeviceReady) { call.makeCall(); } }, [call, isDeviceReady]); return (
{recipient}
{phoneNumber}
{translateState(call.state)}
); function translateState(state: typeof call.state) { switch (state) { case "initial": case "ready": return "Connecting..."; case "calling": return "Calling..."; case "call_in_progress": return "In call"; // TODO display time elapsed case "call_ending": return "Call ending..."; case "call_ended": return "Call ended"; } } } export const handle = { hideFooter: true };