| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/bitnami/htdocs/app/node_modules/prosemirror-model/src/ |
Upload File : |
import {Fragment} from "./fragment"
import {Slice} from "./replace"
import {Mark} from "./mark"
// ParseOptions:: interface
// These are the options recognized by the
// [`parse`](#model.DOMParser.parse) and
// [`parseSlice`](#model.DOMParser.parseSlice) methods.
//
// preserveWhitespace:: ?union<bool, "full">
// By default, whitespace is collapsed as per HTML's rules. Pass
// `true` to preserve whitespace, but normalize newlines to
// spaces, and `"full"` to preserve whitespace entirely.
//
// findPositions:: ?[{node: dom.Node, offset: number}]
// When given, the parser will, beside parsing the content,
// record the document positions of the given DOM positions. It
// will do so by writing to the objects, adding a `pos` property
// that holds the document position. DOM positions that are not
// in the parsed content will not be written to.
//
// from:: ?number
// The child node index to start parsing from.
//
// to:: ?number
// The child node index to stop parsing at.
//
// topNode:: ?Node
// By default, the content is parsed into the schema's default
// [top node type](#model.Schema.topNodeType). You can pass this
// option to use the type and attributes from a different node
// as the top container.
//
// topMatch:: ?ContentMatch
// Provide the starting content match that content parsed into the
// top node is matched against.
//
// context:: ?ResolvedPos
// A set of additional nodes to count as
// [context](#model.ParseRule.context) when parsing, above the
// given [top node](#model.ParseOptions.topNode).
// ParseRule:: interface
// A value that describes how to parse a given DOM node or inline
// style as a ProseMirror node or mark.
//
// tag:: ?string
// A CSS selector describing the kind of DOM elements to match. A
// single rule should have _either_ a `tag` or a `style` property.
//
// namespace:: ?string
// The namespace to match. This should be used with `tag`.
// Nodes are only matched when the namespace matches or this property
// is null.
//
// style:: ?string
// A CSS property name to match. When given, this rule matches
// inline styles that list that property. May also have the form
// `"property=value"`, in which case the rule only matches if the
// property's value exactly matches the given value. (For more
// complicated filters, use [`getAttrs`](#model.ParseRule.getAttrs)
// and return false to indicate that the match failed.) Rules
// matching styles may only produce [marks](#model.ParseRule.mark),
// not nodes.
//
// priority:: ?number
// Can be used to change the order in which the parse rules in a
// schema are tried. Those with higher priority come first. Rules
// without a priority are counted as having priority 50. This
// property is only meaningful in a schema—when directly
// constructing a parser, the order of the rule array is used.
//
// consuming:: ?boolean
// By default, when a rule matches an element or style, no further
// rules get a chance to match it. By setting this to `false`, you
// indicate that even when this rule matches, other rules that come
// after it should also run.
//
// context:: ?string
// When given, restricts this rule to only match when the current
// context—the parent nodes into which the content is being
// parsed—matches this expression. Should contain one or more node
// names or node group names followed by single or double slashes.
// For example `"paragraph/"` means the rule only matches when the
// parent node is a paragraph, `"blockquote/paragraph/"` restricts
// it to be in a paragraph that is inside a blockquote, and
// `"section//"` matches any position inside a section—a double
// slash matches any sequence of ancestor nodes. To allow multiple
// different contexts, they can be separated by a pipe (`|`)
// character, as in `"blockquote/|list_item/"`.
//
// node:: ?string
// The name of the node type to create when this rule matches. Only
// valid for rules with a `tag` property, not for style rules. Each
// rule should have one of a `node`, `mark`, or `ignore` property
// (except when it appears in a [node](#model.NodeSpec.parseDOM) or
// [mark spec](#model.MarkSpec.parseDOM), in which case the `node`
// or `mark` property will be derived from its position).
//
// mark:: ?string
// The name of the mark type to wrap the matched content in.
//
// ignore:: ?bool
// When true, ignore content that matches this rule.
//
// closeParent:: ?bool
// When true, finding an element that matches this rule will close
// the current node.
//
// skip:: ?bool
// When true, ignore the node that matches this rule, but do parse
// its content.
//
// attrs:: ?Object
// Attributes for the node or mark created by this rule. When
// `getAttrs` is provided, it takes precedence.
//
// getAttrs:: ?(union<dom.Node, string>) → ?union<Object, false>
// A function used to compute the attributes for the node or mark
// created by this rule. Can also be used to describe further
// conditions the DOM element or style must match. When it returns
// `false`, the rule won't match. When it returns null or undefined,
// that is interpreted as an empty/default set of attributes.
//
// Called with a DOM Element for `tag` rules, and with a string (the
// style's value) for `style` rules.
//
// contentElement:: ?union<string, (dom.Node) → dom.Node>
// For `tag` rules that produce non-leaf nodes or marks, by default
// the content of the DOM element is parsed as content of the mark
// or node. If the child nodes are in a descendent node, this may be
// a CSS selector string that the parser must use to find the actual
// content element, or a function that returns the actual content
// element to the parser.
//
// getContent:: ?(dom.Node, schema: Schema) → Fragment
// Can be used to override the content of a matched node. When
// present, instead of parsing the node's child nodes, the result of
// this function is used.
//
// preserveWhitespace:: ?union<bool, "full">
// Controls whether whitespace should be preserved when parsing the
// content inside the matched element. `false` means whitespace may
// be collapsed, `true` means that whitespace should be preserved
// but newlines normalized to spaces, and `"full"` means that
// newlines should also be preserved.
// ::- A DOM parser represents a strategy for parsing DOM content into
// a ProseMirror document conforming to a given schema. Its behavior
// is defined by an array of [rules](#model.ParseRule).
export class DOMParser {
// :: (Schema, [ParseRule])
// Create a parser that targets the given schema, using the given
// parsing rules.
constructor(schema, rules) {
// :: Schema
// The schema into which the parser parses.
this.schema = schema
// :: [ParseRule]
// The set of [parse rules](#model.ParseRule) that the parser
// uses, in order of precedence.
this.rules = rules
this.tags = []
this.styles = []
rules.forEach(rule => {
if (rule.tag) this.tags.push(rule)
else if (rule.style) this.styles.push(rule)
})
// Only normalize list elements when lists in the schema can't directly contain themselves
this.normalizeLists = !this.tags.some(r => {
if (!/^(ul|ol)\b/.test(r.tag) || !r.node) return false
let node = schema.nodes[r.node]
return node.contentMatch.matchType(node)
})
}
// :: (dom.Node, ?ParseOptions) → Node
// Parse a document from the content of a DOM node.
parse(dom, options = {}) {
let context = new ParseContext(this, options, false)
context.addAll(dom, null, options.from, options.to)
return context.finish()
}
// :: (dom.Node, ?ParseOptions) → Slice
// Parses the content of the given DOM node, like
// [`parse`](#model.DOMParser.parse), and takes the same set of
// options. But unlike that method, which produces a whole node,
// this one returns a slice that is open at the sides, meaning that
// the schema constraints aren't applied to the start of nodes to
// the left of the input and the end of nodes at the end.
parseSlice(dom, options = {}) {
let context = new ParseContext(this, options, true)
context.addAll(dom, null, options.from, options.to)
return Slice.maxOpen(context.finish())
}
matchTag(dom, context, after) {
for (let i = after ? this.tags.indexOf(after) + 1 : 0; i < this.tags.length; i++) {
let rule = this.tags[i]
if (matches(dom, rule.tag) &&
(rule.namespace === undefined || dom.namespaceURI == rule.namespace) &&
(!rule.context || context.matchesContext(rule.context))) {
if (rule.getAttrs) {
let result = rule.getAttrs(dom)
if (result === false) continue
rule.attrs = result
}
return rule
}
}
}
matchStyle(prop, value, context, after) {
for (let i = after ? this.styles.indexOf(after) + 1 : 0; i < this.styles.length; i++) {
let rule = this.styles[i]
if (rule.style.indexOf(prop) != 0 ||
rule.context && !context.matchesContext(rule.context) ||
// Test that the style string either precisely matches the prop,
// or has an '=' sign after the prop, followed by the given
// value.
rule.style.length > prop.length &&
(rule.style.charCodeAt(prop.length) != 61 || rule.style.slice(prop.length + 1) != value))
continue
if (rule.getAttrs) {
let result = rule.getAttrs(value)
if (result === false) continue
rule.attrs = result
}
return rule
}
}
// : (Schema) → [ParseRule]
static schemaRules(schema) {
let result = []
function insert(rule) {
let priority = rule.priority == null ? 50 : rule.priority, i = 0
for (; i < result.length; i++) {
let next = result[i], nextPriority = next.priority == null ? 50 : next.priority
if (nextPriority < priority) break
}
result.splice(i, 0, rule)
}
for (let name in schema.marks) {
let rules = schema.marks[name].spec.parseDOM
if (rules) rules.forEach(rule => {
insert(rule = copy(rule))
rule.mark = name
})
}
for (let name in schema.nodes) {
let rules = schema.nodes[name].spec.parseDOM
if (rules) rules.forEach(rule => {
insert(rule = copy(rule))
rule.node = name
})
}
return result
}
// :: (Schema) → DOMParser
// Construct a DOM parser using the parsing rules listed in a
// schema's [node specs](#model.NodeSpec.parseDOM), reordered by
// [priority](#model.ParseRule.priority).
static fromSchema(schema) {
return schema.cached.domParser ||
(schema.cached.domParser = new DOMParser(schema, DOMParser.schemaRules(schema)))
}
}
// : Object<bool> The block-level tags in HTML5
const blockTags = {
address: true, article: true, aside: true, blockquote: true, canvas: true,
dd: true, div: true, dl: true, fieldset: true, figcaption: true, figure: true,
footer: true, form: true, h1: true, h2: true, h3: true, h4: true, h5: true,
h6: true, header: true, hgroup: true, hr: true, li: true, noscript: true, ol: true,
output: true, p: true, pre: true, section: true, table: true, tfoot: true, ul: true
}
// : Object<bool> The tags that we normally ignore.
const ignoreTags = {
head: true, noscript: true, object: true, script: true, style: true, title: true
}
// : Object<bool> List tags.
const listTags = {ol: true, ul: true}
// Using a bitfield for node context options
const OPT_PRESERVE_WS = 1, OPT_PRESERVE_WS_FULL = 2, OPT_OPEN_LEFT = 4
function wsOptionsFor(preserveWhitespace) {
return (preserveWhitespace ? OPT_PRESERVE_WS : 0) | (preserveWhitespace === "full" ? OPT_PRESERVE_WS_FULL : 0)
}
class NodeContext {
constructor(type, attrs, marks, pendingMarks, solid, match, options) {
this.type = type
this.attrs = attrs
this.solid = solid
this.match = match || (options & OPT_OPEN_LEFT ? null : type.contentMatch)
this.options = options
this.content = []
// Marks applied to this node itself
this.marks = marks
// Marks applied to its children
this.activeMarks = Mark.none
// Marks that can't apply here, but will be used in children if possible
this.pendingMarks = pendingMarks
// Nested Marks with same type
this.stashMarks = []
}
findWrapping(node) {
if (!this.match) {
if (!this.type) return []
let fill = this.type.contentMatch.fillBefore(Fragment.from(node))
if (fill) {
this.match = this.type.contentMatch.matchFragment(fill)
} else {
let start = this.type.contentMatch, wrap
if (wrap = start.findWrapping(node.type)) {
this.match = start
return wrap
} else {
return null
}
}
}
return this.match.findWrapping(node.type)
}
finish(openEnd) {
if (!(this.options & OPT_PRESERVE_WS)) { // Strip trailing whitespace
let last = this.content[this.content.length - 1], m
if (last && last.isText && (m = /[ \t\r\n\u000c]+$/.exec(last.text))) {
if (last.text.length == m[0].length) this.content.pop()
else this.content[this.content.length - 1] = last.withText(last.text.slice(0, last.text.length - m[0].length))
}
}
let content = Fragment.from(this.content)
if (!openEnd && this.match)
content = content.append(this.match.fillBefore(Fragment.empty, true))
return this.type ? this.type.create(this.attrs, content, this.marks) : content
}
popFromStashMark(mark) {
for (let i = this.stashMarks.length - 1; i >= 0; i--)
if (mark.eq(this.stashMarks[i])) return this.stashMarks.splice(i, 1)[0]
}
applyPending(nextType) {
for (let i = 0, pending = this.pendingMarks; i < pending.length; i++) {
let mark = pending[i]
if ((this.type ? this.type.allowsMarkType(mark.type) : markMayApply(mark.type, nextType)) &&
!mark.isInSet(this.activeMarks)) {
this.activeMarks = mark.addToSet(this.activeMarks)
this.pendingMarks = mark.removeFromSet(this.pendingMarks)
}
}
}
}
class ParseContext {
// : (DOMParser, Object)
constructor(parser, options, open) {
// : DOMParser The parser we are using.
this.parser = parser
// : Object The options passed to this parse.
this.options = options
this.isOpen = open
let topNode = options.topNode, topContext
let topOptions = wsOptionsFor(options.preserveWhitespace) | (open ? OPT_OPEN_LEFT : 0)
if (topNode)
topContext = new NodeContext(topNode.type, topNode.attrs, Mark.none, Mark.none, true,
options.topMatch || topNode.type.contentMatch, topOptions)
else if (open)
topContext = new NodeContext(null, null, Mark.none, Mark.none, true, null, topOptions)
else
topContext = new NodeContext(parser.schema.topNodeType, null, Mark.none, Mark.none, true, null, topOptions)
this.nodes = [topContext]
// : [Mark] The current set of marks
this.open = 0
this.find = options.findPositions
this.needsBlock = false
}
get top() {
return this.nodes[this.open]
}
// : (dom.Node)
// Add a DOM node to the content. Text is inserted as text node,
// otherwise, the node is passed to `addElement` or, if it has a
// `style` attribute, `addElementWithStyles`.
addDOM(dom) {
if (dom.nodeType == 3) {
this.addTextNode(dom)
} else if (dom.nodeType == 1) {
let style = dom.getAttribute("style")
let marks = style ? this.readStyles(parseStyles(style)) : null, top = this.top
if (marks != null) for (let i = 0; i < marks.length; i++) this.addPendingMark(marks[i])
this.addElement(dom)
if (marks != null) for (let i = 0; i < marks.length; i++) this.removePendingMark(marks[i], top)
}
}
addTextNode(dom) {
let value = dom.nodeValue
let top = this.top
if (top.options & OPT_PRESERVE_WS_FULL ||
(top.type ? top.type.inlineContent : top.content.length && top.content[0].isInline) ||
/[^ \t\r\n\u000c]/.test(value)) {
if (!(top.options & OPT_PRESERVE_WS)) {
value = value.replace(/[ \t\r\n\u000c]+/g, " ")
// If this starts with whitespace, and there is no node before it, or
// a hard break, or a text node that ends with whitespace, strip the
// leading space.
if (/^[ \t\r\n\u000c]/.test(value) && this.open == this.nodes.length - 1) {
let nodeBefore = top.content[top.content.length - 1]
let domNodeBefore = dom.previousSibling
if (!nodeBefore ||
(domNodeBefore && domNodeBefore.nodeName == 'BR') ||
(nodeBefore.isText && /[ \t\r\n\u000c]$/.test(nodeBefore.text)))
value = value.slice(1)
}
} else if (!(top.options & OPT_PRESERVE_WS_FULL)) {
value = value.replace(/\r?\n|\r/g, " ")
} else {
value = value.replace(/\r\n?/g, "\n")
}
if (value) this.insertNode(this.parser.schema.text(value))
this.findInText(dom)
} else {
this.findInside(dom)
}
}
// : (dom.Element, ?ParseRule)
// Try to find a handler for the given tag and use that to parse. If
// none is found, the element's content nodes are added directly.
addElement(dom, matchAfter) {
let name = dom.nodeName.toLowerCase(), ruleID
if (listTags.hasOwnProperty(name) && this.parser.normalizeLists) normalizeList(dom)
let rule = (this.options.ruleFromNode && this.options.ruleFromNode(dom)) ||
(ruleID = this.parser.matchTag(dom, this, matchAfter))
if (rule ? rule.ignore : ignoreTags.hasOwnProperty(name)) {
this.findInside(dom)
this.ignoreFallback(dom)
} else if (!rule || rule.skip || rule.closeParent) {
if (rule && rule.closeParent) this.open = Math.max(0, this.open - 1)
else if (rule && rule.skip.nodeType) dom = rule.skip
let sync, top = this.top, oldNeedsBlock = this.needsBlock
if (blockTags.hasOwnProperty(name)) {
sync = true
if (!top.type) this.needsBlock = true
} else if (!dom.firstChild) {
this.leafFallback(dom)
return
}
this.addAll(dom)
if (sync) this.sync(top)
this.needsBlock = oldNeedsBlock
} else {
this.addElementByRule(dom, rule, rule.consuming === false ? ruleID : null)
}
}
// Called for leaf DOM nodes that would otherwise be ignored
leafFallback(dom) {
if (dom.nodeName == "BR" && this.top.type && this.top.type.inlineContent)
this.addTextNode(dom.ownerDocument.createTextNode("\n"))
}
// Called for ignored nodes
ignoreFallback(dom) {
// Ignored BR nodes should at least create an inline context
if (dom.nodeName == "BR" && (!this.top.type || !this.top.type.inlineContent))
this.findPlace(this.parser.schema.text("-"))
}
// Run any style parser associated with the node's styles. Either
// return an array of marks, or null to indicate some of the styles
// had a rule with `ignore` set.
readStyles(styles) {
let marks = Mark.none
style: for (let i = 0; i < styles.length; i += 2) {
for (let after = null;;) {
let rule = this.parser.matchStyle(styles[i], styles[i + 1], this, after)
if (!rule) continue style
if (rule.ignore) return null
marks = this.parser.schema.marks[rule.mark].create(rule.attrs).addToSet(marks)
if (rule.consuming === false) after = rule
else break
}
}
return marks
}
// : (dom.Element, ParseRule) → bool
// Look up a handler for the given node. If none are found, return
// false. Otherwise, apply it, use its return value to drive the way
// the node's content is wrapped, and return true.
addElementByRule(dom, rule, continueAfter) {
let sync, nodeType, markType, mark
if (rule.node) {
nodeType = this.parser.schema.nodes[rule.node]
if (!nodeType.isLeaf) {
sync = this.enter(nodeType, rule.attrs, rule.preserveWhitespace)
} else if (!this.insertNode(nodeType.create(rule.attrs))) {
this.leafFallback(dom)
}
} else {
markType = this.parser.schema.marks[rule.mark]
mark = markType.create(rule.attrs)
this.addPendingMark(mark)
}
let startIn = this.top
if (nodeType && nodeType.isLeaf) {
this.findInside(dom)
} else if (continueAfter) {
this.addElement(dom, continueAfter)
} else if (rule.getContent) {
this.findInside(dom)
rule.getContent(dom, this.parser.schema).forEach(node => this.insertNode(node))
} else {
let contentDOM = rule.contentElement
if (typeof contentDOM == "string") contentDOM = dom.querySelector(contentDOM)
else if (typeof contentDOM == "function") contentDOM = contentDOM(dom)
if (!contentDOM) contentDOM = dom
this.findAround(dom, contentDOM, true)
this.addAll(contentDOM, sync)
}
if (sync) { this.sync(startIn); this.open-- }
if (mark) this.removePendingMark(mark, startIn)
}
// : (dom.Node, ?NodeBuilder, ?number, ?number)
// Add all child nodes between `startIndex` and `endIndex` (or the
// whole node, if not given). If `sync` is passed, use it to
// synchronize after every block element.
addAll(parent, sync, startIndex, endIndex) {
let index = startIndex || 0
for (let dom = startIndex ? parent.childNodes[startIndex] : parent.firstChild,
end = endIndex == null ? null : parent.childNodes[endIndex];
dom != end; dom = dom.nextSibling, ++index) {
this.findAtPoint(parent, index)
this.addDOM(dom)
if (sync && blockTags.hasOwnProperty(dom.nodeName.toLowerCase()))
this.sync(sync)
}
this.findAtPoint(parent, index)
}
// Try to find a way to fit the given node type into the current
// context. May add intermediate wrappers and/or leave non-solid
// nodes that we're in.
findPlace(node) {
let route, sync
for (let depth = this.open; depth >= 0; depth--) {
let cx = this.nodes[depth]
let found = cx.findWrapping(node)
if (found && (!route || route.length > found.length)) {
route = found
sync = cx
if (!found.length) break
}
if (cx.solid) break
}
if (!route) return false
this.sync(sync)
for (let i = 0; i < route.length; i++)
this.enterInner(route[i], null, false)
return true
}
// : (Node) → ?Node
// Try to insert the given node, adjusting the context when needed.
insertNode(node) {
if (node.isInline && this.needsBlock && !this.top.type) {
let block = this.textblockFromContext()
if (block) this.enterInner(block)
}
if (this.findPlace(node)) {
this.closeExtra()
let top = this.top
top.applyPending(node.type)
if (top.match) top.match = top.match.matchType(node.type)
let marks = top.activeMarks
for (let i = 0; i < node.marks.length; i++)
if (!top.type || top.type.allowsMarkType(node.marks[i].type))
marks = node.marks[i].addToSet(marks)
top.content.push(node.mark(marks))
return true
}
return false
}
// : (NodeType, ?Object) → bool
// Try to start a node of the given type, adjusting the context when
// necessary.
enter(type, attrs, preserveWS) {
let ok = this.findPlace(type.create(attrs))
if (ok) this.enterInner(type, attrs, true, preserveWS)
return ok
}
// Open a node of the given type
enterInner(type, attrs, solid, preserveWS) {
this.closeExtra()
let top = this.top
top.applyPending(type)
top.match = top.match && top.match.matchType(type, attrs)
let options = preserveWS == null ? top.options & ~OPT_OPEN_LEFT : wsOptionsFor(preserveWS)
if ((top.options & OPT_OPEN_LEFT) && top.content.length == 0) options |= OPT_OPEN_LEFT
this.nodes.push(new NodeContext(type, attrs, top.activeMarks, top.pendingMarks, solid, null, options))
this.open++
}
// Make sure all nodes above this.open are finished and added to
// their parents
closeExtra(openEnd) {
let i = this.nodes.length - 1
if (i > this.open) {
for (; i > this.open; i--) this.nodes[i - 1].content.push(this.nodes[i].finish(openEnd))
this.nodes.length = this.open + 1
}
}
finish() {
this.open = 0
this.closeExtra(this.isOpen)
return this.nodes[0].finish(this.isOpen || this.options.topOpen)
}
sync(to) {
for (let i = this.open; i >= 0; i--) if (this.nodes[i] == to) {
this.open = i
return
}
}
get currentPos() {
this.closeExtra()
let pos = 0
for (let i = this.open; i >= 0; i--) {
let content = this.nodes[i].content
for (let j = content.length - 1; j >= 0; j--)
pos += content[j].nodeSize
if (i) pos++
}
return pos
}
findAtPoint(parent, offset) {
if (this.find) for (let i = 0; i < this.find.length; i++) {
if (this.find[i].node == parent && this.find[i].offset == offset)
this.find[i].pos = this.currentPos
}
}
findInside(parent) {
if (this.find) for (let i = 0; i < this.find.length; i++) {
if (this.find[i].pos == null && parent.nodeType == 1 && parent.contains(this.find[i].node))
this.find[i].pos = this.currentPos
}
}
findAround(parent, content, before) {
if (parent != content && this.find) for (let i = 0; i < this.find.length; i++) {
if (this.find[i].pos == null && parent.nodeType == 1 && parent.contains(this.find[i].node)) {
let pos = content.compareDocumentPosition(this.find[i].node)
if (pos & (before ? 2 : 4))
this.find[i].pos = this.currentPos
}
}
}
findInText(textNode) {
if (this.find) for (let i = 0; i < this.find.length; i++) {
if (this.find[i].node == textNode)
this.find[i].pos = this.currentPos - (textNode.nodeValue.length - this.find[i].offset)
}
}
// : (string) → bool
// Determines whether the given [context
// string](#ParseRule.context) matches this context.
matchesContext(context) {
if (context.indexOf("|") > -1)
return context.split(/\s*\|\s*/).some(this.matchesContext, this)
let parts = context.split("/")
let option = this.options.context
let useRoot = !this.isOpen && (!option || option.parent.type == this.nodes[0].type)
let minDepth = -(option ? option.depth + 1 : 0) + (useRoot ? 0 : 1)
let match = (i, depth) => {
for (; i >= 0; i--) {
let part = parts[i]
if (part == "") {
if (i == parts.length - 1 || i == 0) continue
for (; depth >= minDepth; depth--)
if (match(i - 1, depth)) return true
return false
} else {
let next = depth > 0 || (depth == 0 && useRoot) ? this.nodes[depth].type
: option && depth >= minDepth ? option.node(depth - minDepth).type
: null
if (!next || (next.name != part && next.groups.indexOf(part) == -1))
return false
depth--
}
}
return true
}
return match(parts.length - 1, this.open)
}
textblockFromContext() {
let $context = this.options.context
if ($context) for (let d = $context.depth; d >= 0; d--) {
let deflt = $context.node(d).contentMatchAt($context.indexAfter(d)).defaultType
if (deflt && deflt.isTextblock && deflt.defaultAttrs) return deflt
}
for (let name in this.parser.schema.nodes) {
let type = this.parser.schema.nodes[name]
if (type.isTextblock && type.defaultAttrs) return type
}
}
addPendingMark(mark) {
let found = findSameMarkInSet(mark, this.top.pendingMarks)
if (found) this.top.stashMarks.push(found)
this.top.pendingMarks = mark.addToSet(this.top.pendingMarks)
}
removePendingMark(mark, upto) {
for (let depth = this.open; depth >= 0; depth--) {
let level = this.nodes[depth]
let found = level.pendingMarks.lastIndexOf(mark)
if (found > -1) {
level.pendingMarks = mark.removeFromSet(level.pendingMarks)
} else {
level.activeMarks = mark.removeFromSet(level.activeMarks)
let stashMark = level.popFromStashMark(mark)
if (stashMark && level.type && level.type.allowsMarkType(stashMark.type))
level.activeMarks = stashMark.addToSet(level.activeMarks)
}
if (level == upto) break
}
}
}
// Kludge to work around directly nested list nodes produced by some
// tools and allowed by browsers to mean that the nested list is
// actually part of the list item above it.
function normalizeList(dom) {
for (let child = dom.firstChild, prevItem = null; child; child = child.nextSibling) {
let name = child.nodeType == 1 ? child.nodeName.toLowerCase() : null
if (name && listTags.hasOwnProperty(name) && prevItem) {
prevItem.appendChild(child)
child = prevItem
} else if (name == "li") {
prevItem = child
} else if (name) {
prevItem = null
}
}
}
// Apply a CSS selector.
function matches(dom, selector) {
return (dom.matches || dom.msMatchesSelector || dom.webkitMatchesSelector || dom.mozMatchesSelector).call(dom, selector)
}
// : (string) → [string]
// Tokenize a style attribute into property/value pairs.
function parseStyles(style) {
let re = /\s*([\w-]+)\s*:\s*([^;]+)/g, m, result = []
while (m = re.exec(style)) result.push(m[1], m[2].trim())
return result
}
function copy(obj) {
let copy = {}
for (let prop in obj) copy[prop] = obj[prop]
return copy
}
// Used when finding a mark at the top level of a fragment parse.
// Checks whether it would be reasonable to apply a given mark type to
// a given node, by looking at the way the mark occurs in the schema.
function markMayApply(markType, nodeType) {
let nodes = nodeType.schema.nodes
for (let name in nodes) {
let parent = nodes[name]
if (!parent.allowsMarkType(markType)) continue
let seen = [], scan = match => {
seen.push(match)
for (let i = 0; i < match.edgeCount; i++) {
let {type, next} = match.edge(i)
if (type == nodeType) return true
if (seen.indexOf(next) < 0 && scan(next)) return true
}
}
if (scan(parent.contentMatch)) return true
}
}
function findSameMarkInSet(mark, set) {
for (let i = 0; i < set.length; i++) {
if (mark.eq(set[i])) return set[i]
}
}