tiptap/packages/core/src/ExtensionManager.ts

160 lines
5.0 KiB
TypeScript
Raw Normal View History

2020-04-02 15:42:26 +08:00
import { keymap } from 'prosemirror-keymap'
2020-10-29 16:26:24 +08:00
import { Schema, Node as ProsemirrorNode } from 'prosemirror-model'
2021-01-25 03:56:07 +08:00
import { inputRules as inputRulesPlugin } from 'prosemirror-inputrules'
2020-10-29 16:26:24 +08:00
import { EditorView, Decoration } from 'prosemirror-view'
2021-01-28 16:11:24 +08:00
import { Plugin } from 'prosemirror-state'
2020-08-22 06:12:34 +08:00
import { Editor } from './Editor'
import { Extensions, NodeViewRenderer } from './types'
2020-11-30 16:42:53 +08:00
import getSchema from './helpers/getSchema'
import getSchemaTypeByName from './helpers/getSchemaTypeByName'
2021-01-20 03:27:51 +08:00
import getNodeType from './helpers/getNodeType'
2020-11-30 16:42:53 +08:00
import splitExtensions from './helpers/splitExtensions'
import getAttributesFromExtensions from './helpers/getAttributesFromExtensions'
import getRenderedAttributes from './helpers/getRenderedAttributes'
2020-08-22 06:05:00 +08:00
2020-03-06 04:05:01 +08:00
export default class ExtensionManager {
2020-04-01 04:17:54 +08:00
editor: Editor
2020-09-24 06:29:05 +08:00
2020-10-23 15:20:26 +08:00
schema: Schema
2020-08-22 06:05:00 +08:00
extensions: Extensions
2020-03-06 04:05:01 +08:00
2020-08-22 06:05:00 +08:00
constructor(extensions: Extensions, editor: Editor) {
2020-04-01 04:17:54 +08:00
this.editor = editor
2020-03-06 04:05:01 +08:00
this.extensions = extensions
2020-10-23 15:20:26 +08:00
this.schema = getSchema(this.extensions)
2020-09-09 17:23:24 +08:00
2020-10-23 05:21:52 +08:00
this.extensions.forEach(extension => {
const context = {
options: extension.options,
editor: this.editor,
2020-11-16 16:43:17 +08:00
type: getSchemaTypeByName(extension.config.name, this.schema),
2020-10-23 05:21:52 +08:00
}
2020-11-16 16:43:17 +08:00
const commands = extension.config.addCommands.bind(context)()
2020-10-23 05:21:52 +08:00
editor.registerCommands(commands)
2020-11-30 20:50:06 +08:00
2020-11-30 21:12:36 +08:00
if (typeof extension.config.onCreate === 'function') {
this.editor.on('create', extension.config.onCreate.bind(context))
}
if (typeof extension.config.onUpdate === 'function') {
this.editor.on('update', extension.config.onUpdate.bind(context))
}
if (typeof extension.config.onSelection === 'function') {
this.editor.on('selection', extension.config.onSelection.bind(context))
}
if (typeof extension.config.onTransaction === 'function') {
this.editor.on('transaction', extension.config.onTransaction.bind(context))
}
if (typeof extension.config.onFocus === 'function') {
this.editor.on('focus', extension.config.onFocus.bind(context))
}
if (typeof extension.config.onBlur === 'function') {
this.editor.on('blur', extension.config.onBlur.bind(context))
}
2020-11-30 20:50:06 +08:00
if (typeof extension.config.onDestroy === 'function') {
this.editor.on('destroy', extension.config.onDestroy.bind(context))
}
2020-10-23 05:21:52 +08:00
})
}
2020-04-02 20:34:07 +08:00
2021-01-28 16:11:24 +08:00
get plugins(): Plugin[] {
2021-01-29 00:39:57 +08:00
return [...this.extensions]
.reverse()
2020-10-23 05:21:52 +08:00
.map(extension => {
const context = {
options: extension.options,
editor: this.editor,
2020-11-16 16:43:17 +08:00
type: getSchemaTypeByName(extension.config.name, this.schema),
2020-10-23 05:21:52 +08:00
}
2021-01-25 03:56:07 +08:00
const keymapPlugin = keymap(extension.config.addKeyboardShortcuts.bind(context)())
const inputRules = extension.config.addInputRules.bind(context)()
const inputRulePlugins = this.editor.options.enableInputRules && inputRules.length
? [inputRulesPlugin({ rules: inputRules })]
: []
const pasteRulePlugins = this.editor.options.enablePasteRules
? extension.config.addPasteRules.bind(context)()
: []
const plugins = extension.config.addProseMirrorPlugins.bind(context)()
return [
keymapPlugin,
...inputRulePlugins,
...pasteRulePlugins,
...plugins,
]
2020-10-23 05:21:52 +08:00
})
.flat()
2020-04-02 14:53:59 +08:00
}
2021-01-29 02:56:35 +08:00
get attributes() {
return getAttributesFromExtensions(this.extensions)
}
2020-04-24 15:32:37 +08:00
get nodeViews() {
2020-10-30 21:55:48 +08:00
const { editor } = this
2020-10-29 16:26:24 +08:00
const { nodeExtensions } = splitExtensions(this.extensions)
return Object.fromEntries(nodeExtensions
2020-11-16 16:43:17 +08:00
.filter(extension => !!extension.config.addNodeView)
2020-10-29 16:26:24 +08:00
.map(extension => {
2021-01-29 02:56:35 +08:00
const extensionAttributes = this.attributes.filter(attribute => attribute.type === extension.config.name)
2020-10-29 16:26:24 +08:00
const context = {
options: extension.options,
2020-10-30 21:55:48 +08:00
editor,
2021-01-20 03:27:51 +08:00
type: getNodeType(extension.config.name, this.schema),
2020-10-29 16:26:24 +08:00
}
2021-01-20 03:27:51 +08:00
const renderer = extension.config.addNodeView?.call(context) as NodeViewRenderer
2020-10-29 16:26:24 +08:00
const nodeview = (
node: ProsemirrorNode,
view: EditorView,
getPos: (() => number) | boolean,
decorations: Decoration[],
2020-10-30 21:55:48 +08:00
) => {
2020-11-13 23:07:20 +08:00
const HTMLAttributes = getRenderedAttributes(node, extensionAttributes)
2020-10-30 21:55:48 +08:00
return renderer({
editor,
node,
getPos,
decorations,
2020-11-13 23:07:20 +08:00
HTMLAttributes,
2020-11-19 05:50:07 +08:00
extension,
2020-10-30 21:55:48 +08:00
})
}
2020-10-29 16:26:24 +08:00
2020-11-16 16:43:17 +08:00
return [extension.config.name, nodeview]
2020-10-29 16:26:24 +08:00
}))
2020-04-24 15:32:37 +08:00
}
2021-01-20 03:27:51 +08:00
get textSerializers() {
const { editor } = this
const { nodeExtensions } = splitExtensions(this.extensions)
return Object.fromEntries(nodeExtensions
.filter(extension => !!extension.config.renderText)
.map(extension => {
const context = {
options: extension.options,
editor,
type: getNodeType(extension.config.name, this.schema),
}
const textSerializer = (props: { node: ProsemirrorNode }) => extension.config.renderText?.call(context, props)
return [extension.config.name, textSerializer]
}))
}
2020-03-06 04:05:01 +08:00
}