More path fixes

This commit is contained in:
Lim Chee Aun 2023-02-09 23:01:33 +08:00
parent 58d4ca0ff2
commit 109cae9c19

View file

@ -6,7 +6,7 @@ import pRetry from 'p-retry';
import { useEffect, useMemo, useRef, useState } from 'preact/hooks'; import { useEffect, useMemo, useRef, useState } from 'preact/hooks';
import { useHotkeys } from 'react-hotkeys-hook'; import { useHotkeys } from 'react-hotkeys-hook';
import { InView } from 'react-intersection-observer'; import { InView } from 'react-intersection-observer';
import { useNavigate, useParams } from 'react-router-dom'; import { matchPath, useNavigate, useParams } from 'react-router-dom';
import { useDebouncedCallback } from 'use-debounce'; import { useDebouncedCallback } from 'use-debounce';
import { useSnapshot } from 'valtio'; import { useSnapshot } from 'valtio';
@ -319,12 +319,18 @@ function StatusPage() {
heroDisplayName && heroContentText heroDisplayName && heroContentText
? `${heroDisplayName}: "${heroContentText}"` ? `${heroDisplayName}: "${heroContentText}"`
: 'Status', : 'Status',
'/s/:id', '/:instance?/s/:id',
); );
const closeLink = useMemo(() => { const closeLink = useMemo(() => {
const pathname = snapStates.prevLocation?.pathname; const pathname = snapStates.prevLocation?.pathname;
if (!pathname || pathname.startsWith('/s/')) return '/'; if (
!pathname ||
matchPath('/:instance/s/:id', pathname) ||
matchPath('/s/:id', pathname)
) {
return '/';
}
return pathname; return pathname;
}, []); }, []);
const onClose = () => { const onClose = () => {
@ -575,7 +581,11 @@ function StatusPage() {
}); });
if (results.statuses.length) { if (results.statuses.length) {
const status = results.statuses[0]; const status = results.statuses[0];
navigate(`/s/${status.id}`); navigate(
instance
? `/${instance}/s/${status.id}`
: `/s/${status.id}`,
);
} else { } else {
throw new Error('No results'); throw new Error('No results');
} }