2021-10-19 15:56:52 +02:00
|
|
|
/* eslint-disable @typescript-eslint/camelcase */
|
2021-11-04 20:51:19 +01:00
|
|
|
import { RecoveryInternalData } from "anastasis-core";
|
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);
|
|
|
|
const [otherProvider, setOtherProvider] = useState<string>("");
|
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
|
|
|
|
2021-11-04 20:51:19 +01:00
|
|
|
const [otherVersion, setOtherVersion] = useState("");
|
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-04 20:51:19 +01:00
|
|
|
async function selectVersion(p: string, n: number): Promise<void> {
|
|
|
|
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
|
|
|
|
if (!recoveryDocument) {
|
|
|
|
return (
|
2021-11-01 20:10:49 +01:00
|
|
|
<AnastasisClientFrame hideNext="Recovery document not found" title="Recovery: Problem">
|
2021-10-27 20:13:35 +02:00
|
|
|
<p>No recovery document found, try with another provider</p>
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<td><b>Provider</b></td>
|
|
|
|
<td>
|
|
|
|
<select onChange={(e) => setOtherProvider((e.target as any).value)}>
|
|
|
|
<option key="none" disabled selected > Choose another provider </option>
|
|
|
|
{providerList.map(prov => (
|
|
|
|
<option key={prov} value={prov}>
|
|
|
|
{prov}
|
|
|
|
</option>
|
|
|
|
))}
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2021-10-22 06:31:46 +02:00
|
|
|
</AnastasisClientFrame>
|
|
|
|
)
|
|
|
|
}
|
2021-10-19 15:56:52 +02:00
|
|
|
if (selectingVersion) {
|
|
|
|
return (
|
|
|
|
<AnastasisClientFrame hideNav title="Recovery: Select secret">
|
2021-11-04 20:51:19 +01:00
|
|
|
<div class="columns">
|
|
|
|
<div class="column">
|
|
|
|
<div class="box">
|
|
|
|
<h1 class="subtitle">Provider {recoveryDocument.provider_url}</h1>
|
|
|
|
<div class="block">
|
|
|
|
{currentVersion === 0 ? <p>
|
|
|
|
Set to recover the latest version
|
|
|
|
</p> : <p>
|
|
|
|
Set to recover the version number {currentVersion}
|
|
|
|
</p>}
|
|
|
|
<p>Specify other version below or use the latest</p>
|
|
|
|
</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={() => setSelectingVersion(false)}>Cancel</button>
|
|
|
|
<div class="buttons">
|
|
|
|
<button class="button " onClick={() => selectVersion(otherProvider, 0)}>Use latest</button>
|
|
|
|
<AsyncButton onClick={() => selectVersion(otherProvider, parseInt(otherVersion, 10))}>Confirm</AsyncButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
|
|
|
.
|
|
|
|
</div>
|
2021-10-19 15:56:52 +02:00
|
|
|
</div>
|
2021-10-27 20:13:35 +02:00
|
|
|
|
2021-10-19 15:56:52 +02:00
|
|
|
</AnastasisClientFrame>
|
|
|
|
);
|
|
|
|
}
|
2021-11-04 20:51:19 +01:00
|
|
|
|
|
|
|
function ProviderCard({ provider, selected }: { selected?: boolean; provider: string }): VNode {
|
|
|
|
return <button key={provider} class="button block is-fullwidth" style={{ border: selected ? '2px solid green' : undefined }}
|
|
|
|
onClick={(e) => selectVersion(provider, currentVersion)}
|
|
|
|
>
|
|
|
|
{provider}
|
|
|
|
</button>
|
|
|
|
}
|
|
|
|
|
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>
|
2021-11-04 20:51:19 +01:00
|
|
|
<p class="block">
|
|
|
|
Or you can use another provider
|
|
|
|
</p>
|
|
|
|
{providerList.map(prov => {
|
|
|
|
if (recoveryDocument.provider_url === prov) return;
|
|
|
|
return <ProviderCard key={prov} provider={prov} />
|
|
|
|
})}
|
2021-11-04 19:17:57 +01:00
|
|
|
</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>
|
|
|
|
);
|
|
|
|
}
|