-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuxrocket.dialog.js
executable file
·325 lines (255 loc) · 9.38 KB
/
uxrocket.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
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
/**
* @author Bilal Cinarli
*/
(function($) {
var ux, // localshorthand
rocketName = 'uxrDialog',
instance = 1,
defaults = {
title : '',
message : '',
confirmText : null,
cancelText : null,
confirmClass : null,
cancelClass : null,
type : 'warning',
confirm : {
show : true,
className: 'primary-action',
text : 'Tamam'
},
cancel : {
show : true,
className: 'button',
text : 'Vazgeç'
},
test : this.type,
// other buttons
buttons : {},
// close icon
close : false,
blockUI : true,
className : '',
allowMultiple: false,
openOnload : false,
onReady : false,
onConfirm: false,
onCancel : false,
onOpen : false,
onClose : false
},
events = {
click: 'click.' + rocketName,
ready: 'uxrready.' + rocketName
},
ns = {
prefix : 'uxr-',
rocket : 'uxRocket',
data : rocketName,
classes: {
ready: 'ready'
}
};
var Dialog = function(el, options, selector) {
this._name = rocketName;
this._defaults = defaults;
this._instance = instance;
this._direct = false;
if(el === null) {
el = document.createElement('a');
this._direct = true;
}
this.el = el;
this.$el = $(el);
this.options = $.extend(true, {}, defaults, options, this.$el.data());
this.selector = selector;
instance++;
this.init();
};
Dialog.prototype.init = function() {
var uxrocket = this.$el.data(ns.rocket) || {};
// register plugin data to rocket
uxrocket[ns.data] = {hasWrapper: false, ready: utils.getClassname('ready'), selector: this.selector, options: this.options};
this.$el.data(ns.rocket, uxrocket);
this.bindUIActions();
this.$el.addClass(utils.getClassname('ready'));
this.prepare();
this.emitEvent('ready');
if(this._direct === true || this.options.openOnload) {
ux.open(this);
}
};
Dialog.prototype.bindUIActions = function() {
var _this = this,
$body = $('body');
this.$el.on(events.click, function(e) {
e.preventDefault();
// close any other opened instances
if(!_this.options.allowMultiple) {
ux.close();
}
if(typeof $(this).attr('href') === 'undefined' || $(this).attr('href') === '' || $(this).attr('href').charAt(0) === '#'){
ux.open(_this);
}else{
ux.open(_this,this.href);
}
});
$body.on(events.click, '#uxr-dialog-' + _this._instance + ' .uxr-dialog-confirm-button', function(e) {
e.preventDefault();
utils.callback(_this.options.onConfirm);
ux.close(_this);
});
$body.on(events.click, '#uxr-dialog-' + _this._instance + ' .uxr-dialog-cancel-button', function(e) {
e.preventDefault();
utils.callback(_this.options.onCancel);
ux.close(_this);
});
$body.on(events.click, '#uxr-dialog-' + _this._instance + ' .uxr-dialog-close', function(e) {
e.preventDefault();
ux.close(_this);
});
};
Dialog.prototype.prepare = function(content) {
var html = '' +
'<div id="uxr-dialog-' + this._instance + '" class="uxr-dialog uxr-dialog-' + this.options.type + ' ' + this.options.className + '">';
if(typeof this.options.confirm === 'string'){
}
if(this.options.blockUI === true && this.options.allowMultiple === false) {
html += '\n' +
'<div id="uxr-dialog-cover"></div>';
}
html += '\n' +
'<div id="uxr-dialog-content" class="note dialog-note note-' + this.options.type + '">';
if(this.options.title !== '') {
html += '<h3 class="uxr-dialog-title note-title">' + this.options.title + '</h3>';
}
if(this.options.message !== '') {
html += '<div class="uxr-dialog-content note-content">' + this.options.message + '</div>';
}
if(typeof this.$el.attr('href') !== 'undefined') {
var content = $(this.$el.attr('href')).html();
if( this.$el.attr('href').charAt(0) === '#' && !!content ){
//if( !content ){ return; }
html += '<div class="uxr-dialog-content note-content">'+content+'</div>';
}else{
html += '<div class="uxr-dialog-content note-content"></div>';
}
}
if(this.options.confirm.show || this.options.cancel.show || this.options.buttons.length > 0) {
var buttons = {
confirm: {
text: this.options.confirmText || this.options.confirm.text,
class:this.options.confirmClass || this.options.confirm.className
},
cancel: {
text:this.options.cancelText || this.options.cancel.text,
class:this.options.cancelClass || this.options.cancel.className
}
};
html += '<div class="uxr-dialog-buttons note-buttons">';
if(this.options.cancel.show) {
html += '<a href="#" class="uxr-dialog-button uxr-dialog-cancel-button ' + buttons.cancel.class + '">' + buttons.cancel.text+ '</a>';
}
$.each(this.options.buttons, function(item) {
html += '<a href="#" class="uxr-dialog-button ' + item.className + '">' + item.text + '</a>';
});
if(this.options.confirm.show) {
html += '<a href="#" class="uxr-dialog-button uxr-dialog-confirm-button ' + buttons.confirm.class + '">' + buttons.confirm.text + '</a>';
}
html += '</div>';
}
if(this.options.close) {
html += '<a href="#" class="uxr-dialog-close"><i class="uxr-dialog-close-icon"></i></a>';
}
html += ' </div>' + // end of dialog content
'</div>';
this.dialog = html;
};
Dialog.prototype.emitEvent = function(which) {
this.$el.trigger(events[which]);
};
var utils = {
callback: function(fn) {
// if callback string is function call it directly
if(typeof fn === 'function') {
fn.apply(this);
}
// if callback defined via data-attribute, call it via new Function
else {
if(fn !== false) {
var func = new Function('return ' + fn);
func();
}
}
},
escapeSelector: function(selector) {
var is_ID = selector.charAt(0) === '#',
re = /([ !"#$%&'()*+,.\/:;<=>?@[\\\]^`{|}~])/g;
return is_ID ? '#' + selector.substring(1).replace(re, '\\$1') : selector;
},
getStringVariable: function(str) {
var val;
// check if it is chained
if(str.indexOf('.') > -1) {
var chain = str.split('.'),
chainVal = window[chain[0]];
for(var i = 1; i < chain.length; i++) {
chainVal = chainVal[chain[i]];
}
val = chainVal;
}
else {
val = window[str];
}
return val;
},
getClassname: function(which) {
return ns.prefix + ns.name + '-' + ns.classes[which];
},
getAjaxContent: function(url,instance){
$.get(url,function(data){
$(instance).find('.uxr-dialog-content').html(data);
}
);
}
};
ux = $.fn.dialog = $.uxrdialog = function(options) {
var selector = this.selector;
// direct call to dialog
if(typeof this === 'function') {
new Dialog(null, options, null);
return;
}
return this.each(function() {
if($.data(this, ns.data)) {
return;
}
// Bind the plugin and attach the instance to data
$.data(this, ns.data, new Dialog(this, options, selector));
});
};
ux.close = function(dialog) {
var _dialog = dialog || {},
instance = _dialog._instance || false;
if(instance) {
$('#uxr-dialog-' + instance).remove();
}
else {
$('.uxr-dialog').remove();
}
if(instance !== false && typeof _dialog.options !== 'undefined') {
utils.callback(_dialog.options.onClose);
}
};
ux.open = function(dialog,href) {
$('body').append(dialog.dialog);
utils.callback(dialog.options.onOpen);
if(href){
utils.getAjaxContent(href,'#uxr-dialog-'+dialog._instance);
}
};
// version
ux.version = '0.4.2';
// settings
ux.settings = defaults;
})(jQuery);