UNPKG

@tiptap/extension-text-style

Version:

text style extension for tiptap

176 lines (172 loc) 5.57 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/background-color/index.ts var index_exports = {}; __export(index_exports, { BackgroundColor: () => BackgroundColor, default: () => index_default }); module.exports = __toCommonJS(index_exports); // src/text-style/index.ts var import_core = require("@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 = import_core.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", (0, import_core.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 var import_core2 = require("@tiptap/core"); var BackgroundColor = import_core2.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; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { BackgroundColor }); //# sourceMappingURL=index.cjs.map