devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
52 lines (49 loc) • 1.74 kB
JavaScript
/**
* DevExtreme (esm/ui/html_editor/matchers/wordLists.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
function getListType(matches) {
var prefix = matches[1];
return prefix.match(/\S+\./) ? "ordered" : "bullet"
}
function getIndent(node) {
var style = node.getAttribute("style");
if (style) {
var level = style.replace(/\n+/g, "").match(/level(\d+)/);
return level ? level[1] - 1 : 0
} else {
return false
}
}
function removeNewLineChar(operations) {
var newLineOperation = operations[operations.length - 1];
newLineOperation.insert = newLineOperation.insert.trim()
}
var getMatcher = quill => {
var Delta = quill.import("delta");
return (node, delta) => {
var ops = delta.ops.slice();
var insertOperation = ops[0];
insertOperation.insert = insertOperation.insert.replace(/^\s+/, "");
var listDecoratorMatches = insertOperation.insert.match(/^(\S+)\s+/);
var indent = listDecoratorMatches && getIndent(node);
if (!listDecoratorMatches || false === indent) {
return delta
}
insertOperation.insert = insertOperation.insert.substring(listDecoratorMatches[0].length, insertOperation.insert.length);
removeNewLineChar(ops);
ops.push({
insert: "\n",
attributes: {
list: getListType(listDecoratorMatches),
indent: indent
}
});
return new Delta(ops)
}
};
export default getMatcher;