mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-15 05:37:32 +00:00
close TOV-69 Added the `filterMode` parameter to the `/all` route. Abstracted the `PageList` and associated components into more universal ones. Added the `useTagMetas` hook to get and update the workspace tags. https://github.com/toeverything/AFFiNE/assets/102217452/7595944d-a056-40c2-8d89-d8df9e901a4b
90 lines
2.0 KiB
TypeScript
90 lines
2.0 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 routes = [
|
|
{
|
|
path: '/',
|
|
lazy: () => import('./pages/index'),
|
|
},
|
|
{
|
|
path: '/workspace/:workspaceId',
|
|
lazy: () => import('./pages/workspace/index'),
|
|
children: [
|
|
{
|
|
path: 'all',
|
|
lazy: () => import('./pages/workspace/all-page/all-page'),
|
|
},
|
|
{
|
|
path: 'collection/:collectionId',
|
|
lazy: () => import('./pages/workspace/collection'),
|
|
},
|
|
{
|
|
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: '/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[]];
|
|
|
|
const createBrowserRouter = Sentry.wrapCreateBrowserRouter(
|
|
reactRouterCreateBrowserRouter
|
|
);
|
|
export const router = createBrowserRouter(routes, {
|
|
future: {
|
|
v7_normalizeFormMethod: true,
|
|
},
|
|
});
|