2021-07-31 17:22:48 +00:00
|
|
|
import type { BlitzPage } from "blitz";
|
2021-08-01 03:05:40 +00:00
|
|
|
import { Routes } from "blitz";
|
2021-07-31 17:22:48 +00:00
|
|
|
import type { FunctionComponent } from "react";
|
2021-08-01 04:29:41 +00:00
|
|
|
import { useRef } from "react";
|
2021-07-31 17:22:48 +00:00
|
|
|
import { atom, useAtom } from "jotai";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
import { faBackspace, faPhoneAlt as faPhone } from "@fortawesome/pro-solid-svg-icons";
|
2021-08-01 04:29:41 +00:00
|
|
|
import { usePress } from "@react-aria/interactions";
|
2021-07-31 17:22:48 +00:00
|
|
|
|
|
|
|
import Layout from "../../core/layouts/layout";
|
|
|
|
import useRequireOnboarding from "../../core/hooks/use-require-onboarding";
|
|
|
|
|
|
|
|
const Keypad: BlitzPage = () => {
|
|
|
|
useRequireOnboarding();
|
|
|
|
const phoneNumber = useAtom(phoneNumberAtom)[0];
|
|
|
|
const pressBackspace = useAtom(pressBackspaceAtom)[1];
|
|
|
|
|
|
|
|
return (
|
2021-08-01 03:05:40 +00:00
|
|
|
<div className="w-96 h-full flex flex-col justify-around py-5 mx-auto text-center text-black bg-white">
|
|
|
|
<div className="h-16 text-3xl text-gray-700">
|
|
|
|
<span>{phoneNumber}</span>
|
2021-07-31 17:22:48 +00:00
|
|
|
</div>
|
2021-08-01 03:05:40 +00:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<Row>
|
|
|
|
<Digit digit="1" />
|
|
|
|
<Digit digit="2">
|
|
|
|
<DigitLetters>ABC</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
<Digit digit="3">
|
|
|
|
<DigitLetters>DEF</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Digit digit="4">
|
|
|
|
<DigitLetters>GHI</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
<Digit digit="5">
|
|
|
|
<DigitLetters>JKL</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
<Digit digit="6">
|
|
|
|
<DigitLetters>MNO</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Digit digit="7">
|
|
|
|
<DigitLetters>PQRS</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
<Digit digit="8">
|
|
|
|
<DigitLetters>TUV</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
<Digit digit="9">
|
|
|
|
<DigitLetters>WXYZ</DigitLetters>
|
|
|
|
</Digit>
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<Digit digit="*" />
|
|
|
|
<ZeroDigit />
|
|
|
|
<Digit digit="#" />
|
|
|
|
</Row>
|
|
|
|
<Row>
|
|
|
|
<div className="cursor-pointer select-none col-start-2 h-12 w-12 flex justify-center items-center mx-auto bg-green-800 rounded-full">
|
2021-08-01 14:01:51 +00:00
|
|
|
<FontAwesomeIcon className="w-6 h-6" icon={faPhone} color="white" size="lg" />
|
2021-08-01 03:05:40 +00:00
|
|
|
</div>
|
2021-08-01 14:01:51 +00:00
|
|
|
<div className="cursor-pointer select-none m-auto" onClick={pressBackspace}>
|
|
|
|
<FontAwesomeIcon className="w-6 h-6" icon={faBackspace} size="lg" />
|
2021-08-01 03:05:40 +00:00
|
|
|
</div>
|
|
|
|
</Row>
|
|
|
|
</section>
|
|
|
|
</div>
|
2021-07-31 17:22:48 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const ZeroDigit: FunctionComponent = () => {
|
2021-08-01 04:29:41 +00:00
|
|
|
const timeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);
|
2021-07-31 17:22:48 +00:00
|
|
|
const pressDigit = useAtom(pressDigitAtom)[1];
|
2021-08-01 04:29:41 +00:00
|
|
|
const longPressDigit = useAtom(longPressDigitAtom)[1];
|
|
|
|
const { pressProps } = usePress({
|
|
|
|
onPressStart() {
|
|
|
|
pressDigit("0");
|
|
|
|
timeoutRef.current = setTimeout(() => {
|
|
|
|
longPressDigit("+");
|
|
|
|
}, 750);
|
|
|
|
},
|
|
|
|
onPressEnd() {
|
|
|
|
if (timeoutRef.current) {
|
|
|
|
clearTimeout(timeoutRef.current);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
2021-07-31 17:22:48 +00:00
|
|
|
|
|
|
|
return (
|
2021-08-01 04:29:41 +00:00
|
|
|
<div {...pressProps} className="text-3xl cursor-pointer select-none">
|
2021-07-31 17:22:48 +00:00
|
|
|
0 <DigitLetters>+</DigitLetters>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const Row: FunctionComponent = ({ children }) => (
|
|
|
|
<div className="grid grid-cols-3 p-4 my-0 mx-auto text-black">{children}</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const Digit: FunctionComponent<{ digit: string }> = ({ children, digit }) => {
|
|
|
|
const pressDigit = useAtom(pressDigitAtom)[1];
|
|
|
|
const onClick = () => pressDigit(digit);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div onClick={onClick} className="text-3xl cursor-pointer select-none">
|
|
|
|
{digit}
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2021-08-01 14:01:51 +00:00
|
|
|
const DigitLetters: FunctionComponent = ({ children }) => <div className="text-xs text-gray-600">{children}</div>;
|
2021-07-31 17:22:48 +00:00
|
|
|
|
|
|
|
const phoneNumberAtom = atom("");
|
2021-08-01 04:29:41 +00:00
|
|
|
const pressDigitAtom = atom(null, (get, set, digit: string) => {
|
2021-07-31 17:22:48 +00:00
|
|
|
if (get(phoneNumberAtom).length > 17) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
set(phoneNumberAtom, (prevState) => prevState + digit);
|
|
|
|
});
|
2021-08-01 04:29:41 +00:00
|
|
|
const longPressDigitAtom = atom(null, (get, set, replaceWith: string) => {
|
|
|
|
if (get(phoneNumberAtom).length > 17) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
set(phoneNumberAtom, (prevState) => prevState.slice(0, -1) + replaceWith);
|
|
|
|
});
|
2021-07-31 17:22:48 +00:00
|
|
|
const pressBackspaceAtom = atom(null, (get, set) => {
|
|
|
|
if (get(phoneNumberAtom).length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
set(phoneNumberAtom, (prevState) => prevState.slice(0, -1));
|
|
|
|
});
|
|
|
|
|
2021-08-01 03:05:40 +00:00
|
|
|
Keypad.getLayout = (page) => <Layout title="Keypad">{page}</Layout>;
|
|
|
|
|
|
|
|
Keypad.authenticate = { redirectTo: Routes.SignIn() };
|
|
|
|
|
2021-07-31 17:22:48 +00:00
|
|
|
export default Keypad;
|