mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 23:26:30 +08:00
35 lines
886 B
TypeScript
35 lines
886 B
TypeScript
import { StrictMode } from 'react';
|
|
|
|
import { BasePlugin } from '../../base-plugin';
|
|
import { PluginRenderRoot } from '../../utils';
|
|
import { ReferenceMenu } from './ReferenceMenu';
|
|
|
|
const PLUGIN_NAME = 'reference-menu';
|
|
|
|
export class ReferenceMenuPlugin extends BasePlugin {
|
|
private _root?: PluginRenderRoot;
|
|
|
|
public static override get pluginName(): string {
|
|
return PLUGIN_NAME;
|
|
}
|
|
|
|
protected override _onRender(): void {
|
|
this._root = new PluginRenderRoot({
|
|
name: PLUGIN_NAME,
|
|
render: this.editor.reactRenderRoot.render,
|
|
});
|
|
this._root.mount();
|
|
|
|
this._root?.render(
|
|
<StrictMode>
|
|
<ReferenceMenu editor={this.editor} hooks={this.hooks} />
|
|
</StrictMode>
|
|
);
|
|
}
|
|
|
|
public override dispose() {
|
|
this._root?.unmount();
|
|
super.dispose();
|
|
}
|
|
}
|