1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-23 15:07:43 +01:00
smov/src/pages/parts/auth/PassphraseGeneratePart.tsx

36 lines
1 KiB
TypeScript
Raw Normal View History

2023-11-05 01:16:45 +01:00
import { useMemo } from "react";
import { genMnemonic } from "@/backend/accounts/crypto";
import { Button } from "@/components/Button";
import { Icon, Icons } from "@/components/Icon";
import {
LargeCard,
LargeCardButtons,
LargeCardText,
} from "@/components/layout/LargeCard";
2023-11-24 21:54:44 +01:00
import { PassphraseDisplay } from "@/components/PassphraseDisplay";
2023-11-05 01:16:45 +01:00
interface PassphraseGeneratePartProps {
onNext?: (mnemonic: string) => void;
}
export function PassphraseGeneratePart(props: PassphraseGeneratePartProps) {
const mnemonic = useMemo(() => genMnemonic(), []);
return (
<LargeCard>
<LargeCardText title="Your passphrase" icon={<Icon icon={Icons.USER} />}>
If you lose this, you&apos;re a silly goose and will be posted on the
wall of shame
</LargeCardText>
2023-11-24 21:54:44 +01:00
<PassphraseDisplay mnemonic={mnemonic} />
<LargeCardButtons>
<Button theme="purple" onClick={() => props.onNext?.(mnemonic)}>
NEXT!
</Button>
</LargeCardButtons>
</LargeCard>
2023-11-05 01:16:45 +01:00
);
}