From 3d458826cfcd3bb201a97f47b9800180d75bdecb Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Tue, 8 Aug 2023 17:29:04 +0800 Subject: [PATCH] Fix http route not working --- src/pages/HttpRoute.jsx | 37 +++++++++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/src/pages/HttpRoute.jsx b/src/pages/HttpRoute.jsx index 3c9729d2..d54b5715 100644 --- a/src/pages/HttpRoute.jsx +++ b/src/pages/HttpRoute.jsx @@ -1,3 +1,4 @@ +import { useLayoutEffect } from 'preact/hooks'; import { useLocation } from 'react-router-dom'; import Link from '../components/link'; @@ -7,18 +8,34 @@ export default function HttpRoute() { const location = useLocation(); const url = location.pathname.replace(/^\//, ''); const statusURL = getInstanceStatusURL(url); - if (statusURL) { - window.location.hash = statusURL + '?view=full'; - return null; - } + + useLayoutEffect(() => { + if (statusURL) { + setTimeout(() => { + window.location.hash = statusURL + '?view=full'; + }, 300); + } + }, [statusURL]); + return (
-

Unable to process URL

-

- - {url} - -

+ {statusURL ? ( + <> +

Redirecting…

+

+ {statusURL} +

+ + ) : ( + <> +

Unable to process URL

+

+ + {url} + +

+ + )}

Go home