mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 05:33:29 +01:00
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import { createBrowserRouter, Navigate, RouterProvider, useParams } from 'react-router-dom';
|
|
import { routePaths, useAppRoutes } from '../hooks/useAppRoutes';
|
|
import { DefaultLayout } from './DefaultLayout';
|
|
import { RedirectToLatestWorkspace } from './RedirectToLatestWorkspace';
|
|
import RouteError from './RouteError';
|
|
import { Settings } from './Settings/Settings';
|
|
import Workspace from './Workspace';
|
|
|
|
const router = createBrowserRouter([
|
|
{
|
|
path: '/',
|
|
errorElement: <RouteError />,
|
|
element: <DefaultLayout />,
|
|
children: [
|
|
{
|
|
path: '/',
|
|
element: <RedirectToLatestWorkspace />,
|
|
},
|
|
{
|
|
path: routePaths.workspaces(),
|
|
element: <RedirectToLatestWorkspace />,
|
|
},
|
|
{
|
|
path: routePaths.workspace({
|
|
workspaceId: ':workspaceId',
|
|
}),
|
|
element: <Workspace />,
|
|
},
|
|
{
|
|
path: routePaths.request({
|
|
workspaceId: ':workspaceId',
|
|
requestId: ':requestId',
|
|
}),
|
|
element: <Workspace />,
|
|
},
|
|
{
|
|
path: '/workspaces/:workspaceId/environments/:environmentId/requests/:requestId',
|
|
element: <RedirectLegacyEnvironmentURLs />,
|
|
},
|
|
{
|
|
path: routePaths.workspaceSettings({
|
|
workspaceId: ':workspaceId',
|
|
}),
|
|
element: <Settings />,
|
|
},
|
|
],
|
|
},
|
|
]);
|
|
|
|
export function AppRouter() {
|
|
return <RouterProvider router={router} />;
|
|
}
|
|
|
|
function RedirectLegacyEnvironmentURLs() {
|
|
const routes = useAppRoutes();
|
|
const {
|
|
requestId,
|
|
environmentId: rawEnvironmentId,
|
|
workspaceId,
|
|
} = useParams<{
|
|
requestId?: string;
|
|
workspaceId?: string;
|
|
environmentId?: string;
|
|
}>();
|
|
const environmentId = rawEnvironmentId === '__default__' ? undefined : rawEnvironmentId;
|
|
|
|
let to;
|
|
if (workspaceId != null && requestId != null) {
|
|
to = routes.paths.request({ workspaceId, environmentId, requestId });
|
|
} else if (workspaceId != null) {
|
|
to = routes.paths.workspace({ workspaceId, environmentId });
|
|
} else {
|
|
to = routes.paths.workspaces();
|
|
}
|
|
|
|
return <Navigate to={to} />;
|
|
}
|