mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-25 02:13:00 +08:00
feat(editor): schema extension (#10447)
1. **Major Architectural Change: Schema Management**
- Moved from `workspace.schema` to `store.schema` throughout the codebase
- Removed schema property from Workspace and Doc interfaces
- Added `BlockSchemaExtension` pattern across multiple block types
2. **Block Schema Extensions Added**
- Added new `BlockSchemaExtension` to numerous block types including:
- DataView, Surface, Attachment, Bookmark, Code
- Database, Divider, EdgelessText, Embed blocks (Figma, Github, HTML, etc.)
- Frame, Image, Latex, List, Note, Paragraph
- Root, Surface Reference, Table blocks
3. **Import/Export System Updates**
- Updated import functions to accept `schema` parameter:
- `importHTMLToDoc`
- `importHTMLZip`
- `importMarkdownToDoc`
- `importMarkdownZip`
- `importNotionZip`
- Modified export functions to use new schema pattern
4. **Test Infrastructure Updates**
- Updated test files to use new schema extensions
- Modified test document creation to include schema extensions
- Removed direct schema registration in favor of extensions
5. **Service Layer Changes**
- Updated various services to use `getAFFiNEWorkspaceSchema()`
- Modified transformer initialization to use document schema
- Updated collection initialization patterns
6. **Version Management**
- Removed version-related properties and methods from:
- `WorkspaceMetaImpl`
- `TestMeta`
- `DocImpl`
- Removed `blockVersions` and `workspaceVersion/pageVersion`
7. **Store and Extension Updates**
- Added new store extensions and adapters
- Updated store initialization patterns
- Added new schema-related functionality in store extension
This PR represents a significant architectural shift in how schemas are managed, moving from a workspace-centric to a store-centric approach, while introducing a more extensible block schema system through `BlockSchemaExtension`. The changes touch multiple layers of the application including core functionality, services, testing infrastructure, and import/export capabilities.
This commit is contained in:
@@ -66,33 +66,6 @@ export const defaultStore = {
|
||||
tags: [],
|
||||
},
|
||||
],
|
||||
blockVersions: {
|
||||
'affine:paragraph': 1,
|
||||
'affine:page': 2,
|
||||
'affine:database': 3,
|
||||
'affine:data-view': 1,
|
||||
'affine:list': 1,
|
||||
'affine:note': 1,
|
||||
'affine:divider': 1,
|
||||
'affine:embed-youtube': 1,
|
||||
'affine:embed-figma': 1,
|
||||
'affine:embed-github': 1,
|
||||
'affine:embed-loom': 1,
|
||||
'affine:embed-html': 1,
|
||||
'affine:embed-linked-doc': 1,
|
||||
'affine:embed-synced-doc': 1,
|
||||
'affine:image': 1,
|
||||
'affine:latex': 1,
|
||||
'affine:frame': 1,
|
||||
'affine:code': 1,
|
||||
'affine:surface': 5,
|
||||
'affine:bookmark': 1,
|
||||
'affine:attachment': 1,
|
||||
'affine:surface-ref': 1,
|
||||
'affine:edgeless-text': 1,
|
||||
},
|
||||
workspaceVersion: 2,
|
||||
pageVersion: 2,
|
||||
},
|
||||
spaces: {
|
||||
'doc:home': {
|
||||
|
||||
Reference in New Issue
Block a user