92 lines
3.8 KiB
JavaScript
92 lines
3.8 KiB
JavaScript
(function (global, factory) {
|
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core')) :
|
|
typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core'], factory) :
|
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-text-style"] = {}, global.core));
|
|
})(this, (function (exports, core) { 'use strict';
|
|
|
|
const mergeNestedSpanStyles = (element) => {
|
|
if (!element.children.length) {
|
|
return;
|
|
}
|
|
const childSpans = element.querySelectorAll('span');
|
|
if (!childSpans) {
|
|
return;
|
|
}
|
|
childSpans.forEach(childSpan => {
|
|
var _a, _b;
|
|
const childStyle = childSpan.getAttribute('style');
|
|
const closestParentSpanStyleOfChild = (_b = (_a = childSpan.parentElement) === null || _a === void 0 ? void 0 : _a.closest('span')) === null || _b === void 0 ? void 0 : _b.getAttribute('style');
|
|
childSpan.setAttribute('style', `${closestParentSpanStyleOfChild};${childStyle}`);
|
|
});
|
|
};
|
|
/**
|
|
* This extension allows you to create text styles. It is required by default
|
|
* for the `textColor` and `backgroundColor` extensions.
|
|
* @see https://www.tiptap.dev/api/marks/text-style
|
|
*/
|
|
const TextStyle = core.Mark.create({
|
|
name: 'textStyle',
|
|
priority: 101,
|
|
addOptions() {
|
|
return {
|
|
HTMLAttributes: {},
|
|
mergeNestedSpanStyles: false,
|
|
};
|
|
},
|
|
parseHTML() {
|
|
return [
|
|
{
|
|
tag: 'span',
|
|
getAttrs: element => {
|
|
const hasStyles = element.hasAttribute('style');
|
|
if (!hasStyles) {
|
|
return false;
|
|
}
|
|
if (this.options.mergeNestedSpanStyles) {
|
|
mergeNestedSpanStyles(element);
|
|
}
|
|
return {};
|
|
},
|
|
},
|
|
];
|
|
},
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['span', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
|
|
},
|
|
addCommands() {
|
|
return {
|
|
removeEmptyTextStyle: () => ({ tr }) => {
|
|
const { selection } = tr;
|
|
// Gather all of the nodes within the selection range.
|
|
// We would need to go through each node individually
|
|
// to check if it has any inline style attributes.
|
|
// Otherwise, calling commands.unsetMark(this.name)
|
|
// removes everything from all the nodes
|
|
// within the selection range.
|
|
tr.doc.nodesBetween(selection.from, selection.to, (node, pos) => {
|
|
// Check if it's a paragraph element, if so, skip this node as we apply
|
|
// the text style to inline text nodes only (span).
|
|
if (node.isTextblock) {
|
|
return true;
|
|
}
|
|
// Check if the node has no inline style attributes.
|
|
// Filter out non-`textStyle` marks.
|
|
if (!node.marks.filter(mark => mark.type === this.type).some(mark => Object.values(mark.attrs).some(value => !!value))) {
|
|
// Proceed with the removal of the `textStyle` mark for this node only
|
|
tr.removeMark(pos, pos + node.nodeSize, this.type);
|
|
}
|
|
});
|
|
return true;
|
|
},
|
|
};
|
|
},
|
|
});
|
|
|
|
exports.TextStyle = TextStyle;
|
|
exports.default = TextStyle;
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
}));
|
|
//# sourceMappingURL=index.umd.js.map
|