247 lines
7.8 KiB
JavaScript
247 lines
7.8 KiB
JavaScript
/**
|
|
* TinyMCE version 6.0.3 (2022-05-25)
|
|
*/
|
|
|
|
(function () {
|
|
'use strict';
|
|
|
|
var global$1 = tinymce.util.Tools.resolve('tinymce.PluginManager');
|
|
|
|
const applyListFormat = (editor, listName, styleValue) => {
|
|
const cmd = listName === 'UL' ? 'InsertUnorderedList' : 'InsertOrderedList';
|
|
editor.execCommand(cmd, false, styleValue === false ? null : { 'list-style-type': styleValue });
|
|
};
|
|
|
|
const register$2 = editor => {
|
|
editor.addCommand('ApplyUnorderedListStyle', (ui, value) => {
|
|
applyListFormat(editor, 'UL', value['list-style-type']);
|
|
});
|
|
editor.addCommand('ApplyOrderedListStyle', (ui, value) => {
|
|
applyListFormat(editor, 'OL', value['list-style-type']);
|
|
});
|
|
};
|
|
|
|
const option = name => editor => editor.options.get(name);
|
|
const register$1 = editor => {
|
|
const registerOption = editor.options.register;
|
|
registerOption('advlist_number_styles', {
|
|
processor: 'string[]',
|
|
default: 'default,lower-alpha,lower-greek,lower-roman,upper-alpha,upper-roman'.split(',')
|
|
});
|
|
registerOption('advlist_bullet_styles', {
|
|
processor: 'string[]',
|
|
default: 'default,circle,square'.split(',')
|
|
});
|
|
};
|
|
const getNumberStyles = option('advlist_number_styles');
|
|
const getBulletStyles = option('advlist_bullet_styles');
|
|
|
|
var global = tinymce.util.Tools.resolve('tinymce.util.Tools');
|
|
|
|
const isNullable = a => a === null || a === undefined;
|
|
const isNonNullable = a => !isNullable(a);
|
|
|
|
class Optional {
|
|
constructor(tag, value) {
|
|
this.tag = tag;
|
|
this.value = value;
|
|
}
|
|
static some(value) {
|
|
return new Optional(true, value);
|
|
}
|
|
static none() {
|
|
return Optional.singletonNone;
|
|
}
|
|
fold(onNone, onSome) {
|
|
if (this.tag) {
|
|
return onSome(this.value);
|
|
} else {
|
|
return onNone();
|
|
}
|
|
}
|
|
isSome() {
|
|
return this.tag;
|
|
}
|
|
isNone() {
|
|
return !this.tag;
|
|
}
|
|
map(mapper) {
|
|
if (this.tag) {
|
|
return Optional.some(mapper(this.value));
|
|
} else {
|
|
return Optional.none();
|
|
}
|
|
}
|
|
bind(binder) {
|
|
if (this.tag) {
|
|
return binder(this.value);
|
|
} else {
|
|
return Optional.none();
|
|
}
|
|
}
|
|
exists(predicate) {
|
|
return this.tag && predicate(this.value);
|
|
}
|
|
forall(predicate) {
|
|
return !this.tag || predicate(this.value);
|
|
}
|
|
filter(predicate) {
|
|
if (!this.tag || predicate(this.value)) {
|
|
return this;
|
|
} else {
|
|
return Optional.none();
|
|
}
|
|
}
|
|
getOr(replacement) {
|
|
return this.tag ? this.value : replacement;
|
|
}
|
|
or(replacement) {
|
|
return this.tag ? this : replacement;
|
|
}
|
|
getOrThunk(thunk) {
|
|
return this.tag ? this.value : thunk();
|
|
}
|
|
orThunk(thunk) {
|
|
return this.tag ? this : thunk();
|
|
}
|
|
getOrDie(message) {
|
|
if (!this.tag) {
|
|
throw new Error(message !== null && message !== void 0 ? message : 'Called getOrDie on None');
|
|
} else {
|
|
return this.value;
|
|
}
|
|
}
|
|
static from(value) {
|
|
return isNonNullable(value) ? Optional.some(value) : Optional.none();
|
|
}
|
|
getOrNull() {
|
|
return this.tag ? this.value : null;
|
|
}
|
|
getOrUndefined() {
|
|
return this.value;
|
|
}
|
|
each(worker) {
|
|
if (this.tag) {
|
|
worker(this.value);
|
|
}
|
|
}
|
|
toArray() {
|
|
return this.tag ? [this.value] : [];
|
|
}
|
|
toString() {
|
|
return this.tag ? `some(${ this.value })` : 'none()';
|
|
}
|
|
}
|
|
Optional.singletonNone = new Optional(false);
|
|
|
|
const isChildOfBody = (editor, elm) => {
|
|
return editor.dom.isChildOf(elm, editor.getBody());
|
|
};
|
|
const isTableCellNode = node => {
|
|
return node && /^(TH|TD)$/.test(node.nodeName);
|
|
};
|
|
const isListNode = editor => node => {
|
|
return node && /^(OL|UL|DL)$/.test(node.nodeName) && isChildOfBody(editor, node);
|
|
};
|
|
const getSelectedStyleType = editor => {
|
|
const listElm = editor.dom.getParent(editor.selection.getNode(), 'ol,ul');
|
|
const style = editor.dom.getStyle(listElm, 'listStyleType');
|
|
return Optional.from(style);
|
|
};
|
|
|
|
const findIndex = (list, predicate) => {
|
|
for (let index = 0; index < list.length; index++) {
|
|
const element = list[index];
|
|
if (predicate(element)) {
|
|
return index;
|
|
}
|
|
}
|
|
return -1;
|
|
};
|
|
const styleValueToText = styleValue => {
|
|
return styleValue.replace(/\-/g, ' ').replace(/\b\w/g, chr => {
|
|
return chr.toUpperCase();
|
|
});
|
|
};
|
|
const isWithinList = (editor, e, nodeName) => {
|
|
const tableCellIndex = findIndex(e.parents, isTableCellNode);
|
|
const parents = tableCellIndex !== -1 ? e.parents.slice(0, tableCellIndex) : e.parents;
|
|
const lists = global.grep(parents, isListNode(editor));
|
|
return lists.length > 0 && lists[0].nodeName === nodeName;
|
|
};
|
|
const makeSetupHandler = (editor, nodeName) => api => {
|
|
const nodeChangeHandler = e => {
|
|
api.setActive(isWithinList(editor, e, nodeName));
|
|
};
|
|
editor.on('NodeChange', nodeChangeHandler);
|
|
return () => editor.off('NodeChange', nodeChangeHandler);
|
|
};
|
|
const addSplitButton = (editor, id, tooltip, cmd, nodeName, styles) => {
|
|
editor.ui.registry.addSplitButton(id, {
|
|
tooltip,
|
|
icon: nodeName === 'OL' ? 'ordered-list' : 'unordered-list',
|
|
presets: 'listpreview',
|
|
columns: 3,
|
|
fetch: callback => {
|
|
const items = global.map(styles, styleValue => {
|
|
const iconStyle = nodeName === 'OL' ? 'num' : 'bull';
|
|
const iconName = styleValue === 'disc' || styleValue === 'decimal' ? 'default' : styleValue;
|
|
const itemValue = styleValue === 'default' ? '' : styleValue;
|
|
const displayText = styleValueToText(styleValue);
|
|
return {
|
|
type: 'choiceitem',
|
|
value: itemValue,
|
|
icon: 'list-' + iconStyle + '-' + iconName,
|
|
text: displayText
|
|
};
|
|
});
|
|
callback(items);
|
|
},
|
|
onAction: () => editor.execCommand(cmd),
|
|
onItemAction: (_splitButtonApi, value) => {
|
|
applyListFormat(editor, nodeName, value);
|
|
},
|
|
select: value => {
|
|
const listStyleType = getSelectedStyleType(editor);
|
|
return listStyleType.map(listStyle => value === listStyle).getOr(false);
|
|
},
|
|
onSetup: makeSetupHandler(editor, nodeName)
|
|
});
|
|
};
|
|
const addButton = (editor, id, tooltip, cmd, nodeName, _styles) => {
|
|
editor.ui.registry.addToggleButton(id, {
|
|
active: false,
|
|
tooltip,
|
|
icon: nodeName === 'OL' ? 'ordered-list' : 'unordered-list',
|
|
onSetup: makeSetupHandler(editor, nodeName),
|
|
onAction: () => editor.execCommand(cmd)
|
|
});
|
|
};
|
|
const addControl = (editor, id, tooltip, cmd, nodeName, styles) => {
|
|
if (styles.length > 1) {
|
|
addSplitButton(editor, id, tooltip, cmd, nodeName, styles);
|
|
} else {
|
|
addButton(editor, id, tooltip, cmd, nodeName);
|
|
}
|
|
};
|
|
const register = editor => {
|
|
addControl(editor, 'numlist', 'Numbered list', 'InsertOrderedList', 'OL', getNumberStyles(editor));
|
|
addControl(editor, 'bullist', 'Bullet list', 'InsertUnorderedList', 'UL', getBulletStyles(editor));
|
|
};
|
|
|
|
var Plugin = () => {
|
|
global$1.add('advlist', editor => {
|
|
if (editor.hasPlugin('lists')) {
|
|
register$1(editor);
|
|
register(editor);
|
|
register$2(editor);
|
|
} else {
|
|
console.error('Please use the Lists plugin together with the Advanced List plugin.');
|
|
}
|
|
});
|
|
};
|
|
|
|
Plugin();
|
|
|
|
})();
|