Mercurial Hosting > sceditor
view src/plugins/format.js @ 30:db061869f28f
remove sceditor.command, add options.onCreate
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 12 Aug 2022 00:54:39 -0600 |
parents | ea32a44b5a6e |
children |
line wrap: on
line source
/** * SCEditor Paragraph Formatting Plugin * http://www.sceditor.com/ * * Copyright (C) 2011-2013, Sam Clarke (samclarke.com) * * SCEditor is licensed under the MIT license: * http://www.opensource.org/licenses/mit-license.php * * @fileoverview SCEditor Paragraph Formatting Plugin * @author Sam Clarke */ (function (sceditor) { 'use strict'; sceditor.plugins.format = function () { var base = {}; /** * Default tags * @type {Object} * @private */ var tags = { p: 'Paragraph', h1: 'Heading 1', h2: 'Heading 2', h3: 'Heading 3', h4: 'Heading 4', h5: 'Heading 5', h6: 'Heading 6', address: 'Address', pre: 'Preformatted Text' }; /** * Private functions * @private */ var insertTag, formatCmd; base.init = function (editor) { var opts = editor.opts, pOpts = opts.paragraphformat; // Don't enable if the BBCode plugin is enabled. if (opts.format && opts.format === 'bbcode') { return; } if (pOpts) { if (pOpts.tags) { tags = pOpts.tags; } if (pOpts.excludeTags) { pOpts.excludeTags.forEach(function (val) { delete tags[val]; }); } } if (!editor.commands.format) { editor.commands.format = { exec: formatCmd, txtExec: formatCmd, tooltip: 'Format Paragraph' }; } if (opts.toolbar === sceditor.defaultOptions.toolbar) { opts.toolbar = opts.toolbar.replace(',color,', ',color,format,'); } }; /** * Inserts the specified tag into the editor * * @param {sceditor} editor * @param {string} tag * @private */ insertTag = function (editor, tag) { if (editor.sourceMode()) { editor.insert('<' + tag + '>', '</' + tag + '>'); } else { editor.execCommand('formatblock', '<' + tag + '>'); } }; /** * Function for the exec and txtExec properties * * @param {node} caller * @private */ formatCmd = function (editor, caller) { var content = document.createElement('div'); sceditor.utils.each(tags, function (tag, val) { var link = document.createElement('a'); link.className = 'sceditor-option'; link.textContent = val.name || val; link.addEventListener('click', function (e) { editor.closeDropDown(true); if (val.exec) { val.exec(editor); } else { insertTag(editor, tag); } e.preventDefault(); }); content.appendChild(link); }); editor.createDropDown(caller, 'format', content); }; return base; }; })(sceditor);