2021-10-19 15:56:52 +02:00
|
|
|
import { h, VNode } from "preact";
|
2021-11-03 21:30:11 +01:00
|
|
|
import { useState } from "preact/hooks";
|
2021-10-22 06:31:46 +02:00
|
|
|
import { useAnastasisContext } from "../../context/anastasis";
|
2021-11-02 16:31:37 +01:00
|
|
|
import { authMethods, KnownAuthMethods } from "./authMethod";
|
2021-11-03 21:30:11 +01:00
|
|
|
import { EditPoliciesScreen } from "./EditPoliciesScreen";
|
|
|
|
import { AnastasisClientFrame } from "./index";
|
2021-10-22 06:31:46 +02:00
|
|
|
|
|
|
|
export function ReviewPoliciesScreen(): VNode {
|
2021-11-03 21:30:11 +01:00
|
|
|
const [editingPolicy, setEditingPolicy] = useState<number | undefined>()
|
2021-10-22 06:31:46 +02:00
|
|
|
const reducer = useAnastasisContext()
|
|
|
|
if (!reducer) {
|
|
|
|
return <div>no reducer in context</div>
|
|
|
|
}
|
|
|
|
if (!reducer.currentReducerState || reducer.currentReducerState.backup_state === undefined) {
|
|
|
|
return <div>invalid state</div>
|
|
|
|
}
|
2021-11-03 21:30:11 +01:00
|
|
|
|
2021-11-01 20:10:49 +01:00
|
|
|
const configuredAuthMethods = reducer.currentReducerState.authentication_methods ?? [];
|
2021-10-22 06:31:46 +02:00
|
|
|
const policies = reducer.currentReducerState.policies ?? [];
|
2021-10-19 15:56:52 +02:00
|
|
|
|
2021-11-03 21:30:11 +01:00
|
|
|
if (editingPolicy !== undefined) {
|
|
|
|
return (
|
|
|
|
<EditPoliciesScreen
|
|
|
|
index={editingPolicy}
|
|
|
|
cancel={() => setEditingPolicy(undefined)}
|
2021-11-05 15:26:12 +01:00
|
|
|
confirm={async (newMethods) => {
|
|
|
|
await reducer.transition("update_policy", {
|
|
|
|
policy_index: editingPolicy,
|
|
|
|
policy: newMethods,
|
2021-11-03 21:30:11 +01:00
|
|
|
});
|
|
|
|
setEditingPolicy(undefined)
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-11-01 20:10:49 +01:00
|
|
|
const errors = policies.length < 1 ? 'Need more policies' : undefined
|
2021-10-19 15:56:52 +02:00
|
|
|
return (
|
2021-11-01 20:10:49 +01:00
|
|
|
<AnastasisClientFrame hideNext={errors} title="Backup: Review Recovery Policies">
|
|
|
|
{policies.length > 0 && <p class="block">
|
|
|
|
Based on your configured authentication method you have created, some policies
|
2021-11-03 21:30:11 +01:00
|
|
|
have been configured. In order to recover your secret you have to solve all the
|
2021-11-01 20:10:49 +01:00
|
|
|
challenges of at least one policy.
|
2021-11-03 21:30:11 +01:00
|
|
|
</p>}
|
2021-11-01 20:10:49 +01:00
|
|
|
{policies.length < 1 && <p class="block">
|
|
|
|
No policies had been created. Go back and add more authentication methods.
|
2021-11-03 21:30:11 +01:00
|
|
|
</p>}
|
2021-11-05 15:26:12 +01:00
|
|
|
<div class="block" style={{ justifyContent: 'flex-end' }} >
|
2021-11-04 16:37:27 +01:00
|
|
|
<button class="button is-success" onClick={() => setEditingPolicy(policies.length + 1)}>Add new policy</button>
|
2021-11-03 21:30:11 +01:00
|
|
|
</div>
|
2021-10-22 06:31:46 +02:00
|
|
|
{policies.map((p, policy_index) => {
|
|
|
|
const methods = p.methods
|
2021-11-01 20:10:49 +01:00
|
|
|
.map(x => configuredAuthMethods[x.authentication_method] && ({ ...configuredAuthMethods[x.authentication_method], provider: x.provider }))
|
2021-10-22 06:31:46 +02:00
|
|
|
.filter(x => !!x)
|
|
|
|
|
|
|
|
const policyName = methods.map(x => x.type).join(" + ");
|
|
|
|
|
2021-10-19 15:56:52 +02:00
|
|
|
return (
|
2021-11-01 20:10:49 +01:00
|
|
|
<div key={policy_index} class="box" style={{ display: 'flex', justifyContent: 'space-between' }}>
|
|
|
|
<div>
|
|
|
|
<h3 class="subtitle">
|
|
|
|
Policy #{policy_index + 1}: {policyName}
|
|
|
|
</h3>
|
|
|
|
{!methods.length && <p>
|
|
|
|
No auth method found
|
|
|
|
</p>}
|
2021-10-22 06:31:46 +02:00
|
|
|
{methods.map((m, i) => {
|
2021-10-19 15:56:52 +02:00
|
|
|
return (
|
2021-11-03 21:30:11 +01:00
|
|
|
<p key={i} class="block" style={{ display: 'flex', alignItems: 'center' }}>
|
|
|
|
<span class="icon">
|
|
|
|
{authMethods[m.type as KnownAuthMethods]?.icon}
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{m.instructions} recovery provided by <a href={m.provider}>{m.provider}</a>
|
|
|
|
</span>
|
|
|
|
</p>
|
2021-10-19 15:56:52 +02:00
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
2021-11-03 21:30:11 +01:00
|
|
|
<div style={{ marginTop: 'auto', marginBottom: 'auto', display: 'flex', justifyContent: 'space-between', flexDirection: 'column' }}>
|
|
|
|
<button class="button is-info block" onClick={() => setEditingPolicy(policy_index)}>Edit</button>
|
|
|
|
<button class="button is-danger block" onClick={() => reducer.transition("delete_policy", { policy_index })}>Delete</button>
|
|
|
|
</div>
|
2021-10-19 15:56:52 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</AnastasisClientFrame>
|
|
|
|
);
|
|
|
|
}
|