mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 05:14:54 +00:00
**Directory Structure Changes** - Renamed multiple block-related directories by removing the "block-" prefix: - `block-attachment` → `attachment` - `block-bookmark` → `bookmark` - `block-callout` → `callout` - `block-code` → `code` - `block-data-view` → `data-view` - `block-database` → `database` - `block-divider` → `divider` - `block-edgeless-text` → `edgeless-text` - `block-embed` → `embed`
106 lines
2.8 KiB
TypeScript
106 lines
2.8 KiB
TypeScript
import {
|
|
type ColumnDataType,
|
|
DatabaseBlockSchema,
|
|
type SerializedCells,
|
|
} from '@blocksuite/affine-model';
|
|
import {
|
|
BlockHtmlAdapterExtension,
|
|
type BlockHtmlAdapterMatcher,
|
|
type InlineHtmlAST,
|
|
} from '@blocksuite/affine-shared/adapters';
|
|
import type { Element } from 'hast';
|
|
|
|
import { processTable } from './utils';
|
|
|
|
export const databaseBlockHtmlAdapterMatcher: BlockHtmlAdapterMatcher = {
|
|
flavour: DatabaseBlockSchema.model.flavour,
|
|
toMatch: () => false,
|
|
fromMatch: o => o.node.flavour === DatabaseBlockSchema.model.flavour,
|
|
toBlockSnapshot: {},
|
|
fromBlockSnapshot: {
|
|
enter: (o, context) => {
|
|
const { walkerContext } = context;
|
|
const columns = o.node.props.columns as Array<ColumnDataType>;
|
|
const children = o.node.children;
|
|
const cells = o.node.props.cells as SerializedCells;
|
|
const table = processTable(columns, children, cells);
|
|
const createAstTableCell = (
|
|
children: InlineHtmlAST[]
|
|
): InlineHtmlAST => ({
|
|
type: 'element',
|
|
tagName: 'td',
|
|
properties: Object.create(null),
|
|
children,
|
|
});
|
|
|
|
const createAstTableHeaderCell = (
|
|
children: InlineHtmlAST[]
|
|
): InlineHtmlAST => ({
|
|
type: 'element',
|
|
tagName: 'th',
|
|
properties: Object.create(null),
|
|
children,
|
|
});
|
|
|
|
const createAstTableRow = (cells: InlineHtmlAST[]): Element => ({
|
|
type: 'element',
|
|
tagName: 'tr',
|
|
properties: Object.create(null),
|
|
children: cells,
|
|
});
|
|
|
|
const { deltaConverter } = context;
|
|
|
|
const tableHeaderAst: Element = {
|
|
type: 'element',
|
|
tagName: 'thead',
|
|
properties: Object.create(null),
|
|
children: [
|
|
createAstTableRow(
|
|
table.headers.map(v =>
|
|
createAstTableHeaderCell([
|
|
{
|
|
type: 'text',
|
|
value: v.name ?? '',
|
|
},
|
|
])
|
|
)
|
|
),
|
|
],
|
|
};
|
|
|
|
const tableBodyAst: Element = {
|
|
type: 'element',
|
|
tagName: 'tbody',
|
|
properties: Object.create(null),
|
|
children: table.rows.map(v => {
|
|
return createAstTableRow(
|
|
v.cells.map(cell => {
|
|
return createAstTableCell(
|
|
typeof cell.value === 'string'
|
|
? [{ type: 'text', value: cell.value }]
|
|
: deltaConverter.deltaToAST(cell.value.delta)
|
|
);
|
|
})
|
|
);
|
|
}),
|
|
};
|
|
|
|
walkerContext
|
|
.openNode({
|
|
type: 'element',
|
|
tagName: 'table',
|
|
properties: Object.create(null),
|
|
children: [tableHeaderAst, tableBodyAst],
|
|
})
|
|
.closeNode();
|
|
|
|
walkerContext.skipAllChildren();
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DatabaseBlockHtmlAdapterExtension = BlockHtmlAdapterExtension(
|
|
databaseBlockHtmlAdapterMatcher
|
|
);
|