Files
AFFiNE-Mirror/blocksuite/affine/block-embed/src/embed-github-block/embed-github-spec.ts
T
2025-01-06 15:15:14 +00:00

18 lines
711 B
TypeScript

import { BlockViewExtension, FlavourExtension } from '@blocksuite/block-std';
import type { ExtensionType } from '@blocksuite/store';
import { literal } from 'lit/static-html.js';
import { EmbedGithubBlockAdapterExtensions } from './adapters/extension.js';
import { EmbedGithubBlockService } from './embed-github-service.js';
export const EmbedGithubBlockSpec: ExtensionType[] = [
FlavourExtension('affine:embed-github'),
EmbedGithubBlockService,
BlockViewExtension('affine:embed-github', model => {
return model.parent?.flavour === 'affine:surface'
? literal`affine-embed-edgeless-github-block`
: literal`affine-embed-github-block`;
}),
EmbedGithubBlockAdapterExtensions,
].flat();