File "plugin.js"

Full Path: /home/krishnamexports/public_html/panel/vendors/tinymce/plugins/noneditable/plugin.js
File size: 7.26 KB
MIME-type: text/plain; charset=us-ascii
Charset: utf-8

(function () {

var defs = {}; // id -> {dependencies, definition, instance (possibly undefined)}

// Used when there is no 'main' module.
// The name is probably (hopefully) unique so minification removes for releases.
var register_3795 = function (id) {
  var module = dem(id);
  var fragments = id.split('.');
  var target = Function('return this;')();
  for (var i = 0; i < fragments.length - 1; ++i) {
    if (target[fragments[i]] === undefined)
      target[fragments[i]] = {};
    target = target[fragments[i]];
  }
  target[fragments[fragments.length - 1]] = module;
};

var instantiate = function (id) {
  var actual = defs[id];
  var dependencies = actual.deps;
  var definition = actual.defn;
  var len = dependencies.length;
  var instances = new Array(len);
  for (var i = 0; i < len; ++i)
    instances[i] = dem(dependencies[i]);
  var defResult = definition.apply(null, instances);
  if (defResult === undefined)
     throw 'module [' + id + '] returned undefined';
  actual.instance = defResult;
};

var def = function (id, dependencies, definition) {
  if (typeof id !== 'string')
    throw 'module id must be a string';
  else if (dependencies === undefined)
    throw 'no dependencies for ' + id;
  else if (definition === undefined)
    throw 'no definition function for ' + id;
  defs[id] = {
    deps: dependencies,
    defn: definition,
    instance: undefined
  };
};

var dem = function (id) {
  var actual = defs[id];
  if (actual === undefined)
    throw 'module [' + id + '] was undefined';
  else if (actual.instance === undefined)
    instantiate(id);
  return actual.instance;
};

var req = function (ids, callback) {
  var len = ids.length;
  var instances = new Array(len);
  for (var i = 0; i < len; ++i)
    instances.push(dem(ids[i]));
  callback.apply(null, callback);
};

var ephox = {};

ephox.bolt = {
  module: {
    api: {
      define: def,
      require: req,
      demand: dem
    }
  }
};

var define = def;
var require = req;
var demand = dem;
// this helps with minificiation when using a lot of global references
var defineGlobal = function (id, ref) {
  define(id, [], function () { return ref; });
};
/*jsc
["tinymce.plugins.noneditable.Plugin","tinymce.core.PluginManager","tinymce.core.util.Tools","global!tinymce.util.Tools.resolve"]
jsc*/
defineGlobal("global!tinymce.util.Tools.resolve", tinymce.util.Tools.resolve);
/**
 * ResolveGlobal.js
 *
 * Released under LGPL License.
 * Copyright (c) 1999-2017 Ephox Corp. All rights reserved
 *
 * License: http://www.tinymce.com/license
 * Contributing: http://www.tinymce.com/contributing
 */

define(
  'tinymce.core.PluginManager',
  [
    'global!tinymce.util.Tools.resolve'
  ],
  function (resolve) {
    return resolve('tinymce.PluginManager');
  }
);

/**
 * ResolveGlobal.js
 *
 * Released under LGPL License.
 * Copyright (c) 1999-2017 Ephox Corp. All rights reserved
 *
 * License: http://www.tinymce.com/license
 * Contributing: http://www.tinymce.com/contributing
 */

define(
  'tinymce.core.util.Tools',
  [
    'global!tinymce.util.Tools.resolve'
  ],
  function (resolve) {
    return resolve('tinymce.util.Tools');
  }
);

/**
 * Plugin.js
 *
 * Released under LGPL License.
 * Copyright (c) 1999-2017 Ephox Corp. All rights reserved
 *
 * License: http://www.tinymce.com/license
 * Contributing: http://www.tinymce.com/contributing
 */

/**
 * This class contains all core logic for the noneditable plugin.
 *
 * @class tinymce.noneditable.Plugin
 * @private
 */
define(
  'tinymce.plugins.noneditable.Plugin',
  [
    'tinymce.core.PluginManager',
    'tinymce.core.util.Tools'
  ],
  function (PluginManager, Tools) {
    PluginManager.add('noneditable', function (editor) {
      var editClass, nonEditClass, nonEditableRegExps, contentEditableAttrName = 'contenteditable';

      function hasClass(checkClassName) {
        return function (node) {
          return (" " + node.attr("class") + " ").indexOf(checkClassName) !== -1;
        };
      }

      function convertRegExpsToNonEditable(e) {
        var i = nonEditableRegExps.length, content = e.content, cls = Tools.trim(nonEditClass);

        function replaceMatchWithSpan(match) {
          var args = arguments, index = args[args.length - 2];
          var prevChar = index > 0 ? content.charAt(index - 1) : '';

          // Is value inside an attribute then don't replace
          if (prevChar === '"') {
            return match;
          }

          // Is value inside a contentEditable="false" tag
          if (prevChar === '>') {
            var findStartTagIndex = content.lastIndexOf('<', index);
            if (findStartTagIndex !== -1) {
              var tagHtml = content.substring(findStartTagIndex, index);
              if (tagHtml.indexOf('contenteditable="false"') !== -1) {
                return match;
              }
            }
          }

          return (
            '<span class="' + cls + '" data-mce-content="' + editor.dom.encode(args[0]) + '">' +
            editor.dom.encode(typeof args[1] === "string" ? args[1] : args[0]) + '</span>'
          );
        }

        // Don't replace the variables when raw is used for example on undo/redo
        if (e.format == "raw") {
          return;
        }

        while (i--) {
          content = content.replace(nonEditableRegExps[i], replaceMatchWithSpan);
        }

        e.content = content;
      }

      editClass = " " + Tools.trim(editor.getParam("noneditable_editable_class", "mceEditable")) + " ";
      nonEditClass = " " + Tools.trim(editor.getParam("noneditable_noneditable_class", "mceNonEditable")) + " ";

      var hasEditClass = hasClass(editClass);
      var hasNonEditClass = hasClass(nonEditClass);

      nonEditableRegExps = editor.getParam("noneditable_regexp");
      if (nonEditableRegExps && !nonEditableRegExps.length) {
        nonEditableRegExps = [nonEditableRegExps];
      }

      editor.on('PreInit', function () {
        if (nonEditableRegExps) {
          editor.on('BeforeSetContent', convertRegExpsToNonEditable);
        }

        editor.parser.addAttributeFilter('class', function (nodes) {
          var i = nodes.length, node;

          while (i--) {
            node = nodes[i];

            if (hasEditClass(node)) {
              node.attr(contentEditableAttrName, "true");
            } else if (hasNonEditClass(node)) {
              node.attr(contentEditableAttrName, "false");
            }
          }
        });

        editor.serializer.addAttributeFilter(contentEditableAttrName, function (nodes) {
          var i = nodes.length, node;

          while (i--) {
            node = nodes[i];
            if (!hasEditClass(node) && !hasNonEditClass(node)) {
              continue;
            }

            if (nonEditableRegExps && node.attr('data-mce-content')) {
              node.name = "#text";
              node.type = 3;
              node.raw = true;
              node.value = node.attr('data-mce-content');
            } else {
              node.attr(contentEditableAttrName, null);
            }
          }
        });
      });
    });

    return function () { };
  }
);
dem('tinymce.plugins.noneditable.Plugin')();
})();