mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-15 00:56:26 +08:00
103 lines
2.3 KiB
TypeScript
103 lines
2.3 KiB
TypeScript
import * as Sentry from '@sentry/react';
|
|
import type { RouteObject } from 'react-router-dom';
|
|
import { createBrowserRouter as reactRouterCreateBrowserRouter } from 'react-router-dom';
|
|
|
|
export const workbenchRoutes = [
|
|
{
|
|
path: '/',
|
|
lazy: () => import('./pages/index'),
|
|
},
|
|
{
|
|
path: '/workspace/:workspaceId/*',
|
|
lazy: () => import('./pages/workspace/index'),
|
|
},
|
|
{
|
|
path: '/share/:workspaceId/:pageId',
|
|
lazy: () => import('./pages/share/share-detail-page'),
|
|
},
|
|
{
|
|
path: '/404',
|
|
lazy: () => import('./pages/404'),
|
|
},
|
|
{
|
|
path: '/auth/:authType',
|
|
lazy: () => import('./pages/auth'),
|
|
},
|
|
{
|
|
path: '/expired',
|
|
lazy: () => import('./pages/expired'),
|
|
},
|
|
{
|
|
path: '/invite/:inviteId',
|
|
lazy: () => import('./pages/invite'),
|
|
},
|
|
{
|
|
path: '/signIn',
|
|
lazy: () => import('./pages/sign-in'),
|
|
},
|
|
{
|
|
path: '/open-app/:action',
|
|
lazy: () => import('./pages/open-app'),
|
|
},
|
|
{
|
|
path: '/upgrade-success',
|
|
lazy: () => import('./pages/upgrade-success'),
|
|
},
|
|
{
|
|
path: '/desktop-signin',
|
|
lazy: () => import('./pages/desktop-signin'),
|
|
},
|
|
{
|
|
path: '/onboarding',
|
|
lazy: () => import('./pages/onboarding'),
|
|
},
|
|
{
|
|
path: '*',
|
|
lazy: () => import('./pages/404'),
|
|
},
|
|
] satisfies [RouteObject, ...RouteObject[]];
|
|
|
|
export const viewRoutes = [
|
|
{
|
|
path: '/all',
|
|
lazy: () => import('./pages/workspace/all-page/all-page'),
|
|
},
|
|
{
|
|
path: '/collection',
|
|
lazy: () => import('./pages/workspace/all-collection'),
|
|
},
|
|
{
|
|
path: '/collection/:collectionId',
|
|
lazy: () => import('./pages/workspace/collection/index'),
|
|
},
|
|
{
|
|
path: '/tag',
|
|
lazy: () => import('./pages/workspace/all-tag'),
|
|
},
|
|
{
|
|
path: '/tag/:tagId',
|
|
lazy: () => import('./pages/workspace/tag'),
|
|
},
|
|
{
|
|
path: '/trash',
|
|
lazy: () => import('./pages/workspace/trash-page'),
|
|
},
|
|
{
|
|
path: '/:pageId',
|
|
lazy: () => import('./pages/workspace/detail-page/detail-page'),
|
|
},
|
|
{
|
|
path: '*',
|
|
lazy: () => import('./pages/404'),
|
|
},
|
|
] satisfies [RouteObject, ...RouteObject[]];
|
|
|
|
const createBrowserRouter = Sentry.wrapCreateBrowserRouter(
|
|
reactRouterCreateBrowserRouter
|
|
);
|
|
export const router = createBrowserRouter(workbenchRoutes, {
|
|
future: {
|
|
v7_normalizeFormMethod: true,
|
|
},
|
|
});
|