2020-10-24 05:16:54 +08:00
|
|
|
import {
|
|
|
|
NodeSpec, MarkSpec, Schema, ParseRule,
|
|
|
|
} from 'prosemirror-model'
|
|
|
|
import { ExtensionAttribute, Extensions } from '../types'
|
2020-10-22 03:01:39 +08:00
|
|
|
import splitExtensions from './splitExtensions'
|
2020-10-22 05:32:28 +08:00
|
|
|
import getAttributesFromExtensions from './getAttributesFromExtensions'
|
|
|
|
import getRenderedAttributes from './getRenderedAttributes'
|
2020-10-23 15:20:26 +08:00
|
|
|
import isEmptyObject from './isEmptyObject'
|
|
|
|
|
2020-10-23 16:59:26 +08:00
|
|
|
function cleanUpSchemaItem<T>(data: T) {
|
2020-10-23 15:20:26 +08:00
|
|
|
return Object.fromEntries(Object.entries(data).filter(([key, value]) => {
|
|
|
|
if (key === 'attrs' && isEmptyObject(value)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return value !== null && value !== undefined
|
2020-10-23 16:59:26 +08:00
|
|
|
})) as T
|
2020-10-23 15:20:26 +08:00
|
|
|
}
|
2020-09-03 22:22:08 +08:00
|
|
|
|
2020-10-24 05:16:54 +08:00
|
|
|
function injectExtensionAttributes(parseRule: ParseRule, extensionAttributes: ExtensionAttribute[]): ParseRule {
|
|
|
|
if (parseRule.style) {
|
|
|
|
return parseRule
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
...parseRule,
|
|
|
|
getAttrs: node => {
|
2020-10-24 05:41:54 +08:00
|
|
|
const oldAttributes = parseRule.getAttrs
|
|
|
|
? parseRule.getAttrs(node)
|
|
|
|
: parseRule.attrs
|
|
|
|
|
|
|
|
if (oldAttributes === false) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-10-24 05:16:54 +08:00
|
|
|
const newAttributes = extensionAttributes
|
|
|
|
.filter(item => item.attribute.rendered)
|
|
|
|
.reduce((items, item) => ({
|
|
|
|
...items,
|
|
|
|
...item.attribute.parseHTML(node as HTMLElement),
|
|
|
|
}), {})
|
|
|
|
|
|
|
|
return { ...oldAttributes, ...newAttributes }
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 17:59:09 +08:00
|
|
|
export default function getSchema(extensions: Extensions): Schema {
|
2020-10-22 05:32:28 +08:00
|
|
|
const allAttributes = getAttributesFromExtensions(extensions)
|
2020-10-22 03:13:38 +08:00
|
|
|
const { nodeExtensions, markExtensions } = splitExtensions(extensions)
|
2020-10-22 03:01:39 +08:00
|
|
|
const topNode = nodeExtensions.find(extension => extension.topNode)?.name
|
2020-10-12 16:32:54 +08:00
|
|
|
|
2020-10-21 21:17:05 +08:00
|
|
|
const nodes = Object.fromEntries(nodeExtensions.map(extension => {
|
2020-10-24 04:55:48 +08:00
|
|
|
const extensionAttributes = allAttributes.filter(attribute => attribute.type === extension.name)
|
2020-10-24 05:16:54 +08:00
|
|
|
const context = { options: extension.options }
|
2020-10-23 15:20:26 +08:00
|
|
|
const schema: NodeSpec = cleanUpSchemaItem({
|
2020-10-12 16:32:54 +08:00
|
|
|
content: extension.content,
|
2020-10-22 03:01:39 +08:00
|
|
|
marks: extension.marks,
|
2020-10-12 16:32:54 +08:00
|
|
|
group: extension.group,
|
2020-10-22 03:01:39 +08:00
|
|
|
inline: extension.inline,
|
|
|
|
atom: extension.atom,
|
|
|
|
selectable: extension.selectable,
|
|
|
|
draggable: extension.draggable,
|
|
|
|
code: extension.code,
|
|
|
|
defining: extension.defining,
|
|
|
|
isolating: extension.isolating,
|
2020-10-24 04:55:48 +08:00
|
|
|
attrs: Object.fromEntries(extensionAttributes.map(extensionAttribute => {
|
|
|
|
return [extensionAttribute.name, { default: extensionAttribute?.attribute?.default }]
|
2020-10-22 05:32:28 +08:00
|
|
|
})),
|
2020-10-24 05:16:54 +08:00
|
|
|
})
|
2020-10-24 04:55:48 +08:00
|
|
|
|
2020-10-24 05:16:54 +08:00
|
|
|
if (extension.parseHTML) {
|
|
|
|
schema.parseDOM = extension.parseHTML
|
|
|
|
.bind(context)()
|
|
|
|
?.map(parseRule => injectExtensionAttributes(parseRule, extensionAttributes))
|
|
|
|
}
|
2020-10-24 04:55:48 +08:00
|
|
|
|
2020-10-24 05:16:54 +08:00
|
|
|
if (extension.renderHTML) {
|
|
|
|
schema.toDOM = node => (extension.renderHTML as Function)?.bind(context)({
|
|
|
|
node,
|
|
|
|
attributes: getRenderedAttributes(node, extensionAttributes),
|
|
|
|
})
|
|
|
|
}
|
2020-10-12 16:32:54 +08:00
|
|
|
|
2020-10-21 21:17:05 +08:00
|
|
|
return [extension.name, schema]
|
2020-10-10 04:59:25 +08:00
|
|
|
}))
|
|
|
|
|
2020-10-22 03:13:38 +08:00
|
|
|
const marks = Object.fromEntries(markExtensions.map(extension => {
|
2020-10-24 04:55:48 +08:00
|
|
|
const extensionAttributes = allAttributes.filter(attribute => attribute.type === extension.name)
|
2020-10-24 05:16:54 +08:00
|
|
|
const context = { options: extension.options }
|
2020-10-23 15:20:26 +08:00
|
|
|
const schema: MarkSpec = cleanUpSchemaItem({
|
2020-10-22 03:13:38 +08:00
|
|
|
inclusive: extension.inclusive,
|
|
|
|
excludes: extension.excludes,
|
|
|
|
group: extension.group,
|
|
|
|
spanning: extension.spanning,
|
2020-10-24 04:55:48 +08:00
|
|
|
attrs: Object.fromEntries(extensionAttributes.map(extensionAttribute => {
|
|
|
|
return [extensionAttribute.name, { default: extensionAttribute?.attribute?.default }]
|
2020-10-22 15:14:24 +08:00
|
|
|
})),
|
2020-10-23 15:20:26 +08:00
|
|
|
})
|
2020-10-22 03:13:38 +08:00
|
|
|
|
2020-10-24 05:16:54 +08:00
|
|
|
if (extension.parseHTML) {
|
|
|
|
schema.parseDOM = extension.parseHTML
|
|
|
|
.bind(context)()
|
|
|
|
?.map(parseRule => injectExtensionAttributes(parseRule, extensionAttributes))
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extension.renderHTML) {
|
|
|
|
schema.toDOM = mark => (extension.renderHTML as Function)?.bind(context)({
|
|
|
|
mark,
|
|
|
|
attributes: getRenderedAttributes(mark, extensionAttributes),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-10-22 03:13:38 +08:00
|
|
|
return [extension.name, schema]
|
|
|
|
}))
|
|
|
|
|
2020-09-03 22:22:08 +08:00
|
|
|
return new Schema({
|
2020-10-10 04:59:25 +08:00
|
|
|
topNode,
|
|
|
|
nodes,
|
2020-10-22 03:13:38 +08:00
|
|
|
marks,
|
2020-09-03 22:22:08 +08:00
|
|
|
})
|
|
|
|
}
|