204 lines
5.6 KiB
TypeScript
204 lines
5.6 KiB
TypeScript
import {
|
|
BlockSuiteError,
|
|
ErrorCode,
|
|
handleError,
|
|
} from '@blocksuite/global/exceptions';
|
|
import { SignalWatcher, Slot, WithDisposable } from '@blocksuite/global/utils';
|
|
import { type BlockModel, Blocks } from '@blocksuite/store';
|
|
import { createContext, provide } from '@lit/context';
|
|
import { css, LitElement, nothing, type TemplateResult } from 'lit';
|
|
import { property } from 'lit/decorators.js';
|
|
import { repeat } from 'lit/directives/repeat.js';
|
|
import { html, type StaticValue, unsafeStatic } from 'lit/static-html.js';
|
|
|
|
import type { CommandManager } from '../../command/index.js';
|
|
import type { UIEventDispatcher } from '../../event/index.js';
|
|
import { WidgetViewMapIdentifier } from '../../identifier.js';
|
|
import type { RangeManager } from '../../range/index.js';
|
|
import type { BlockStdScope } from '../../scope/block-std-scope.js';
|
|
import type { SelectionManager } from '../../selection/index.js';
|
|
import { PropTypes, requiredProperties } from '../decorators/index.js';
|
|
import type { ViewStore } from '../view-store.js';
|
|
import { BLOCK_ID_ATTR, WIDGET_ID_ATTR } from './consts.js';
|
|
import { ShadowlessElement } from './shadowless-element.js';
|
|
|
|
export const docContext = createContext<Blocks>('doc');
|
|
export const stdContext = createContext<BlockStdScope>('std');
|
|
|
|
@requiredProperties({
|
|
doc: PropTypes.instanceOf(Blocks),
|
|
std: PropTypes.object,
|
|
})
|
|
export class EditorHost extends SignalWatcher(
|
|
WithDisposable(ShadowlessElement)
|
|
) {
|
|
static override styles = css`
|
|
editor-host {
|
|
outline: none;
|
|
isolation: isolate;
|
|
display: block;
|
|
height: 100%;
|
|
}
|
|
`;
|
|
|
|
private readonly _renderModel = (model: BlockModel): TemplateResult => {
|
|
const { flavour } = model;
|
|
const block = this.doc.getBlock(model.id);
|
|
if (!block || block.blockViewType === 'hidden') {
|
|
return html`${nothing}`;
|
|
}
|
|
const schema = this.doc.schema.flavourSchemaMap.get(flavour);
|
|
const view = this.std.getView(flavour);
|
|
if (!schema || !view) {
|
|
console.warn(`Cannot find render flavour ${flavour}.`);
|
|
return html`${nothing}`;
|
|
}
|
|
const widgetViewMap = this.std.getOptional(
|
|
WidgetViewMapIdentifier(flavour)
|
|
);
|
|
|
|
const tag = typeof view === 'function' ? view(model) : view;
|
|
const widgets: Record<string, TemplateResult> = widgetViewMap
|
|
? Object.entries(widgetViewMap).reduce((mapping, [key, tag]) => {
|
|
const template = html`<${tag} ${unsafeStatic(WIDGET_ID_ATTR)}=${key}></${tag}>`;
|
|
|
|
return {
|
|
...mapping,
|
|
[key]: template,
|
|
};
|
|
}, {})
|
|
: {};
|
|
|
|
return html`<${tag}
|
|
${unsafeStatic(BLOCK_ID_ATTR)}=${model.id}
|
|
.widgets=${widgets}
|
|
.viewType=${block.blockViewType}
|
|
></${tag}>`;
|
|
};
|
|
|
|
/**
|
|
* @deprecated
|
|
* Render a block model manually instead of let blocksuite render it.
|
|
* If you render the same block model multiple times,
|
|
* the event flow and data binding will be broken.
|
|
* Only use this method as a last resort.
|
|
*/
|
|
dangerouslyRenderModel = (model: BlockModel): TemplateResult => {
|
|
return this._renderModel(model);
|
|
};
|
|
|
|
renderChildren = (
|
|
model: BlockModel,
|
|
filter?: (model: BlockModel) => boolean
|
|
): TemplateResult => {
|
|
return html`${repeat(
|
|
model.children.filter(filter ?? (() => true)),
|
|
child => child.id,
|
|
child => this._renderModel(child)
|
|
)}`;
|
|
};
|
|
|
|
readonly slots = {
|
|
unmounted: new Slot(),
|
|
};
|
|
|
|
get command(): CommandManager {
|
|
return this.std.command;
|
|
}
|
|
|
|
get event(): UIEventDispatcher {
|
|
return this.std.event;
|
|
}
|
|
|
|
get range(): RangeManager {
|
|
return this.std.range;
|
|
}
|
|
|
|
get selection(): SelectionManager {
|
|
return this.std.selection;
|
|
}
|
|
|
|
get view(): ViewStore {
|
|
return this.std.view;
|
|
}
|
|
|
|
override connectedCallback() {
|
|
super.connectedCallback();
|
|
|
|
if (!this.doc.root) {
|
|
throw new BlockSuiteError(
|
|
ErrorCode.NoRootModelError,
|
|
'This doc is missing root block. Please initialize the default block structure before connecting the editor to DOM.'
|
|
);
|
|
}
|
|
|
|
this.std.mount();
|
|
this.tabIndex = 0;
|
|
}
|
|
|
|
override disconnectedCallback() {
|
|
super.disconnectedCallback();
|
|
this.std.unmount();
|
|
this.slots.unmounted.emit();
|
|
this.slots.unmounted.dispose();
|
|
}
|
|
|
|
override async getUpdateComplete(): Promise<boolean> {
|
|
try {
|
|
const result = await super.getUpdateComplete();
|
|
const rootModel = this.doc.root;
|
|
if (!rootModel) return result;
|
|
|
|
const view = this.std.getView(rootModel.flavour);
|
|
if (!view) return result;
|
|
|
|
const widgetViewMap = this.std.getOptional(
|
|
WidgetViewMapIdentifier(rootModel.flavour)
|
|
);
|
|
const widgetTags = Object.values(widgetViewMap ?? {});
|
|
const elementsTags: StaticValue[] = [
|
|
typeof view === 'function' ? view(rootModel) : view,
|
|
...widgetTags,
|
|
];
|
|
await Promise.all(
|
|
elementsTags.map(tag => {
|
|
const element = this.renderRoot.querySelector(tag._$litStatic$);
|
|
if (element instanceof LitElement) {
|
|
return element.updateComplete;
|
|
}
|
|
return null;
|
|
})
|
|
);
|
|
return result;
|
|
} catch (e) {
|
|
if (e instanceof Error) {
|
|
handleError(e);
|
|
} else {
|
|
console.error(e);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
override render() {
|
|
const { root } = this.doc;
|
|
if (!root) return nothing;
|
|
|
|
return this._renderModel(root);
|
|
}
|
|
|
|
@provide({ context: docContext })
|
|
@property({ attribute: false })
|
|
accessor doc!: Blocks;
|
|
|
|
@provide({ context: stdContext })
|
|
@property({ attribute: false })
|
|
accessor std!: BlockSuite.Std;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
'editor-host': EditorHost;
|
|
}
|
|
}
|