feat(core): add collection and tag filters to all pages (#5567)

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
This commit is contained in:
JimmFly
2024-01-26 07:42:47 +00:00
parent b867dcbdeb
commit 18068f4ae2
67 changed files with 3303 additions and 998 deletions
+4
View File
@@ -19,6 +19,10 @@ export const routes = [
path: 'collection/:collectionId',
lazy: () => import('./pages/workspace/collection'),
},
{
path: 'tag/:tagId',
lazy: () => import('./pages/workspace/tag'),
},
{
path: 'trash',
lazy: () => import('./pages/workspace/trash-page'),