import { AbsoluteTime, Codec, TranslatedString, buildCodecForObject, codecForAbsoluteTime, codecForString, } 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, LockedAccount, UnwrapKeyError, createNewAccount, unlockAccount, } from "../account.js"; import { createNewForm } from "../handlers/forms.js"; export interface Officer { account: LockedAccount; when: AbsoluteTime; } const codecForLockedAccount = codecForString() as Codec; export const codecForOfficer = (): Codec => buildCodecForObject() .property("account", codecForLockedAccount) // FIXME .property("when", codecForAbsoluteTime) // FIXME .build("Officer"); 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.account, 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.account) { return ( { password.update(pwd); officer.update({ account, when: AbsoluteTime.now() }); }} /> ); } if (password.value === undefined) { return ( { password.update(pwd); }} /> ); } return (

Public key

{keys?.accountId}

Request account activation

); } function CreateAccount({ onNewAccount, }: { onNewAccount: (account: LockedAccount, 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 account = await createNewAccount(v.password); onNewAccount(account, v.password); }} >
); } function UnlockAccount({ lockedAccount, onAccountUnlocked, }: { lockedAccount: LockedAccount; 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(lockedAccount, 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; } } }} >
); }