-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget.js
659 lines (565 loc) · 14.1 KB
/
widget.js
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
/**
* 组件基类
*
* @module Widget
*/
'use strict';
var $ = require('jquery'),
Base = require('pandora-base');
var append = require('./lib/append');
var DELEGATE_REGEXP = /\{\{(.+?)\}\}/g,
DELEGATE_DELIMITER = /^(\S+)\s*(.*)$/,
DELEGATE_NS_PREFIX = '.delegate-widget-',
DATA_WIDGET_UNIQUEID = 'data-widget-uid';
var cachedInstances = {};
function each(obj, func) {
var p;
for (p in obj) {
func.call(null, p, obj[p]);
}
}
/**
* 组件基类
*
* @class Widget
* @constructor
* @extends Base
*
* @example
* ```
* // 创建子类
* var PersonWidget = Widget.extend({
* setup: function () {
* // 通知事件 `setup`
* this.fire('setup', this.option('name'), this.option('age'));
* }
* });
* // 创建子类实例
* var tom = new PersonWidget({
* name: 'Tom',
* age: 21,
* // 订阅事件
* events: {
* // `setup`
* setup: function (e, name, age) {
* // e.type === 'setup'
* // name === 'Tom'
* // age === 21
* // this === tom
* },
* // AOP `before:setup`
* 'before:setup': function (e) {
* // 执行 `setup` 方法前执行
* // 此处返回 `false` 将阻止 `setup` 方法执行
* },
* // AOP `after:setup`
* 'after:setup': function (e) {
* // 执行 `setup` 方法后执行
* // 如果 `setup` 方法被阻止,就不会执行到这里
* }
* },
* // 代理事件
* delegates: {
* 'click': function (e) {
* // e.target === this.element[0]
* // this === tom
* },
* 'mouseover .avatar': function (e) {
* // 鼠标悬停在 element 里的 `.avatar` 元素
* }
* }
* });
* ```
*/
var Widget = Base.extend({
/**
* 初始化函数,将自动执行;实现事件自动订阅与初始化组件参数
*
* @method initialize
* @param {object} [options] 组件参数
*/
initialize: function( /*options*/ ) {
var self = this;
Widget.superclass.initialize.apply(self, arguments);
/**
* 实例唯一ID
*
* @property {string} uniqueId
*/
self.uniqueId = uniqueId();
/**
* 用于 DOM 事件绑定的 NAMESPACE
*
* @property {string} delegateNS
*/
self.delegateNS = DELEGATE_NS_PREFIX + self.uniqueId;
self.initCnE();
self.initDelegates();
self.setup();
// 储存实例
cachedInstances[self.uniqueId] = self;
},
/**
* 默认参数,子类自动继承并覆盖
*
* @property {object} defaults
* @type {object}
*/
defaults: {
/**
* 容器,与 `insert` 配合使用,设置为 `null` 则不执行插入
*
* @attribute container
* @type {String}
* @default body
*/
container: 'body',
/**
* 主元素的className
*
* @attribute classPrefix
* @type {String}
* @default ue-component
*/
classPrefix: 'ue-component',
/**
* content 区域的 data-role 值,与 `children` 结合使用
*
* @attribute contentRole
* @type {String}
* @default content
*/
contentRole: 'content',
/**
* 需要设置到主元素的 CSS 样式
*
* @attribute css
* @type {Object}
* @default {}
*/
css: {},
/**
* 需要设置到主元素的属性表
*
* @attribute attr
* @type {Object}
* @default {}
*/
attr: {},
/**
* 组件的模板
* @attribute template
* @type {Function}
* @default null
*/
template : null,
/**
* template 执行时的options参数
* @attribute templateOptions
* @type {Object}
* @default null
*/
templateOptions : null,
/**
* 模板数据,与 `template` 结合使用
*
* @attribute data
* @type {Object}
* @default {}
*/
data: {},
/**
* 配置事件代理
*
* @attribute delegates
* @type {Object}
* @default null
*/
delegates : null,
/**
* widget 主元素
*
* @attribute element
* @type {String}
* @default <div></div>
*/
element: '<div></div>',
/**
* 将主元素插入到 DOM
*
* @attribute insert
* @type {Function}
* @default 将主元素插入到 container 中
*/
insert: function() {
this.container.length &&
this.container.append(this.element);
}
},
/**
* 寻找 element 后代,参数为空时,返回 element
*
* @method $
* @param {mixed} [selector] 选择符
* @return {object} jquery 包装的 DOM 节点
*/
$: function(selector) {
return selector ? this.element.find(selector) : this.element;
},
/**
* 等同于 instace.element.css
*
* @method css
* @return {mixed} element 或 指定的 css 属性值
*/
css: function() {
return this.element.css.apply(this.element, arguments);
},
/**
* 等同于 instace.element.attr
*
* @method attr
* @return {mixed} element 或 指定的 attr 属性值
*/
attr: function() {
return this.element.attr.apply(this.element, arguments);
},
/**
* 获取 role 对应的元素,通过 [data-role=xxx]
*
* @method role
* @param {string} role 以逗号分隔的 data-role 的值
* @return {jquery} DOM 节点
*/
role: function(role) {
return this.$(role.replace(/(?:^\b|\s*,\s*)([_0-9a-zA-Z\-]+)/g, ',[data-role="$1"]').substring(1));
},
/**
* 获取模板 data,基于 `option` 方法
*
* @method data
* @param {string} [key] 键
* @param {mixed} [value] 值
* @param {boolean} [override] 是否覆盖(即非深度复制)
* @return {mixed} 整个 data 参数列表或指定参数值
*/
data: function(key, value, override) {
return this.option(key, value, 'data', override);
},
/**
* 初始化 `container` 与 `element`
*
* @method initCnE
* @return {object} 当前实例
*/
initCnE: function() {
/**
* 容器/插入参考点
*
* @property {object} container
*/
this.container = $(this.option('container'));
/**
* 组件根元素
*
* @property {object} element
*/
this.element = $(this.option('element'))
.attr(DATA_WIDGET_UNIQUEID, this.uniqueId)
.data('widget', this);
return this;
},
/**
* 初始化 `document` 与 `viewport`
*
* @method initDnV
* @return {object} 当前实例
*/
initDnV: function() {
/**
* `element` 所在的 `document` 对象
*
* @property {Document} document
*/
this.document = this.element.prop('ownerDocument') ||
this.element[0];
/**
* `element` 所在的 `window` 对象
*
* @property {Window} viewport
*/
this.viewport = (function(doc) {
return doc.defaultView || doc.parentWindow;
})(this.document);
return this;
},
/**
* 事件代理,绑定在 element 上
* TODO: 实现解除绑定
*
* @method initDelegates
* @param {object|function} [delegates] 代理事件列表
* @param {jquery} [element] 绑定代理事件的元素
* @return {object} 当前实例
*/
initDelegates: function(delegates, element) {
var self = this;
delegates || (delegates = self.option('delegates'));
if (!delegates) {
return self;
}
if (typeof delegates === 'function') {
delegates = delegates.call(self);
}
element = (element ? $(element) : self.element);
each(delegates, function(key, callback) {
var match = key
// 替换 delegate key 中的 {{xxx}}
.replace(DELEGATE_REGEXP, function($0, $1) {
return self.option($1) || '';
})
.match(DELEGATE_DELIMITER),
event = match[1] + self.delegateNS;
if (typeof callback === 'string') {
callback = self[callback];
}
if (match[2]) {
element.on(event, match[2], function() {
callback.apply(self, arguments);
});
} else {
element.on(event, function() {
callback.apply(self, arguments);
});
}
});
return self;
},
/**
* 显示触发器
*
* @method initTrigger
* @param {string} [trigger] 触发器
* @return {object} 当前实例
*/
initTrigger: function(trigger) {
var self = this,
delegates = {};
trigger || (trigger = self.option('trigger'));
if (!trigger) {
return self;
}
delegates['click ' + trigger] = function(e) {
e.preventDefault();
e.stopPropagation();
self.activeTrigger = e.currentTarget;
self.show();
};
self.initDelegates(delegates, self.document);
// 如果有 trigger,则默认隐藏
self.element.hide();
return self;
},
/**
* 自动执行的设置函数,预留用于子类覆盖
*
* @method setup
*/
setup: function() {},
/**
* 自动执行的设置函数,预留用于子类覆盖
*
* @method initChildren
* @private
*/
initChildren: function(children) {
children || (children = this.option('children'));
if (children) {
if (!this.rendered) {
this.initDnV();
}
append(this, children);
}
},
/**
* 解析内容,将 elemnt 插入到 container
*
* @method render
* @return {object} 当前实例
*/
render: function() {
var self = this,
html,
template = self.option('template');
self.element
.addClass(self.option('classPrefix'))
.css(self.option('css') || {})
.attr(self.option('attr') || {});
// 处理模板与 content 为 text|html 的情况
if (typeof template === 'function') {
html = template(self.data(), self.option('templateOptions'));
} else {
html = self.option('content');
}
if (typeof html !== 'undefined') {
self.element.html(html);
}
self.initChildren();
if (!self.rendered) {
// 插入到容器中
self.option('insert').call(self);
self.initDnV();
self.initTrigger();
self.rendered = true;
}
/**
* 通知渲染
*
* @event render
* @param {object} e Event.
*/
self.fire('render');
return self;
},
/**
* 判断:显示状态等,参见 `jq` 的 `is`
*
* @example
* ```
* instance.is(':hidden')
* ```
*
* @method is
* @param {mixed} condition 判断语句
* @return {boolean}
*/
is: function(contidtion) {
return this.element.is(contidtion);
},
/**
* 显示,或绑定显示事件回调
*
* @method show
* @param {function} [callback] 事件回调函数
* @return {object} 当前实例
*/
show: function(callback) {
if (callback) {
return this.on('show', callback);
}
if (!this.element) {
return this;
}
this.element.show();
/**
* 通知显示
*
* @event show
* @param {object} e Event.
*/
this.fire('show');
return this;
},
/**
* 隐藏,或绑定隐藏事件回调
*
* @method hide
* @param {function} [callback] 事件回调函数
* @return {object} 当前实例
*/
hide: function(callback) {
if (callback) {
return this.on('hide', callback);
}
if (!this.element) {
return this;
}
this.element.hide();
/**
* 通知隐藏
*
* @event hide
* @param {object} e Event.
*/
this.fire('hide');
return this;
},
/**
* 销毁当前组件对象,或绑定销毁事件回调
* @param {function} [callback] 事件回调函数
* @method destroy
*/
destroy: function(callback) {
if (callback) {
return this.on('destroy', callback);
}
/**
* 通知销毁
*
* @event destroy
* @param {object} e Event.
*/
this.fire('destroy');
if (this.element) {
// 移除 element 事件代理
this.element
// 移除 document 事件代理
.add(this.document)
// 移除 viewport 事件代理
.add(this.viewport)
.off(this.delegateNS);
// 从DOM中移除element
this.element.remove();
}
Widget.superclass.destroy.apply(this);
},
/**
* 通过元素获取对应的 widget 实例,同 Widget.get
*
* @method getWidget
* @param {mixed} selector 元素选择符
*/
getWidget: function(selector) {
return Widget.get(selector);
}
});
var uniqueId = (function() {
var ids = {};
return function() {
var id = Math.random().toString(36).substr(2);
if (ids[id]) {
return uniqueId();
}
ids[id] = true;
return id;
};
})();
// For memory leak, from aralejs
$(window).unload(function() {
var uid;
for (uid in cachedInstances) {
cachedInstances[uid].destroy();
}
});
/**
* 通过 element 取 widget 实例
*
* @method get
* @return {mixed} selector
* @static
*/
Widget.get = function(selector) {
var uid;
selector = $(selector).eq(0);
selector.length &&
(uid = selector.attr(DATA_WIDGET_UNIQUEID));
return cachedInstances[uid];
};
/**
* 自动渲染 widget
*
* @method autoRender
* @static
*/
Widget.autoRender = require('./lib/autorender');
module.exports = Widget;