spacedrive/interface/app/index.tsx
Brendan Allan 1db2a4eccc
[ENG-1493] Fix navigation buttons with @remix-run/router patch (#1871)
* patch @remix-run/router

* add replace to a bunch of redirects

* updates + lockfile
2023-12-07 08:10:38 +00:00

142 lines
4 KiB
TypeScript

import { useMemo } from 'react';
import { Navigate, Outlet, redirect, useMatches, type RouteObject } from 'react-router-dom';
import {
currentLibraryCache,
getCachedLibraries,
NormalisedCache,
useCachedLibraries
} from '@sd/client';
import { Dialogs, Toaster } from '@sd/ui';
import { RouterErrorBoundary } from '~/ErrorFallback';
import { useRoutingContext } from '~/RoutingContext';
import { Platform } from '..';
import libraryRoutes from './$libraryId';
import onboardingRoutes from './onboarding';
import { RootContext } from './RootContext';
import './style.scss';
// NOTE: all route `Layout`s below should contain
// the `usePlausiblePageViewMonitor` hook, as early as possible (ideally within the layout itself).
// the hook should only be included if there's a valid `ClientContext` (so not onboarding)
export const createRoutes = (platform: Platform, cache: NormalisedCache) =>
[
{
Component: () => {
const rawPath = useRawRoutePath();
return (
<RootContext.Provider value={{ rawPath }}>
<Outlet />
<Dialogs />
<Toaster position="bottom-right" expand={true} />
</RootContext.Provider>
);
},
errorElement: <RouterErrorBoundary />,
children: [
{
index: true,
Component: () => {
const libraries = useCachedLibraries();
if (libraries.status !== 'success') return null;
if (libraries.data.length === 0)
return <Navigate to="onboarding" replace />;
const currentLibrary = libraries.data.find(
(l) => l.uuid === currentLibraryCache.id
);
const libraryId = currentLibrary
? currentLibrary.uuid
: libraries.data[0]?.uuid;
return <Navigate to={`${libraryId}`} replace />;
},
loader: async () => {
const libraries = await getCachedLibraries(cache);
const currentLibrary = libraries.find(
(l) => l.uuid === currentLibraryCache.id
);
const libraryId = currentLibrary ? currentLibrary.uuid : libraries[0]?.uuid;
if (libraryId === undefined)
return redirect('/onboarding', { replace: true });
return redirect(`/${libraryId}`, { replace: true });
}
},
{
path: 'onboarding',
lazy: () => import('./onboarding/Layout'),
children: onboardingRoutes
},
{
path: ':libraryId',
lazy: () => import('./$libraryId/Layout'),
loader: async ({ params: { libraryId } }) => {
const libraries = await getCachedLibraries(cache);
const library = libraries.find((l) => l.uuid === libraryId);
if (!library) {
const firstLibrary = libraries[0];
if (firstLibrary)
return redirect(`/${firstLibrary.uuid}`, { replace: true });
else return redirect('/onboarding', { replace: true });
}
return null;
},
children: libraryRoutes(platform)
}
]
}
] satisfies RouteObject[];
/**
* Combines the `path` segments of the current route into a single string.
* This is useful for things like analytics, where we want the route path
* but not the values used in the route params.
*/
const useRawRoutePath = () => {
const { routes } = useRoutingContext();
// `useMatches` returns a list of each matched RouteObject,
// we grab the last one as it contains all previous route segments.
const lastMatchId = useMatches().slice(-1)[0]?.id;
const rawPath = useMemo(() => {
const [rawPath] =
lastMatchId
// Gets a list of the index of each route segment
?.split('-')
?.map((s) => parseInt(s))
// Gets the route object for each segment and appends the `path`, if there is one
?.reduce(
([rawPath, { children }], path) => {
// No `children`, nowhere to go
if (!children) return [rawPath, { children }] as any;
const item = children[path]!;
// No `path`, continue without adding to path
if (!('path' in item)) return [rawPath, item];
// `path` found, chuck it on the end
return [`${rawPath}/${item.path}`, item];
},
['' as string, { children: routes }] as const
) ?? [];
return rawPath ?? '/';
}, [lastMatchId, routes]);
return rawPath;
};