UNPKG

@tiptap/extension-text-style

Version:

text style extension for tiptap

149 lines (147 loc) 4.48 kB
// src/text-style/index.ts import { Mark, mergeAttributes } from "@tiptap/core"; var MAX_FIND_CHILD_SPAN_DEPTH = 20; var findChildSpans = (element, depth = 0) => { const childSpans = []; if (!element.children.length || depth > MAX_FIND_CHILD_SPAN_DEPTH) { return childSpans; } Array.from(element.children).forEach((child) => { if (child.tagName === "SPAN") { childSpans.push(child); } else if (child.children.length) { childSpans.push(...findChildSpans(child, depth + 1)); } }); return childSpans; }; var mergeNestedSpanStyles = (element) => { if (!element.children.length) { return; } const childSpans = findChildSpans(element); if (!childSpans) { return; } childSpans.forEach((childSpan) => { var _a, _b; const childStyle = childSpan.getAttribute("style"); const closestParentSpanStyleOfChild = (_b = (_a = childSpan.parentElement) == null ? void 0 : _a.closest("span")) == null ? void 0 : _b.getAttribute("style"); childSpan.setAttribute("style", `${closestParentSpanStyleOfChild};${childStyle}`); }); }; var TextStyle = Mark.create({ name: "textStyle", priority: 101, addOptions() { return { HTMLAttributes: {}, mergeNestedSpanStyles: true }; }, parseHTML() { return [ { tag: "span", consuming: false, getAttrs: (element) => { const hasStyles = element.hasAttribute("style"); if (!hasStyles) { return false; } if (this.options.mergeNestedSpanStyles) { mergeNestedSpanStyles(element); } return {}; } } ]; }, renderHTML({ HTMLAttributes }) { return ["span", mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]; }, addCommands() { return { toggleTextStyle: (attributes) => ({ commands }) => { return commands.toggleMark(this.name, attributes); }, removeEmptyTextStyle: () => ({ tr }) => { const { selection } = tr; tr.doc.nodesBetween(selection.from, selection.to, (node, pos) => { if (node.isTextblock) { return true; } if (!node.marks.filter((mark) => mark.type === this.type).some((mark) => Object.values(mark.attrs).some((value) => !!value))) { tr.removeMark(pos, pos + node.nodeSize, this.type); } }); return true; } }; } }); // src/background-color/background-color.ts import { Extension } from "@tiptap/core"; var BackgroundColor = Extension.create({ name: "backgroundColor", addOptions() { return { types: ["textStyle"] }; }, addGlobalAttributes() { return [ { types: this.options.types, attributes: { backgroundColor: { default: null, parseHTML: (element) => { var _a; const styleAttr = element.getAttribute("style"); if (styleAttr) { const decls = styleAttr.split(";").map((s) => s.trim()).filter(Boolean); for (let i = decls.length - 1; i >= 0; i -= 1) { const parts = decls[i].split(":"); if (parts.length >= 2) { const prop = parts[0].trim().toLowerCase(); const val = parts.slice(1).join(":").trim(); if (prop === "background-color") { return val.replace(/['"]+/g, ""); } } } } return (_a = element.style.backgroundColor) == null ? void 0 : _a.replace(/['"]+/g, ""); }, renderHTML: (attributes) => { if (!attributes.backgroundColor) { return {}; } return { style: `background-color: ${attributes.backgroundColor}` }; } } } } ]; }, addCommands() { return { setBackgroundColor: (backgroundColor) => ({ chain }) => { return chain().setMark("textStyle", { backgroundColor }).run(); }, unsetBackgroundColor: () => ({ chain }) => { return chain().setMark("textStyle", { backgroundColor: null }).removeEmptyTextStyle().run(); } }; } }); // src/background-color/index.ts var index_default = BackgroundColor; export { BackgroundColor, index_default as default }; //# sourceMappingURL=index.js.map