restore and save session
This commit is contained in:
parent
668c0430c2
commit
f49df12b44
57
packages/anastasis-webui/src/components/FlieButton.tsx
Normal file
57
packages/anastasis-webui/src/components/FlieButton.tsx
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
import { h, VNode } from "preact";
|
||||||
|
import { useRef, useState } from "preact/hooks";
|
||||||
|
|
||||||
|
const MAX_IMAGE_UPLOAD_SIZE = 1024 * 1024;
|
||||||
|
|
||||||
|
export interface FileTypeContent {
|
||||||
|
content: string;
|
||||||
|
type: string;
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
label: string;
|
||||||
|
onChange: (v: FileTypeContent | undefined) => void;
|
||||||
|
}
|
||||||
|
export function FileButton(props: Props): VNode {
|
||||||
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
||||||
|
const [sizeError, setSizeError] = useState(false);
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<button class="button" onClick={(e) => fileInputRef.current?.click()}>
|
||||||
|
<span>{props.label}</span>
|
||||||
|
</button>
|
||||||
|
<input
|
||||||
|
ref={fileInputRef}
|
||||||
|
style={{ display: "none" }}
|
||||||
|
type="file"
|
||||||
|
onChange={(e) => {
|
||||||
|
const f: FileList | null = e.currentTarget.files;
|
||||||
|
if (!f || f.length != 1) {
|
||||||
|
return props.onChange(undefined);
|
||||||
|
}
|
||||||
|
console.log(f);
|
||||||
|
if (f[0].size > MAX_IMAGE_UPLOAD_SIZE) {
|
||||||
|
setSizeError(true);
|
||||||
|
return props.onChange(undefined);
|
||||||
|
}
|
||||||
|
setSizeError(false);
|
||||||
|
return f[0].arrayBuffer().then((b) => {
|
||||||
|
const content = new Uint8Array(b).reduce(
|
||||||
|
(data, byte) => data + String.fromCharCode(byte),
|
||||||
|
"",
|
||||||
|
);
|
||||||
|
return props.onChange({
|
||||||
|
content,
|
||||||
|
name: f[0].name,
|
||||||
|
type: f[0].type,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
{sizeError && (
|
||||||
|
<p class="help is-danger">File should be smaller than 1 MB</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
@ -36,6 +36,14 @@ export function Sidebar({ mobile }: Props): VNode {
|
|||||||
const process = { env: { __VERSION__: "0.0.0" } };
|
const process = { env: { __VERSION__: "0.0.0" } };
|
||||||
const reducer = useAnastasisContext()!;
|
const reducer = useAnastasisContext()!;
|
||||||
|
|
||||||
|
function saveSession(): void {
|
||||||
|
const state = reducer.exportState();
|
||||||
|
const link = document.createElement("a");
|
||||||
|
link.download = "anastasis.json";
|
||||||
|
link.href = `data:text/plain,${state}`;
|
||||||
|
link.click();
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<aside class="aside is-placed-left is-expanded">
|
<aside class="aside is-placed-left is-expanded">
|
||||||
{/* {mobile && <div class="footer" onClick={(e) => { return e.stopImmediatePropagation() }}>
|
{/* {mobile && <div class="footer" onClick={(e) => { return e.stopImmediatePropagation() }}>
|
||||||
@ -171,6 +179,16 @@ export function Sidebar({ mobile }: Props): VNode {
|
|||||||
<span class="menu-item-label"><Translate>Truth Paying</Translate></span>
|
<span class="menu-item-label"><Translate>Truth Paying</Translate></span>
|
||||||
</div>
|
</div>
|
||||||
</li> */}
|
</li> */}
|
||||||
|
<li>
|
||||||
|
<div class="buttons ml-4">
|
||||||
|
<button
|
||||||
|
class="button is-primary is-right"
|
||||||
|
onClick={saveSession}
|
||||||
|
>
|
||||||
|
Save backup session
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
) : (
|
) : (
|
||||||
reducer.currentReducerState &&
|
reducer.currentReducerState &&
|
||||||
@ -250,6 +268,16 @@ export function Sidebar({ mobile }: Props): VNode {
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<div class="buttons ml-4">
|
||||||
|
<button
|
||||||
|
class="button is-primary is-right"
|
||||||
|
onClick={saveSession}
|
||||||
|
>
|
||||||
|
Save recovery session
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
)
|
)
|
||||||
)}
|
)}
|
||||||
|
@ -107,6 +107,8 @@ export interface AnastasisReducerApi {
|
|||||||
reset: () => void;
|
reset: () => void;
|
||||||
back: () => Promise<void>;
|
back: () => Promise<void>;
|
||||||
transition(action: string, args: any): Promise<void>;
|
transition(action: string, args: any): Promise<void>;
|
||||||
|
exportState: () => string;
|
||||||
|
importState: (s: string) => void;
|
||||||
/**
|
/**
|
||||||
* Run multiple reducer steps in a transaction without
|
* Run multiple reducer steps in a transaction without
|
||||||
* affecting the UI-visible transition state in-between.
|
* affecting the UI-visible transition state in-between.
|
||||||
@ -129,7 +131,7 @@ function storageSet(key: string, value: any): void {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function restoreState(): any {
|
function getStateFromStorage(): any {
|
||||||
let state: any;
|
let state: any;
|
||||||
try {
|
try {
|
||||||
const s = storageGet("anastasisReducerState");
|
const s = storageGet("anastasisReducerState");
|
||||||
@ -148,7 +150,7 @@ function restoreState(): any {
|
|||||||
export function useAnastasisReducer(): AnastasisReducerApi {
|
export function useAnastasisReducer(): AnastasisReducerApi {
|
||||||
const [anastasisState, setAnastasisStateInternal] = useState<AnastasisState>(
|
const [anastasisState, setAnastasisStateInternal] = useState<AnastasisState>(
|
||||||
() => ({
|
() => ({
|
||||||
reducerState: restoreState(),
|
reducerState: getStateFromStorage(),
|
||||||
currentError: undefined,
|
currentError: undefined,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@ -165,7 +167,7 @@ export function useAnastasisReducer(): AnastasisReducerApi {
|
|||||||
setAnastasisStateInternal(newState);
|
setAnastasisStateInternal(newState);
|
||||||
};
|
};
|
||||||
|
|
||||||
async function doTransition(action: string, args: any) {
|
async function doTransition(action: string, args: any): Promise<void> {
|
||||||
console.log("reducing with", action, args);
|
console.log("reducing with", action, args);
|
||||||
let s: ReducerState;
|
let s: ReducerState;
|
||||||
if (remoteReducer) {
|
if (remoteReducer) {
|
||||||
@ -210,6 +212,18 @@ export function useAnastasisReducer(): AnastasisReducerApi {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
exportState() {
|
||||||
|
const state = getStateFromStorage()
|
||||||
|
return JSON.stringify(state)
|
||||||
|
},
|
||||||
|
importState(s: string) {
|
||||||
|
try {
|
||||||
|
const state = JSON.parse(s)
|
||||||
|
setAnastasisState({ reducerState: state, currentError: undefined })
|
||||||
|
} catch (e) {
|
||||||
|
throw Error('could not restore the state')
|
||||||
|
}
|
||||||
|
},
|
||||||
async startRecover() {
|
async startRecover() {
|
||||||
let s: ReducerState;
|
let s: ReducerState;
|
||||||
if (remoteReducer) {
|
if (remoteReducer) {
|
||||||
@ -287,7 +301,7 @@ export function useAnastasisReducer(): AnastasisReducerApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class ReducerTxImpl implements ReducerTransactionHandle {
|
class ReducerTxImpl implements ReducerTransactionHandle {
|
||||||
constructor(public transactionState: ReducerState) {}
|
constructor(public transactionState: ReducerState) { }
|
||||||
async transition(action: string, args: any): Promise<ReducerState> {
|
async transition(action: string, args: any): Promise<ReducerState> {
|
||||||
let s: ReducerState;
|
let s: ReducerState;
|
||||||
if (remoteReducer) {
|
if (remoteReducer) {
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
import { h, VNode } from "preact";
|
import { h, VNode } from "preact";
|
||||||
|
import { FileInput } from "../../components/fields/FileInput";
|
||||||
|
import { FileButton } from "../../components/FlieButton";
|
||||||
import { useAnastasisContext } from "../../context/anastasis";
|
import { useAnastasisContext } from "../../context/anastasis";
|
||||||
import { AnastasisClientFrame } from "./index";
|
import { AnastasisClientFrame } from "./index";
|
||||||
|
|
||||||
@ -34,6 +36,15 @@ export function StartScreen(): VNode {
|
|||||||
<span>Recover a secret</span>
|
<span>Recover a secret</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
<FileButton
|
||||||
|
label="Restore a session"
|
||||||
|
onChange={(content) => {
|
||||||
|
if (content?.type === "application/json") {
|
||||||
|
reducer.importState(content.content);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
|
||||||
{/* <button class="button">
|
{/* <button class="button">
|
||||||
<div class="icon"><i class="mdi mdi-file" /></div>
|
<div class="icon"><i class="mdi mdi-file" /></div>
|
||||||
<span>Restore a session</span>
|
<span>Restore a session</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user