StackedRouter: fix backward does not pop page

This commit is contained in:
thislight 2024-11-18 18:32:06 +08:00
parent 00554a045f
commit 3b5cc1e64e
No known key found for this signature in database
GPG key ID: FCFE5192241CCD4E

View file

@ -194,11 +194,13 @@ function animateOpen(element: HTMLElement) {
function serializableStack(stack: readonly StackFrame[]) { function serializableStack(stack: readonly StackFrame[]) {
const frames = unwrap(stack); const frames = unwrap(stack);
return frames.map((fr) => { return frames.map((fr) => {
return { return fr.animateClose || fr.animateOpen
path: fr.path, ? {
rootId: fr.rootId, path: fr.path,
state: fr.state, rootId: fr.rootId,
}; state: fr.state,
}
: fr;
}); });
} }
@ -258,11 +260,6 @@ const StackedRouter: Component<StackedRouterProps> = (oprops) => {
} }
}); });
/* createEffect(() => {
const length = stack.length;
console.debug("stack is changed", length, unwrap(stack));
}); */
createRenderEffect(() => { createRenderEffect(() => {
if (stack.length === 0) { if (stack.length === 0) {
pushFrame(window.location.pathname); pushFrame(window.location.pathname);
@ -271,8 +268,12 @@ const StackedRouter: Component<StackedRouterProps> = (oprops) => {
createRenderEffect(() => { createRenderEffect(() => {
makeEventListener(window, "popstate", (event) => { makeEventListener(window, "popstate", (event) => {
if (event.state && stack.length !== event.state.length) { if (!event.state) return;
if (stack.length === 0) {
mutStack(event.state); mutStack(event.state);
} else if (stack.length > event.state.length) {
popFrame(stack.length - event.state.length);
} }
}); });
}); });
@ -358,10 +359,7 @@ const StackedRouter: Component<StackedRouterProps> = (oprops) => {
reenterableAnimation.effect!.getComputedTiming(); reenterableAnimation.effect!.getComputedTiming();
const totalTime = (delay || 0) + Number(activeDuration); const totalTime = (delay || 0) + Number(activeDuration);
if ( if (Number(reenterableAnimation.currentTime) / totalTime > 0.1) {
Number(reenterableAnimation.currentTime) / totalTime >
0.1
) {
reenterableAnimation.addEventListener("finish", () => { reenterableAnimation.addEventListener("finish", () => {
onlyPopFrame(1); onlyPopFrame(1);
}); });