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

151 lines
4.8 KiB
TypeScript
Raw Normal View History

2022-01-24 18:39:27 +01:00
import { AuthenticationProviderStatusOk } from "@gnu-taler/anastasis-core";
2021-10-19 15:56:52 +02:00
import { h, VNode } from "preact";
import { useState } from "preact/hooks";
2022-06-06 05:54:55 +02:00
import { useAnastasisContext } from "../../context/anastasis.js";
import { authMethods, KnownAuthMethods } from "./authMethod/index.js";
import { EditPoliciesScreen } from "./EditPoliciesScreen.js";
import { AnastasisClientFrame } from "./index.js";
2021-10-22 06:31:46 +02:00
export function ReviewPoliciesScreen(): VNode {
2021-11-10 14:20:52 +01:00
const [editingPolicy, setEditingPolicy] = useState<number | undefined>();
const reducer = useAnastasisContext();
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
}
2022-04-13 08:44:37 +02:00
if (reducer.currentReducerState?.reducer_type !== "backup") {
2021-11-10 14:20:52 +01:00
return <div>invalid state</div>;
2021-10-22 06:31:46 +02:00
}
2021-11-10 14:20:52 +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-12 17:26:05 +01:00
const providers = reducer.currentReducerState.authentication_providers ?? {};
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-10 14:20:52 +01:00
setEditingPolicy(undefined);
}}
/>
2021-11-10 14:20:52 +01:00
);
}
2021-11-10 14:20:52 +01:00
const errors = policies.length < 1 ? "Need more policies" : undefined;
2021-10-19 15:56:52 +02:00
return (
2021-11-10 14:20:52 +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 have been configured. In order to recover your secret you
have to solve all the challenges of at least one policy.
</p>
)}
{policies.length < 1 && (
<p class="block">
No policies had been created. Go back and add more authentication
methods.
</p>
)}
2021-11-12 17:26:05 +01:00
<div class="block">
2021-11-10 14:20:52 +01:00
<button
class="button is-success"
2021-11-12 17:26:05 +01:00
style={{ marginLeft: 10 }}
2021-11-10 15:40:56 +01:00
onClick={() => setEditingPolicy(policies.length)}
2021-11-10 14:20:52 +01:00
>
Add new policy
</button>
</div>
2021-10-22 06:31:46 +02:00
{policies.map((p, policy_index) => {
const methods = p.methods
2021-11-10 14:20:52 +01:00
.map(
(x) =>
configuredAuthMethods[x.authentication_method] && {
...configuredAuthMethods[x.authentication_method],
provider: x.provider,
},
)
.filter((x) => !!x);
2021-10-22 06:31:46 +02:00
2021-11-10 14:20:52 +01:00
const policyName = methods.map((x) => x.type).join(" + ");
if (p.methods.length > methods.length) {
//there is at least one authentication method that is corrupted
return null;
}
2021-10-22 06:31:46 +02:00
2021-10-19 15:56:52 +02:00
return (
2021-11-10 14:20:52 +01:00
<div
key={policy_index}
class="box"
style={{ display: "flex", justifyContent: "space-between" }}
>
<div>
<h3 class="subtitle">
Policy #{policy_index + 1}: {policyName}
</h3>
2021-11-10 14:20:52 +01:00
{!methods.length && <p>No auth method found</p>}
2021-10-22 06:31:46 +02:00
{methods.map((m, i) => {
2021-11-12 17:26:05 +01:00
const p = providers[
m.provider
] as AuthenticationProviderStatusOk;
2021-10-19 15:56:52 +02:00
return (
2021-11-10 14:20:52 +01:00
<p
key={i}
class="block"
style={{ display: "flex", alignItems: "center" }}
>
<span class="icon">
{authMethods[m.type as KnownAuthMethods]?.icon}
</span>
<span>
2021-11-10 14:20:52 +01:00
{m.instructions} recovery provided by{" "}
2021-11-12 17:26:05 +01:00
<a href={m.provider} target="_blank" rel="noreferrer">
{p.business_name}
</a>
</span>
</p>
2021-10-19 15:56:52 +02:00
);
})}
</div>
2021-11-10 14:20:52 +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>
);
}