Blame view

assets/plugins/simditor/scripts/module.js 4.58 KB
cf76164e6   Ting Chan   20190709
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
  (function (root, factory) {
    if (typeof define === 'function' && define.amd) {
      // AMD. Register as an anonymous module unless amdModuleId is set
      define('simple-module', ["jquery"], function (a0) {
        return (root['Module'] = factory(a0));
      });
    } else if (typeof exports === 'object') {
      // Node. Does not work with strict CommonJS, but
      // only CommonJS-like environments that support module.exports,
      // like Node.
      module.exports = factory(require("jquery"));
    } else {
      root['SimpleModule'] = factory(jQuery);
    }
  }(this, function ($) {
  
  var Module,
    slice = [].slice;
  
  Module = (function() {
    Module.extend = function(obj) {
      var key, ref, val;
      if (!((obj != null) && typeof obj === 'object')) {
        return;
      }
      for (key in obj) {
        val = obj[key];
        if (key !== 'included' && key !== 'extended') {
          this[key] = val;
        }
      }
      return (ref = obj.extended) != null ? ref.call(this) : void 0;
    };
  
    Module.include = function(obj) {
      var key, ref, val;
      if (!((obj != null) && typeof obj === 'object')) {
        return;
      }
      for (key in obj) {
        val = obj[key];
        if (key !== 'included' && key !== 'extended') {
          this.prototype[key] = val;
        }
      }
      return (ref = obj.included) != null ? ref.call(this) : void 0;
    };
  
    Module.connect = function(cls) {
      if (typeof cls !== 'function') {
        return;
      }
      if (!cls.pluginName) {
        throw new Error('Module.connect: cannot connect plugin without pluginName');
        return;
      }
      cls.prototype._connected = true;
      if (!this._connectedClasses) {
        this._connectedClasses = [];
      }
      this._connectedClasses.push(cls);
      if (cls.pluginName) {
        return this[cls.pluginName] = cls;
      }
    };
  
    Module.prototype.opts = {};
  
    function Module(opts) {
      var base, cls, i, instance, instances, len, name;
      this.opts = $.extend({}, this.opts, opts);
      (base = this.constructor)._connectedClasses || (base._connectedClasses = []);
      instances = (function() {
        var i, len, ref, results;
        ref = this.constructor._connectedClasses;
        results = [];
        for (i = 0, len = ref.length; i < len; i++) {
          cls = ref[i];
          name = cls.pluginName.charAt(0).toLowerCase() + cls.pluginName.slice(1);
          if (cls.prototype._connected) {
            cls.prototype._module = this;
          }
          results.push(this[name] = new cls());
        }
        return results;
      }).call(this);
      if (this._connected) {
        this.opts = $.extend({}, this.opts, this._module.opts);
      } else {
        this._init();
        for (i = 0, len = instances.length; i < len; i++) {
          instance = instances[i];
          if (typeof instance._init === "function") {
            instance._init();
          }
        }
      }
      this.trigger('initialized');
    }
  
    Module.prototype._init = function() {};
  
    Module.prototype.on = function() {
      var args, ref;
      args = 1 <= arguments.length ? slice.call(arguments, 0) : [];
      (ref = $(this)).on.apply(ref, args);
      return this;
    };
  
    Module.prototype.one = function() {
      var args, ref;
      args = 1 <= arguments.length ? slice.call(arguments, 0) : [];
      (ref = $(this)).one.apply(ref, args);
      return this;
    };
  
    Module.prototype.off = function() {
      var args, ref;
      args = 1 <= arguments.length ? slice.call(arguments, 0) : [];
      (ref = $(this)).off.apply(ref, args);
      return this;
    };
  
    Module.prototype.trigger = function() {
      var args, ref;
      args = 1 <= arguments.length ? slice.call(arguments, 0) : [];
      (ref = $(this)).trigger.apply(ref, args);
      return this;
    };
  
    Module.prototype.triggerHandler = function() {
      var args, ref;
      args = 1 <= arguments.length ? slice.call(arguments, 0) : [];
      return (ref = $(this)).triggerHandler.apply(ref, args);
    };
  
    Module.prototype._t = function() {
      var args, ref;
      args = 1 <= arguments.length ? slice.call(arguments, 0) : [];
      return (ref = this.constructor)._t.apply(ref, args);
    };
  
    Module._t = function() {
      var args, key, ref, result;
      key = arguments[0], args = 2 <= arguments.length ? slice.call(arguments, 1) : [];
      result = ((ref = this.i18n[this.locale]) != null ? ref[key] : void 0) || '';
      if (!(args.length > 0)) {
        return result;
      }
      result = result.replace(/([^%]|^)%(?:(\d+)\$)?s/g, function(p0, p, position) {
        if (position) {
          return p + args[parseInt(position) - 1];
        } else {
          return p + args.shift();
        }
      });
      return result.replace(/%%s/g, '%s');
    };
  
    Module.i18n = {
      'zh-CN': {}
    };
  
    Module.locale = 'zh-CN';
  
    return Module;
  
  })();
  
  return Module;
  
  }));