mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
ea4c50c2c2
Also added extra lifecycle handling for decorators to things can be properly cleaned up after node destruction.
81 lines
2.7 KiB
TypeScript
81 lines
2.7 KiB
TypeScript
import {HeadingNode, QuoteNode} from '@lexical/rich-text';
|
|
import {CalloutNode} from './callout';
|
|
import {
|
|
$getNodeByKey,
|
|
ElementNode,
|
|
KlassConstructor,
|
|
LexicalEditor,
|
|
LexicalNode,
|
|
LexicalNodeReplacement, NodeMutation,
|
|
ParagraphNode
|
|
} from "lexical";
|
|
import {CustomParagraphNode} from "./custom-paragraph";
|
|
import {LinkNode} from "@lexical/link";
|
|
import {ImageNode} from "./image";
|
|
import {DetailsNode, SummaryNode} from "./details";
|
|
import {ListItemNode, ListNode} from "@lexical/list";
|
|
import {TableCellNode, TableNode, TableRowNode} from "@lexical/table";
|
|
import {CustomTableNode} from "./custom-table";
|
|
import {HorizontalRuleNode} from "./horizontal-rule";
|
|
import {CodeBlockNode} from "./code-block";
|
|
import {DiagramNode} from "./diagram";
|
|
import {EditorUIManager} from "../ui/framework/manager";
|
|
import {EditorUiContext} from "../ui/framework/core";
|
|
|
|
/**
|
|
* Load the nodes for lexical.
|
|
*/
|
|
export function getNodesForPageEditor(): (KlassConstructor<typeof LexicalNode> | LexicalNodeReplacement)[] {
|
|
return [
|
|
CalloutNode, // Todo - Create custom
|
|
HeadingNode, // Todo - Create custom
|
|
QuoteNode, // Todo - Create custom
|
|
ListNode, // Todo - Create custom
|
|
ListItemNode,
|
|
CustomTableNode,
|
|
TableRowNode,
|
|
TableCellNode,
|
|
ImageNode,
|
|
HorizontalRuleNode,
|
|
DetailsNode, SummaryNode,
|
|
CodeBlockNode,
|
|
DiagramNode,
|
|
CustomParagraphNode,
|
|
LinkNode,
|
|
{
|
|
replace: ParagraphNode,
|
|
with: (node: ParagraphNode) => {
|
|
return new CustomParagraphNode();
|
|
}
|
|
},
|
|
{
|
|
replace: TableNode,
|
|
with(node: TableNode) {
|
|
return new CustomTableNode();
|
|
}
|
|
},
|
|
];
|
|
}
|
|
|
|
export function registerCommonNodeMutationListeners(context: EditorUiContext): void {
|
|
const decorated = [ImageNode, CodeBlockNode, DiagramNode];
|
|
|
|
const decorationDestroyListener = (mutations: Map<string, NodeMutation>): void => {
|
|
for (let [nodeKey, mutation] of mutations) {
|
|
if (mutation === "destroyed") {
|
|
const decorator = context.manager.getDecoratorByNodeKey(nodeKey);
|
|
if (decorator) {
|
|
decorator.destroy(context);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
for (let decoratedNode of decorated) {
|
|
// Have to pass a unique function here since they are stored by lexical keyed on listener function.
|
|
context.editor.registerMutationListener(decoratedNode, (mutations) => decorationDestroyListener(mutations));
|
|
}
|
|
}
|
|
|
|
export type LexicalNodeMatcher = (node: LexicalNode|null|undefined) => boolean;
|
|
export type LexicalElementNodeCreator = () => ElementNode; |