From bd76b5d76f0e03d2d511b6cc0aae4636a2ec52c9 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Wed, 13 Apr 2022 16:10:11 -0300 Subject: fix: #7072 --- packages/anastasis-webui/src/pages/home/index.tsx | 40 ++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/packages/anastasis-webui/src/pages/home/index.tsx b/packages/anastasis-webui/src/pages/home/index.tsx index 7d191ae04..cf31d68eb 100644 --- a/packages/anastasis-webui/src/pages/home/index.tsx +++ b/packages/anastasis-webui/src/pages/home/index.tsx @@ -6,7 +6,7 @@ import { h, VNode, } from "preact"; -import { useErrorBoundary } from "preact/hooks"; +import { useCallback, useEffect, useErrorBoundary } from "preact/hooks"; import { AsyncButton } from "../../components/AsyncButton"; import { Menu } from "../../components/menu"; import { Notifications } from "../../components/Notifications"; @@ -103,6 +103,28 @@ export function AnastasisClientFrame(props: AnastasisClientFrameProps): VNode { } else { await reducer.transition("next", {}); } + reducer.currentReducerState?.reducer_type; + + const stateName = !reducer.currentReducerState + ? "not-defined" + : reducer.currentReducerState.reducer_type === "backup" + ? `#backup-${reducer.currentReducerState.backup_state}` + : reducer.currentReducerState.reducer_type === "recovery" + ? `recovery-${reducer.currentReducerState.recovery_state}` + : reducer.currentReducerState.reducer_type === "error" + ? `error-${reducer.currentReducerState.code}` + : "unknown"; + + const id: number = + typeof history.state.id === "number" ? history.state.id : 1; + + history.pushState( + { + id: id + 1, + }, + "unused", + stateName, + ); }; const handleKeyPress = ( e: h.JSX.TargetedKeyboardEvent, @@ -110,6 +132,22 @@ export function AnastasisClientFrame(props: AnastasisClientFrameProps): VNode { console.log("Got key press", e.key); // FIXME: By default, "next" action should be executed here }; + + const browserOnBackButton = useCallback((ev: PopStateEvent) => { + console.log("BACK BACK", JSON.stringify(ev.state)); + reducer.back(); + // reducer + return false; + }, []); + + useEffect(() => { + window.addEventListener("popstate", browserOnBackButton); + + return () => { + window.removeEventListener("popstate", browserOnBackButton); + }; + }, []); + return ( -- cgit v1.2.3