269 lines
7.1 KiB
TypeScript
269 lines
7.1 KiB
TypeScript
import { PluginSimple } from "markdown-it";
|
|
import { observer } from "mobx-react";
|
|
import { keymap } from "prosemirror-keymap";
|
|
import { MarkdownParser } from "prosemirror-markdown";
|
|
import { Schema } from "prosemirror-model";
|
|
import { EditorView } from "prosemirror-view";
|
|
import { Primitive } from "utility-types";
|
|
import type { Editor } from "~/editor";
|
|
import Mark from "../marks/Mark";
|
|
import Node from "../nodes/Node";
|
|
import Extension, { CommandFactory } from "./Extension";
|
|
import makeRules from "./markdown/rules";
|
|
import { MarkdownSerializer } from "./markdown/serializer";
|
|
|
|
export default class ExtensionManager {
|
|
extensions: (Node | Mark | Extension)[] = [];
|
|
|
|
constructor(
|
|
extensions: (
|
|
| Extension
|
|
| typeof Node
|
|
| typeof Mark
|
|
| typeof Extension
|
|
)[] = [],
|
|
editor?: Editor
|
|
) {
|
|
extensions.forEach((ext) => {
|
|
let extension;
|
|
|
|
if (typeof ext === "function") {
|
|
// @ts-expect-error We won't instantiate an abstract class
|
|
extension = new ext(editor?.props);
|
|
} else {
|
|
extension = ext;
|
|
}
|
|
|
|
if (editor) {
|
|
extension.bindEditor(editor);
|
|
}
|
|
|
|
this.extensions.push(extension);
|
|
});
|
|
}
|
|
|
|
get widgets() {
|
|
return this.extensions
|
|
.filter((extension) => extension.widget({ rtl: false, readOnly: false }))
|
|
.reduce(
|
|
(nodes, node: Node) => ({
|
|
...nodes,
|
|
[node.name]: observer(node.widget as any),
|
|
}),
|
|
{}
|
|
);
|
|
}
|
|
|
|
get nodes() {
|
|
const nodes = this.extensions
|
|
.filter((extension) => extension.type === "node")
|
|
.reduce(
|
|
(nodes, node: Node) => ({
|
|
...nodes,
|
|
[node.name]: node.schema,
|
|
}),
|
|
{}
|
|
);
|
|
|
|
for (const i in nodes) {
|
|
if (nodes[i].marks) {
|
|
// We must filter marks from the marks list that are not defined
|
|
// in the schema for the current editor.
|
|
nodes[i].marks = nodes[i].marks
|
|
.split(" ")
|
|
.filter((m: string) => Object.keys(this.marks).includes(m))
|
|
.join(" ");
|
|
}
|
|
}
|
|
|
|
return nodes;
|
|
}
|
|
|
|
get marks() {
|
|
const marks = this.extensions
|
|
.filter((extension) => extension.type === "mark")
|
|
.reduce(
|
|
(marks, mark: Mark) => ({
|
|
...marks,
|
|
[mark.name]: mark.schema,
|
|
}),
|
|
{}
|
|
);
|
|
|
|
for (const i in marks) {
|
|
if (marks[i].excludes) {
|
|
// We must filter marks from the excludes list that are not defined
|
|
// in the schema for the current editor.
|
|
marks[i].excludes = marks[i].excludes
|
|
.split(" ")
|
|
.filter((m: string) => Object.keys(marks).includes(m))
|
|
.join(" ");
|
|
}
|
|
}
|
|
|
|
return marks;
|
|
}
|
|
|
|
serializer() {
|
|
const nodes = this.extensions
|
|
.filter((extension) => extension.type === "node")
|
|
.reduce(
|
|
(nodes, extension: Node) => ({
|
|
...nodes,
|
|
[extension.name]: extension.toMarkdown,
|
|
}),
|
|
{}
|
|
);
|
|
|
|
const marks = this.extensions
|
|
.filter((extension) => extension.type === "mark")
|
|
.reduce(
|
|
(marks, extension: Mark) => ({
|
|
...marks,
|
|
[extension.name]: extension.toMarkdown,
|
|
}),
|
|
{}
|
|
);
|
|
|
|
return new MarkdownSerializer(nodes, marks);
|
|
}
|
|
|
|
parser({
|
|
schema,
|
|
rules,
|
|
plugins,
|
|
}: {
|
|
schema: Schema;
|
|
rules?: markdownit.Options;
|
|
plugins?: PluginSimple[];
|
|
}): MarkdownParser {
|
|
const tokens = this.extensions
|
|
.filter(
|
|
(extension) => extension.type === "mark" || extension.type === "node"
|
|
)
|
|
.reduce((nodes, extension: Node | Mark) => {
|
|
const parseSpec = extension.parseMarkdown();
|
|
if (!parseSpec) {
|
|
return nodes;
|
|
}
|
|
|
|
return {
|
|
...nodes,
|
|
[extension.markdownToken || extension.name]: parseSpec,
|
|
};
|
|
}, {});
|
|
|
|
return new MarkdownParser(schema, makeRules({ rules, plugins }), tokens);
|
|
}
|
|
|
|
get plugins() {
|
|
return this.extensions
|
|
.filter((extension) => "plugins" in extension)
|
|
.reduce((allPlugins, { plugins }) => [...allPlugins, ...plugins], []);
|
|
}
|
|
|
|
get rulePlugins() {
|
|
return this.extensions
|
|
.filter((extension) => "rulePlugins" in extension)
|
|
.reduce(
|
|
(allRulePlugins, { rulePlugins }) => [
|
|
...allRulePlugins,
|
|
...rulePlugins,
|
|
],
|
|
[]
|
|
);
|
|
}
|
|
|
|
keymaps({ schema }: { schema: Schema }) {
|
|
const keymaps = this.extensions
|
|
.filter((extension) => extension.keys)
|
|
.map((extension) =>
|
|
["node", "mark"].includes(extension.type)
|
|
? extension.keys({
|
|
type: schema[`${extension.type}s`][extension.name],
|
|
schema,
|
|
})
|
|
: (extension as Extension).keys({ schema })
|
|
);
|
|
|
|
return keymaps.map(keymap);
|
|
}
|
|
|
|
inputRules({ schema }: { schema: Schema }) {
|
|
const extensionInputRules = this.extensions
|
|
.filter((extension) => ["extension"].includes(extension.type))
|
|
.filter((extension) => extension.inputRules)
|
|
.map((extension: Extension) => extension.inputRules({ schema }));
|
|
|
|
const nodeMarkInputRules = this.extensions
|
|
.filter((extension) => ["node", "mark"].includes(extension.type))
|
|
.filter((extension) => extension.inputRules)
|
|
.map((extension) =>
|
|
extension.inputRules({
|
|
type: schema[`${extension.type}s`][extension.name],
|
|
schema,
|
|
})
|
|
);
|
|
|
|
return [...extensionInputRules, ...nodeMarkInputRules].reduce(
|
|
(allInputRules, inputRules) => [...allInputRules, ...inputRules],
|
|
[]
|
|
);
|
|
}
|
|
|
|
commands({ schema, view }: { schema: Schema; view: EditorView }) {
|
|
return this.extensions
|
|
.filter((extension) => extension.commands)
|
|
.reduce((allCommands, extension) => {
|
|
const { name, type } = extension;
|
|
const commands = {};
|
|
|
|
// @ts-expect-error FIXME
|
|
const value = extension.commands({
|
|
schema,
|
|
...(["node", "mark"].includes(type)
|
|
? {
|
|
type: schema[`${type}s`][name],
|
|
}
|
|
: {}),
|
|
});
|
|
|
|
const apply = (
|
|
callback: CommandFactory,
|
|
attrs: Record<string, Primitive>
|
|
) => {
|
|
if (!view.editable && !extension.allowInReadOnly) {
|
|
return false;
|
|
}
|
|
if (extension.focusAfterExecution) {
|
|
view.focus();
|
|
}
|
|
return callback(attrs)(view.state, view.dispatch, view);
|
|
};
|
|
|
|
const handle = (_name: string, _value: CommandFactory) => {
|
|
if (Array.isArray(_value)) {
|
|
commands[_name] = (attrs: Record<string, Primitive>) =>
|
|
_value.forEach((callback) => apply(callback, attrs));
|
|
} else if (typeof _value === "function") {
|
|
commands[_name] = (attrs: Record<string, Primitive>) =>
|
|
apply(_value, attrs);
|
|
}
|
|
};
|
|
|
|
if (typeof value === "object") {
|
|
Object.entries(value).forEach(([commandName, commandValue]) => {
|
|
handle(commandName, commandValue);
|
|
});
|
|
} else if (value) {
|
|
handle(name, value);
|
|
}
|
|
|
|
return {
|
|
...allCommands,
|
|
...commands,
|
|
};
|
|
}, {});
|
|
}
|
|
}
|