all files / src/js/base/ Context.js

94.44% Statements 119/126
81.82% Branches 45/55
96.3% Functions 26/27
94.44% Lines 119/126
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232           56× 56×   56× 56× 56× 56×   56×           76× 76× 76× 76×                             78×   77× 77×       77×     77× 1617×     77× 1617×         42×     176×                         115×                     170× 170×   170× 170×     170×     1617× 1617× 1617× 308×       1309× 1155×       1309× 385×       1617×       1617×   1617×         42× 42× 34× 10×     34× 30×       42×     11439× 4663×   6776×     176×       176×           400× 399× 13× 13×       2515× 2514× 14× 14× 14×       873× 873×   873× 873× 873× 873×   873× 873× 869× 869×      
import $ from 'jquery';
import func from './core/func';
import lists from './core/lists';
import dom from './core/dom';
 
export default class Context {
  /**
   * @param {jQuery} $note
   * @param {Object} options
   */
  constructor($note, options) {
    this.ui = $.summernote.ui;
    this.$note = $note;
 
    this.memos = {};
    this.modules = {};
    this.layoutInfo = {};
    this.options = options;
 
    this.initialize();
  }
 
  /**
   * create layout and initialize modules and other resources
   */
  initialize() {
    this.layoutInfo = this.ui.createLayout(this.$note, this.options);
    this._initialize();
    this.$note.hide();
    return this;
  }
 
  /**
   * destroy modules and other resources and remove layout
   */
  destroy() {
    this._destroy();
    this.$note.removeData('summernote');
    this.ui.removeLayout(this.$note, this.layoutInfo);
  }
 
  /**
   * destory modules and other resources and initialize it again
   */
  reset() {
    const disabled = this.isDisabled();
    this.code(dom.emptyPara);
    this._destroy();
    this._initialize();
 
    Eif (disabled) {
      this.disable();
    }
  }
 
  _initialize() {
    // add optional buttons
    const buttons = $.extend({}, this.options.buttons);
    Object.keys(buttons).forEach((key) => {
      this.memo('button.' + key, buttons[key]);
    });
 
    const modules = $.extend({}, this.options.modules, $.summernote.plugins || {});
 
    // add and initialize modules
    Object.keys(modules).forEach((key) => {
      this.module(key, modules[key], true);
    });
 
    Object.keys(this.modules).forEach((key) => {
      this.initializeModule(key);
    });
  }
 
  _destroy() {
    // destroy modules with reversed order
    Object.keys(this.modules).reverse().forEach((key) => {
      this.removeModule(key);
    });
 
    Object.keys(this.memos).forEach((key) => {
      this.removeMemo(key);
    });
    // trigger custom onDestroy callback
    this.triggerEvent('destroy', this);
  }
 
  code(html) {
    const isActivated = this.invoke('codeview.isActivated');
 
    if (html === undefined) {
      this.invoke('codeview.sync');
      return isActivated ? this.layoutInfo.codable.val() : this.layoutInfo.editable.html();
    } else {
      Iif (isActivated) {
        this.layoutInfo.codable.val(html);
      } else {
        this.layoutInfo.editable.html(html);
      }
      this.$note.val(html);
      this.triggerEvent('change', html);
    }
  }
 
  isDisabled() {
    return this.layoutInfo.editable.attr('contenteditable') === 'false';
  }
 
  enable() {
    this.layoutInfo.editable.attr('contenteditable', true);
    this.invoke('toolbar.activate', true);
    this.triggerEvent('disable', false);
  }
 
  disable() {
    // close codeview if codeview is opend
    Iif (this.invoke('codeview.isActivated')) {
      this.invoke('codeview.deactivate');
    }
    this.layoutInfo.editable.attr('contenteditable', false);
    this.invoke('toolbar.deactivate', true);
 
    this.triggerEvent('disable', true);
  }
 
  triggerEvent() {
    const namespace = lists.head(arguments);
    const args = lists.tail(lists.from(arguments));
 
    const callback = this.options.callbacks[func.namespaceToCamel(namespace, 'on')];
    Iif (callback) {
      callback.apply(this.$note[0], args);
    }
    this.$note.trigger('summernote.' + namespace, args);
  }
 
  initializeModule(key) {
    const module = this.modules[key];
    module.shouldInitialize = module.shouldInitialize || func.ok;
    if (!module.shouldInitialize()) {
      return;
    }
 
    // initialize module
    if (module.initialize) {
      module.initialize();
    }
 
    // attach events
    if (module.events) {
      dom.attachEvents(this.$note, module.events);
    }
  }
 
  module(key, ModuleClass, withoutIntialize) {
    Iif (arguments.length === 1) {
      return this.modules[key];
    }
 
    this.modules[key] = new ModuleClass(this);
 
    Iif (!withoutIntialize) {
      this.initializeModule(key);
    }
  }
 
  removeModule(key) {
    const module = this.modules[key];
    if (module.shouldInitialize()) {
      if (module.events) {
        dom.detachEvents(this.$note, module.events);
      }
 
      if (module.destroy) {
        module.destroy();
      }
    }
 
    delete this.modules[key];
  }
 
  memo(key, obj) {
    if (arguments.length === 1) {
      return this.memos[key];
    }
    this.memos[key] = obj;
  }
 
  removeMemo(key) {
    Iif (this.memos[key] && this.memos[key].destroy) {
      this.memos[key].destroy();
    }
 
    delete this.memos[key];
  }
 
  /**
   * Some buttons need to change their visual style immediately once they get pressed
   */
  createInvokeHandlerAndUpdateState(namespace, value) {
    return (event) => {
      this.createInvokeHandler(namespace, value)(event);
      this.invoke('buttons.updateCurrentStyle');
    };
  }
 
  createInvokeHandler(namespace, value) {
    return (event) => {
      event.preventDefault();
      const $target = $(event.target);
      this.invoke(namespace, value || $target.closest('[data-value]').data('value'), $target);
    };
  }
 
  invoke() {
    const namespace = lists.head(arguments);
    const args = lists.tail(lists.from(arguments));
 
    const splits = namespace.split('.');
    const hasSeparator = splits.length > 1;
    const moduleName = hasSeparator && lists.head(splits);
    const methodName = hasSeparator ? lists.last(splits) : lists.head(splits);
 
    const module = this.modules[moduleName || 'editor'];
    if (!moduleName && this[methodName]) {
      return this[methodName].apply(this, args);
    } else Eif (module && module[methodName] && module.shouldInitialize()) {
      return module[methodName].apply(module, args);
    }
  }
}