summaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/home/BackupFinishedScreen.tsx
blob: 70ac8157da743a504a5646fed86b14c459329cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { format } from "date-fns";
import { h, VNode } from "preact";
import { useAnastasisContext } from "../../context/anastasis";
import { AnastasisClientFrame } from "./index";

export function BackupFinishedScreen(): VNode {
  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>
  }
  const details = reducer.currentReducerState.success_details

  return (<AnastasisClientFrame hideNav title="Backup finished">
    {reducer.currentReducerState.secret_name ? <p>
      Your backup of secret <b>"{reducer.currentReducerState.secret_name}"</b> was
      successful.
    </p> :
      <p>
        Your secret was successfully backed up.
      </p>}

    {details && <div class="block">
    <p>The backup is stored by the following providers:</p>
      {Object.keys(details).map((x, i) => {
        const sd = details[x];
        return (
          <div key={i} class="box">
            {x}
            <p>
              version {sd.policy_version}
              {sd.policy_expiration.t_ms !== 'never' ? ` expires at: ${format(sd.policy_expiration.t_ms, 'dd/MM/yyyy')}` : ' without expiration date'}
            </p>
          </div>
        );
      })}
    </div>}
  </AnastasisClientFrame>);
}