wallet-core/packages/anastasis-webui/src/pages/home/SecretSelectionScreen.tsx

250 lines
7.4 KiB
TypeScript
Raw Normal View History

2021-10-19 15:56:52 +02:00
import { h, VNode } from "preact";
import { useState } from "preact/hooks";
2021-11-04 20:51:19 +01:00
import { AsyncButton } from "../../components/AsyncButton";
2021-11-09 23:14:44 +01:00
import { PhoneNumberInput } from "../../components/fields/NumberInput";
2021-10-22 06:31:46 +02:00
import { useAnastasisContext } from "../../context/anastasis";
2021-11-09 04:19:50 +01:00
import { AddingProviderScreen } from "./AddingProviderScreen";
2021-10-22 06:31:46 +02:00
import { AnastasisClientFrame } from "./index";
2021-10-19 15:56:52 +02:00
2021-10-22 06:31:46 +02:00
export function SecretSelectionScreen(): VNode {
2021-10-19 15:56:52 +02:00
const [selectingVersion, setSelectingVersion] = useState<boolean>(false);
2021-11-10 14:20:52 +01:00
const reducer = useAnastasisContext();
2021-10-22 06:31:46 +02:00
2021-11-10 14:20:52 +01:00
const [manageProvider, setManageProvider] = useState(false);
const currentVersion =
(reducer?.currentReducerState &&
"recovery_document" in reducer.currentReducerState &&
reducer.currentReducerState.recovery_document?.version) ||
0;
2021-10-22 06:31:46 +02:00
if (!reducer) {
2021-11-10 14:20:52 +01:00
return <div>no reducer in context</div>;
2021-10-22 06:31:46 +02:00
}
2021-11-10 14:20:52 +01:00
if (
!reducer.currentReducerState ||
reducer.currentReducerState.recovery_state === undefined
) {
return <div>invalid state</div>;
2021-10-22 06:31:46 +02:00
}
2021-11-05 15:17:42 +01:00
async function doSelectVersion(p: string, n: number): Promise<void> {
2021-11-04 20:51:19 +01:00
if (!reducer) return Promise.resolve();
return reducer.runTransaction(async (tx) => {
2021-10-19 15:56:52 +02:00
await tx.transition("change_version", {
version: n,
provider_url: p,
});
2021-11-04 20:51:19 +01:00
setSelectingVersion(false);
2021-10-19 15:56:52 +02:00
});
}
2021-10-22 06:31:46 +02:00
2021-11-10 14:20:52 +01:00
const providerList = Object.keys(
reducer.currentReducerState.authentication_providers ?? {},
);
const recoveryDocument = reducer.currentReducerState.recovery_document;
2021-10-27 20:13:35 +02:00
2021-11-05 15:17:42 +01:00
if (!recoveryDocument) {
2021-11-10 14:20:52 +01:00
return (
<ChooseAnotherProviderScreen
providers={providerList}
selected=""
onChange={(newProv) => doSelectVersion(newProv, 0)}
/>
);
2021-10-19 15:56:52 +02:00
}
2021-11-04 20:51:19 +01:00
2021-11-05 15:17:42 +01:00
if (selectingVersion) {
2021-11-10 14:20:52 +01:00
return (
<SelectOtherVersionProviderScreen
providers={providerList}
provider={recoveryDocument.provider_url}
version={recoveryDocument.version}
onCancel={() => setSelectingVersion(false)}
onConfirm={doSelectVersion}
/>
);
2021-11-04 20:51:19 +01:00
}
2021-11-09 04:19:50 +01:00
if (manageProvider) {
2021-11-10 14:20:52 +01:00
return <AddingProviderScreen onCancel={() => setManageProvider(false)} />;
2021-11-09 04:19:50 +01:00
}
2021-10-19 15:56:52 +02:00
return (
<AnastasisClientFrame title="Recovery: Select secret">
2021-11-04 19:17:57 +01:00
<div class="columns">
2021-11-04 20:51:19 +01:00
<div class="column">
2021-11-10 14:20:52 +01:00
<div class="box" style={{ border: "2px solid green" }}>
2021-11-04 19:17:57 +01:00
<h1 class="subtitle">{recoveryDocument.provider_url}</h1>
2021-11-04 20:51:19 +01:00
<div class="block">
2021-11-10 14:20:52 +01:00
{currentVersion === 0 ? (
<p>Set to recover the latest version</p>
) : (
<p>Set to recover the version number {currentVersion}</p>
)}
2021-11-04 20:51:19 +01:00
</div>
2021-11-04 19:17:57 +01:00
<div class="buttons is-right">
2021-11-10 14:20:52 +01:00
<button class="button" onClick={(e) => setSelectingVersion(true)}>
Change secret's version
</button>
2021-11-04 19:17:57 +01:00
</div>
</div>
</div>
2021-11-04 20:51:19 +01:00
<div class="column">
2021-11-10 14:20:52 +01:00
<p>
Secret found, you can select another version or continue to the
challenges solving
</p>
2021-11-09 04:19:50 +01:00
<p class="block">
2021-11-10 14:20:52 +01:00
<a onClick={() => setManageProvider(true)}>
2021-11-09 04:19:50 +01:00
Manage recovery providers
2021-11-10 14:20:52 +01:00
</a>
2021-11-09 04:19:50 +01:00
</p>
2021-11-04 19:17:57 +01:00
</div>
</div>
2021-10-19 15:56:52 +02:00
</AnastasisClientFrame>
);
}
2021-11-05 15:17:42 +01:00
2021-11-10 14:20:52 +01:00
function ChooseAnotherProviderScreen({
providers,
selected,
onChange,
}: {
selected: string;
providers: string[];
onChange: (prov: string) => void;
}): VNode {
2021-11-05 15:17:42 +01:00
return (
2021-11-10 14:20:52 +01:00
<AnastasisClientFrame
hideNext="Recovery document not found"
title="Recovery: Problem"
>
2021-11-05 15:17:42 +01:00
<p>No recovery document found, try with another provider</p>
<div class="field">
<label class="label">Provider</label>
<div class="control is-expanded has-icons-left">
<div class="select is-fullwidth">
2021-11-10 14:20:52 +01:00
<select
onChange={(e) => onChange(e.currentTarget.value)}
value={selected}
>
<option key="none" disabled selected value="">
{" "}
Choose a provider{" "}
</option>
{providers.map((prov) => (
2021-11-05 15:17:42 +01:00
<option key={prov} value={prov}>
{prov}
</option>
))}
</select>
<div class="icon is-small is-left">
<i class="mdi mdi-earth" />
</div>
</div>
</div>
</div>
</AnastasisClientFrame>
);
}
2021-11-10 14:20:52 +01:00
function SelectOtherVersionProviderScreen({
providers,
provider,
version,
onConfirm,
onCancel,
}: {
onCancel: () => void;
provider: string;
version: number;
providers: string[];
onConfirm: (prov: string, v: number) => Promise<void>;
}): VNode {
2021-11-05 15:17:42 +01:00
const [otherProvider, setOtherProvider] = useState<string>(provider);
2021-11-10 14:20:52 +01:00
const [otherVersion, setOtherVersion] = useState(
version > 0 ? String(version) : "",
);
2021-11-05 15:17:42 +01:00
return (
<AnastasisClientFrame hideNav title="Recovery: Select secret">
<div class="columns">
<div class="column">
<div class="box">
<h1 class="subtitle">Provider {otherProvider}</h1>
<div class="block">
2021-11-10 14:20:52 +01:00
{version === 0 ? (
<p>Set to recover the latest version</p>
) : (
<p>Set to recover the version number {version}</p>
)}
2021-11-05 15:17:42 +01:00
<p>Specify other version below or use the latest</p>
</div>
<div class="field">
<label class="label">Provider</label>
<div class="control is-expanded has-icons-left">
<div class="select is-fullwidth">
2021-11-10 14:20:52 +01:00
<select
onChange={(e) => setOtherProvider(e.currentTarget.value)}
value={otherProvider}
>
<option key="none" disabled selected value="">
{" "}
Choose a provider{" "}
</option>
{providers.map((prov) => (
2021-11-05 15:17:42 +01:00
<option key={prov} value={prov}>
{prov}
</option>
))}
</select>
<div class="icon is-small is-left">
<i class="mdi mdi-earth" />
</div>
</div>
</div>
</div>
<div class="container">
2021-11-09 23:14:44 +01:00
<PhoneNumberInput
2021-11-05 15:17:42 +01:00
label="Version"
placeholder="version number to recover"
grabFocus
2021-11-10 14:20:52 +01:00
bind={[otherVersion, setOtherVersion]}
/>
2021-11-05 15:17:42 +01:00
</div>
</div>
2021-11-10 14:20:52 +01:00
<div
style={{
marginTop: "2em",
display: "flex",
justifyContent: "space-between",
}}
>
<button class="button" onClick={onCancel}>
Cancel
</button>
2021-11-05 15:17:42 +01:00
<div class="buttons">
2021-11-10 14:20:52 +01:00
<AsyncButton
class="button"
onClick={() => onConfirm(otherProvider, 0)}
>
Use latest
</AsyncButton>
<AsyncButton
class="button is-info"
onClick={() =>
onConfirm(otherProvider, parseInt(otherVersion, 10))
}
>
Confirm
</AsyncButton>
2021-11-05 15:17:42 +01:00
</div>
</div>
</div>
2021-11-10 14:20:52 +01:00
<div class="column">.</div>
2021-11-05 15:17:42 +01:00
</div>
</AnastasisClientFrame>
);
}