mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { Text, type Workspace } from '@blocksuite/affine/store';
|
|
|
|
import type { InitFn } from './utils.js';
|
|
|
|
export const embed: InitFn = (collection: Workspace, id: string) => {
|
|
const doc = collection.getDoc(id) ?? collection.createDoc(id);
|
|
const store = doc.getStore();
|
|
doc.clear();
|
|
|
|
doc.load(() => {
|
|
// Add root block and surface block at root level
|
|
const rootId = store.addBlock('affine:page', {
|
|
title: new Text(),
|
|
});
|
|
|
|
const surfaceId = store.addBlock('affine:surface', {}, rootId);
|
|
|
|
// Add note block inside root block
|
|
const noteId = store.addBlock('affine:note', {}, rootId);
|
|
// Add paragraph block inside note block
|
|
store.addBlock('affine:paragraph', {}, noteId);
|
|
|
|
store.addBlock(
|
|
'affine:embed-github',
|
|
{
|
|
url: 'https://github.com/toeverything/AFFiNE/pull/5453',
|
|
},
|
|
noteId
|
|
);
|
|
store.addBlock(
|
|
'affine:embed-github',
|
|
{
|
|
url: 'https://www.github.com/toeverything/blocksuite/pull/5927',
|
|
style: 'vertical',
|
|
xywh: '[0, 400, 364, 390]',
|
|
},
|
|
surfaceId
|
|
);
|
|
store.addBlock(
|
|
'affine:embed-github',
|
|
{
|
|
url: 'https://github.com/Milkdown/milkdown/pull/1215',
|
|
xywh: '[500, 400, 752, 116]',
|
|
},
|
|
surfaceId
|
|
);
|
|
store.addBlock('affine:paragraph', {}, noteId);
|
|
});
|
|
|
|
doc.resetHistory();
|
|
};
|
|
|
|
embed.id = 'embed';
|
|
embed.displayName = 'Example for embed blocks';
|
|
embed.description = 'Example for embed blocks';
|