aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/home/StartScreen.tsx
blob: 8b24ef68434c0c69fe4571b153e7c310c6802077 (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
42
43
44
45
46
47
import { h, VNode } from "preact";
import { useAnastasisContext } from "../../context/anastasis";
import { AnastasisClientFrame } from "./index";

export function StartScreen(): VNode {
  const reducer = useAnastasisContext();
  if (!reducer) {
    return <div>no reducer in context</div>;
  }
  return (
    <AnastasisClientFrame hideNav title="Home">
      <div class="columns">
        <div class="column" />
        <div class="column is-four-fifths">
          <div class="buttons">
            <button
              class="button is-success"
              autoFocus
              onClick={() => reducer.startBackup()}
            >
              <div class="icon">
                <i class="mdi mdi-arrow-up" />
              </div>
              <span>Backup a secret</span>
            </button>

            <button
              class="button is-info"
              onClick={() => reducer.startRecover()}
            >
              <div class="icon">
                <i class="mdi mdi-arrow-down" />
              </div>
              <span>Recover a secret</span>
            </button>

            {/* <button class="button">
              <div class="icon"><i class="mdi mdi-file" /></div>
              <span>Restore a session</span>
            </button> */}
          </div>
        </div>
        <div class="column" />
      </div>
    </AnastasisClientFrame>
  );
}