-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdialog.js
285 lines (259 loc) · 11.1 KB
/
dialog.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
/**
* @file 弹出框组件
* @name Dialog
* @desc 弹出框组件
* @import core/zepto.ui.js, core/zepto.highlight.js
*/
(function($, undefined) {
var tpl = {
close: '<a class="ui-dialog-close" title="关闭"><span class="ui-icon ui-icon-delete"></span></a>',
mask: '<div class="ui-mask"></div>',
title: '<div class="ui-dialog-title">'+
'<h3><%=title%></h3>'+
'</div>',
wrap: '<div class="ui-dialog">'+
'<div class="ui-dialog-content"></div>'+
'<% if(btns){ %>'+
'<div class="ui-dialog-btns">'+
'<% for(var i=0, length=btns.length; i<length; i++){var item = btns[i]; %>'+
'<a class="ui-btn ui-btn-<%=item.index%>" data-key="<%=item.key%>"><%=item.text%></a>'+
'<% } %>'+
'</div>'+
'<% } %>' +
'</div> '
};
/**
* @name $.ui.dialog
* @grammar $.ui.dialog(options) ⇒ instance
* @grammar dialog(options) ⇒ self
* @desc **Options**
* - ''autoOpen'' {Boolean}: (可选,默认:true)初始化后是否自动弹出
* - ''closeBtn'' {Boolean}: (可选,默认:true)是否显示关闭按钮
* - ''mask'' {Boolean}: (可选,默认:true)是否有遮罩层
* - ''scrollMove'' {Boolean}: (可选,默认:true)是否禁用掉scroll,在弹出的时候
* - ''title'' {String}: (可选)弹出框标题
* - ''content'' {String|Selector}: (render模式下必填)弹出框内容
* - ''width'' {String|Number}: (可选,默认: 300)弹出框宽度
* - ''height'' {String|Number}: (可选,默认: \'auto\')弹出框高度
* - ''buttons'' {Object}: (可选) 用来设置弹出框底部按钮,传入的格式为{key1: fn1, key2, fn2},key将作为按钮的文字,fn将作为按钮点击后的Handler
* - ''events'' 所有[Trigger Events](#dialog_triggerevents)中提及的事件都可以在此设置Hander, 如init: function(e){}。
*
* **如果是setup模式,部分参数是直接从DOM上读取**
* - ''title'' 从element的title属性中读取
* - ''content'' 直接为element。
*
* **比如**
* <code>//<div id="dialog" title="弹出框标题"></div>
* console.log($('#dialog').dialog('data', 'title')); // => 弹出框标题
* console.log($('#dialog').dialog('data', 'content')); // => #dialog(Zepto对象)
* </code>
*
* **Demo**
* <codepreview href="../gmu/_examples/widget/dialog/dialog.html">
* ../gmu/_examples/widget/dialog/dialog.html
* </codepreview>
*/
$.ui.define('dialog', {
_data: {
autoOpen: true,
buttons: null,
closeBtn: true,
mask: true,
width: 300,
height: 'auto',
title: null,
content: null,
scrollMove: true,//是否禁用掉scroll,在弹出的时候
container: null,
maskClick: null,
position: null //需要dialog.position插件才能用
},
/**
* @name getWrap
* @grammar getWrap() ⇒ Zepto instance
* @desc 获取最外层的节点。
*/
getWrap: function(){
return this._data._wrap;
},
_setup: function(){
var data = this._data;
data.content = data.content || this._el.show();
data.title = data.title || this._el.attr('title');
},
_init: function(){
var me = this, data = me._data, btns,
i= 0, eventHanlder = $.proxy(me._eventHandler, me), vars = {};
data._container = $(data.container || document.body);
(data._cIsBody = data._container.is('body')) || data._container.addClass('ui-dialog-container');
vars.btns = btns= [];
data.buttons && $.each(data.buttons, function(key){
btns.push({
index: ++i,
text: key,
key: key
});
});
data._mask = data.mask ? $(tpl.mask).appendTo(data._container) : null;
data._wrap = $($.parseTpl(tpl.wrap, vars)).appendTo(data._container);
data._content = $('.ui-dialog-content', data._wrap);
data._title = $(tpl.title);
data._close = data.closeBtn && $(tpl.close).highlight('ui-dialog-close-hover');
me._el = me._el || data._content;//如果不需要支持render模式,此句要删除
me.title(data.title);
me.content(data.content);
btns.length && $('.ui-dialog-btns .ui-btn', data._wrap).highlight('ui-state-hover');
data._wrap.css({
width: data.width,
height: data.height
});
//bind events绑定事件
$(window).on('ortchange', eventHanlder);
data._wrap.on('click', eventHanlder);
data._mask && data._mask.on('click', eventHanlder);
data.autoOpen && me.root().one('init', function(){me.open();});
},
_eventHandler: function(e){
var me = this, match, wrap, data = me._data, fn;
switch(e.type){
case 'ortchange':
this.refresh();
break;
case 'touchmove':
data.scrollMove && e.preventDefault();
break;
case 'click':
if(data._mask && ($.contains(data._mask[0], e.target) || data._mask[0] === e.target )){
return me.trigger('maskClick');
}
wrap = data._wrap.get(0);
if( (match = $(e.target).closest('.ui-dialog-close', wrap)) && match.length ){
me.close();
} else if( (match = $(e.target).closest('.ui-dialog-btns .ui-btn', wrap)) && match.length ) {
fn = data.buttons[match.attr('data-key')];
fn && fn.apply(me, arguments);
}
}
},
_calculate: function(){
var me = this, data = me._data, size, $win, root = document.body,
ret = {}, isBody = data._cIsBody, round = Math.round;
data.mask && (ret.mask = isBody ? {
width: root.clientWidth,
height: Math.max(root.scrollHeight, root.clientHeight)-1//不减1的话uc浏览器再旋转的时候不触发resize.奇葩!
}:{
width: '100%',
height: '100%'
});
size = data._wrap.offset();
$win = $(window);
ret.wrap = {
left: '50%',
marginLeft: -round(size.width/2) +'px',
top: isBody?round($win.height() / 2) + window.pageYOffset:'50%',
marginTop: -round(size.height/2) +'px'
}
return ret;
},
/**
* @name refresh
* @grammar refresh() ⇒ instance
* @desc 用来更新弹出框位置和mask大小。如父容器大小发生变化时,可能弹出框位置不对,可以外部调用refresh来修正。
*/
refresh: function(){
var me = this, data = me._data, ret;
if(data._isOpen) {
ret = this._calculate();
ret.mask && data._mask.css(ret.mask);
data._wrap.css(ret.wrap);
}
return me;
},
/**
* @name open
* @grammar open() ⇒ instance
* @grammar open(x, y) ⇒ instance
* @desc 弹出弹出框,如果设置了位置,内部会数值转给[position](widget/dialog.js#position)来处理。
*/
open: function(x, y){
var data = this._data;
data._isOpen = true;
data._wrap.css('display', 'block');
data._mask && data._mask.css('display', 'block');
x !== undefined && this.position ? this.position(x, y) : this.refresh();
$(document).on('touchmove', $.proxy(this._eventHandler, this));
return this.trigger('open');
},
/**
* @name close
* @grammar close() ⇒ instance
* @desc 关闭弹出框
*/
close: function(){
var eventData, data = this._data;
eventData = $.Event('beforeClose');
this.trigger(eventData);
if(eventData.defaultPrevented)return this;
data._isOpen = false;
data._wrap.css('display', 'none');
data._mask && data._mask.css('display', 'none');
$(document).off('touchmove', this._eventHandler);
return this.trigger('close');
},
/**
* @name title
* @grammar title([value]) ⇒ value
* @desc 设置或者获取弹出框标题。value接受带html标签字符串
* @example $('#dialog').dialog('title', '标题<span>xxx</span>');
*/
title: function(value) {
var data = this._data, setter = value !== undefined;
if(setter){
value = (data.title = value) ? '<h3>'+value+'</h3>' : value;
data._title.html(value)[value?'prependTo':'remove'](data._wrap);
data._close && data._close.prependTo(data.title? data._title : data._wrap);
}
return setter ? this : data.title;
},
/**
* @name content
* @grammar content([value]) ⇒ value
* @desc 设置或者获取弹出框内容。value接受带html标签字符串和zepto对象。
* @example
* $('#dialog').dialog('content', '内容');
* $('#dialog').dialog('content', '<div>内容</div>');
* $('#dialog').dialog('content', $('#content'));
*/
content: function(val) {
var data = this._data, setter = val!==undefined;
setter && data._content.empty().append(data.content = val);
return setter ? this: data.content;
},
/**
* @desc 销毁组件。
* @name destroy
* @grammar destroy() ⇒ instance
*/
destroy: function(){
var data = this._data, _eventHander = this._eventHandler;
$(window).off('ortchange', _eventHander);
$(document).off('touchmove', _eventHander);
data._wrap.off('click', _eventHander).remove();
data._mask && data._mask.off('click', _eventHander).remove();
data._close && data._close.highlight();
return this.$super('destroy');
}
/**
* @name Trigger Events
* @theme event
* @desc 组件内部触发的事件
*
* ^ 名称 ^ 处理函数参数 ^ 描述 ^
* | init | event | 组件初始化的时候触发,不管是render模式还是setup模式都会触发 |
* | open | event | 当弹出框弹出后触发 |
* | beforeClose | event | 在弹出框关闭之前触发,可以通过e.preventDefault()来阻止 |
* | close | event | 在弹出框关闭之后触发 |
* | destory | event | 组件在销毁的时候触发 |
*/
});
})(Zepto);