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";
|
|
|
|
import { NumberInput } from "../../components/fields/NumberInput";
|
2021-10-22 06:31:46 +02:00
|
|
|
import { useAnastasisContext } from "../../context/anastasis";
|
|
|
|
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-10-22 06:31:46 +02:00
|
|
|
const reducer = useAnastasisContext()
|
|
|
|
|
2021-11-04 20:51:19 +01:00
|
|
|
const currentVersion = (reducer?.currentReducerState
|
2021-10-22 06:31:46 +02:00
|
|
|
&& ("recovery_document" in reducer.currentReducerState)
|
2021-11-04 20:51:19 +01:00
|
|
|
&& reducer.currentReducerState.recovery_document?.version) || 0;
|
2021-10-22 06:31:46 +02:00
|
|
|
|
|
|
|
if (!reducer) {
|
|
|
|
return <div>no reducer in context</div>
|
|
|
|
}
|
|
|
|
if (!reducer.currentReducerState || reducer.currentReducerState.recovery_state === undefined) {
|
|
|
|
return <div>invalid state</div>
|
|
|
|
}
|
|
|
|
|
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-10-27 20:13:35 +02:00
|
|
|
const providerList = Object.keys(reducer.currentReducerState.authentication_providers ?? {})
|
2021-10-22 06:31:46 +02:00
|
|
|
const recoveryDocument = reducer.currentReducerState.recovery_document
|
2021-10-27 20:13:35 +02:00
|
|
|
|
2021-11-05 15:17:42 +01:00
|
|
|
if (!recoveryDocument) {
|
|
|
|
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) {
|
|
|
|
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-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">
|
|
|
|
<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">
|
|
|
|
{currentVersion === 0 ? <p>
|
|
|
|
Set to recover the latest version
|
|
|
|
</p> : <p>
|
|
|
|
Set to recover the version number {currentVersion}
|
|
|
|
</p>}
|
|
|
|
</div>
|
2021-11-04 19:17:57 +01:00
|
|
|
<div class="buttons is-right">
|
2021-11-04 20:51:19 +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-04 19:17:57 +01:00
|
|
|
<p>Secret found, you can select another version or continue to the challenges solving</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-19 15:56:52 +02:00
|
|
|
</AnastasisClientFrame>
|
|
|
|
);
|
|
|
|
}
|
2021-11-05 15:17:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
function ChooseAnotherProviderScreen({ providers, selected, onChange }: { selected: string; providers: string[]; onChange: (prov: string) => void }): VNode {
|
|
|
|
return (
|
|
|
|
<AnastasisClientFrame hideNext="Recovery document not found" title="Recovery: Problem">
|
|
|
|
<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">
|
|
|
|
<select onChange={(e) => onChange(e.currentTarget.value)} value={selected}>
|
|
|
|
<option key="none" disabled selected value=""> Choose a provider </option>
|
|
|
|
{providers.map(prov => (
|
|
|
|
<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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function SelectOtherVersionProviderScreen({ providers, provider, version, onConfirm, onCancel }: { onCancel: () => void; provider: string; version: number; providers: string[]; onConfirm: (prov: string, v: number) => Promise<void>; }): VNode {
|
|
|
|
const [otherProvider, setOtherProvider] = useState<string>(provider);
|
2021-11-05 18:56:03 +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">
|
|
|
|
{version === 0 ? <p>
|
|
|
|
Set to recover the latest version
|
|
|
|
</p> : <p>
|
|
|
|
Set to recover the version number {version}
|
|
|
|
</p>}
|
|
|
|
<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">
|
|
|
|
<select onChange={(e) => setOtherProvider(e.currentTarget.value)} value={otherProvider}>
|
|
|
|
<option key="none" disabled selected value=""> Choose a provider </option>
|
|
|
|
{providers.map(prov => (
|
|
|
|
<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">
|
|
|
|
<NumberInput
|
|
|
|
label="Version"
|
|
|
|
placeholder="version number to recover"
|
|
|
|
grabFocus
|
|
|
|
bind={[otherVersion, setOtherVersion]} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style={{ marginTop: '2em', display: 'flex', justifyContent: 'space-between' }}>
|
|
|
|
<button class="button" onClick={onCancel}>Cancel</button>
|
|
|
|
<div class="buttons">
|
|
|
|
<AsyncButton class="button" onClick={() => onConfirm(otherProvider, 0)}>Use latest</AsyncButton>
|
|
|
|
<AsyncButton class="button is-info" onClick={() => onConfirm(otherProvider, parseInt(otherVersion, 10))}>Confirm</AsyncButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
.
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</AnastasisClientFrame>
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|