import { TranslatedString } from "@gnu-taler/taler-util"; import { notifyError, notifyInfo, useLocalStorage, useMemoryStorage, useTranslationContext, } from "@gnu-taler/web-util/browser"; import { VNode, h } from "preact"; import { useEffect, useState } from "preact/hooks"; import { Account, UnwrapKeyError, createNewAccount, unlockAccount, } from "../account.js"; import { createNewForm } from "../handlers/forms.js"; import { Officer, codecForOfficer } from "../Dashboard.js"; export function Officer() { const password = useMemoryStorage("password"); const officer = useLocalStorage("officer", { codec: codecForOfficer(), }); const [keys, setKeys] = useState(); useEffect(() => { if (officer.value === undefined || password.value === undefined) { return; } unlockAccount(officer.value.salt, officer.value.key, password.value) .then((keys) => setKeys(keys ?? { accountId: "", pub: "" })) .catch((e) => { if (e instanceof UnwrapKeyError) { console.log(e); } }); }, [officer.value, password.value]); if ( officer.value === undefined || !officer.value.key || !officer.value.salt ) { return ( { password.update(pwd); officer.update({ salt, when: { t_ms: Date.now() }, key }); }} /> ); } if (password.value === undefined) { return ( { password.update(pwd); }} /> ); } return (

Public key

{keys?.accountId}

Request account activation

); } function CreateAccount({ onNewAccount, }: { onNewAccount: (salt: string, accountId: string, password: string) => void; }): VNode { const { i18n } = useTranslationContext(); const Form = createNewForm<{ password: string; repeat: string; }>(); return (

Create account

{ return { password: { error: !v.password ? i18n.str`required` : v.password.length < 8 ? i18n.str`should have at least 8 characters` : !v.password.match(/[a-z]/) && v.password.match(/[A-Z]/) ? i18n.str`should have lowercase and uppercase characters` : !v.password.match(/\d/) ? i18n.str`should have numbers` : !v.password.match(/[^a-zA-Z\d]/) ? i18n.str`should have at least one character which is not a number or letter` : undefined, }, repeat: { // error: !v.repeat // ? i18n.str`required` // // : v.repeat !== v.password // // ? i18n.str`doesn't match` // : undefined, }, }; }} onSubmit={async (v) => { const keys = await createNewAccount(v.password); onNewAccount(keys.salt, keys.accountId, v.password); }} >
); } function UnlockAccount({ salt, sealedKey, onAccountUnlocked, }: { salt: string; sealedKey: string; onAccountUnlocked: (password: string) => void; }): VNode { const Form = createNewForm<{ password: string; }>(); return (

Account locked

Your account is normally locked anytime you reload. To unlock type your password again.

{ try { // test login await unlockAccount(salt, sealedKey, v.password); onAccountUnlocked(v.password ?? ""); notifyInfo("Account unlocked" as TranslatedString); } catch (e) { if (e instanceof UnwrapKeyError) { notifyError( "Could not unlock account" as any, e.message as any, ); } else { throw e; } } }} >
); }