2024-05-29 01:04:48 +08:00
|
|
|
import {
|
|
|
|
$getSelection,
|
|
|
|
COMMAND_PRIORITY_LOW,
|
|
|
|
LexicalEditor,
|
|
|
|
SELECTION_CHANGE_COMMAND
|
|
|
|
} from "lexical";
|
2024-05-30 03:38:31 +08:00
|
|
|
import {getMainEditorFullToolbar} from "./toolbars";
|
2024-05-30 23:50:55 +08:00
|
|
|
import {EditorUIManager} from "./framework/manager";
|
|
|
|
import {EditorForm} from "./framework/forms";
|
|
|
|
import {link} from "./defaults/form-definitions";
|
2024-05-29 01:04:48 +08:00
|
|
|
|
|
|
|
export function buildEditorUI(element: HTMLElement, editor: LexicalEditor) {
|
2024-05-30 23:50:55 +08:00
|
|
|
const manager = new EditorUIManager();
|
|
|
|
const context = {
|
|
|
|
editor,
|
|
|
|
manager,
|
|
|
|
translate: (text: string): string => text,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create primary toolbar
|
2024-05-30 03:38:31 +08:00
|
|
|
const toolbar = getMainEditorFullToolbar();
|
2024-05-30 23:50:55 +08:00
|
|
|
toolbar.setContext(context);
|
2024-05-30 03:38:31 +08:00
|
|
|
element.before(toolbar.getDOMElement());
|
2024-05-29 01:04:48 +08:00
|
|
|
|
2024-05-30 23:50:55 +08:00
|
|
|
// Form test
|
|
|
|
const linkForm = new EditorForm(link);
|
|
|
|
linkForm.setContext(context);
|
|
|
|
element.before(linkForm.getDOMElement());
|
|
|
|
|
2024-05-29 01:04:48 +08:00
|
|
|
// Update button states on editor selection change
|
|
|
|
editor.registerCommand(SELECTION_CHANGE_COMMAND, () => {
|
|
|
|
const selection = $getSelection();
|
2024-05-30 03:38:31 +08:00
|
|
|
toolbar.updateState({editor, selection});
|
2024-05-29 01:04:48 +08:00
|
|
|
return false;
|
|
|
|
}, COMMAND_PRIORITY_LOW);
|
|
|
|
}
|