forked from mistic100/Bootstrap-Confirmation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap-confirmation.js
457 lines (389 loc) · 12.7 KB
/
bootstrap-confirmation.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
/*!
* Bootstrap Confirmation
* Copyright 2013 Nimit Suwannagate <[email protected]>
* Copyright 2014-2017 Damien "Mistic" Sorel <[email protected]>
* Licensed under the Apache License, Version 2.0
*/
(function($) {
'use strict';
var activeConfirmation;
// Confirmation extends popover.js
if (!$.fn.popover) {
throw new Error('Confirmation requires popover.js');
}
// CONFIRMATION PUBLIC CLASS DEFINITION
// ===============================
var Confirmation = function(element, options) {
options.trigger = 'click';
this.init(element, options);
};
Confirmation.VERSION = '2.4.0';
/**
* Map between keyboard events "keyCode|which" and "key"
*/
Confirmation.KEYMAP = {
13: 'Enter',
27: 'Escape',
39: 'ArrowRight',
40: 'ArrowDown'
};
Confirmation.DEFAULTS = $.extend({}, $.fn.popover.Constructor.DEFAULTS, {
placement: 'top',
title: 'Are you sure?',
popout: false,
singleton: false,
copyAttributes: 'href target',
buttons: null,
onConfirm: $.noop,
onCancel: $.noop,
btnOkClass: 'btn-xs btn-primary',
btnOkIcon: 'glyphicon glyphicon-ok',
btnOkLabel: 'Yes',
btnCancelClass: 'btn-xs btn-default',
btnCancelIcon: 'glyphicon glyphicon-remove',
btnCancelLabel: 'No',
// @formatter:off
// href="#" allows the buttons to be focused
template: '<div class="popover confirmation">' +
'<div class="arrow"></div>' +
'<h3 class="popover-title"></h3>' +
'<div class="popover-content">' +
'<p class="confirmation-content"></p>' +
'<div class="confirmation-buttons text-center">' +
'<div class="btn-group">' +
'<a href="#" class="btn" data-apply="confirmation"></a>' +
'<a href="#" class="btn" data-dismiss="confirmation"></a>' +
'</div>' +
'</div>' +
'</div>' +
'</div>'
// @formatter:on
});
Confirmation.prototype = $.extend({}, $.fn.popover.Constructor.prototype);
Confirmation.prototype.constructor = Confirmation;
/**
* Expose defaults
* @returns {object}
*/
Confirmation.prototype.getDefaults = function() {
return Confirmation.DEFAULTS;
};
/**
* Init the component
* @param element {jQuery}
* @param options {object}
*/
Confirmation.prototype.init = function(element, options) {
$.fn.popover.Constructor.prototype.init.call(this, 'confirmation', element, options);
if ((this.options.popout || this.options.singleton) && !options.rootSelector) {
throw new Error('The rootSelector option is required to use popout and singleton features since jQuery 3.');
}
// keep trace of selectors
this.options._isDelegate = false;
if (options.selector) { // container of buttons
this.options._selector = this._options._selector = options.rootSelector + ' ' + options.selector;
}
else if (options._selector) { // children of container
this.options._selector = options._selector;
this.options._isDelegate = true;
}
else { // standalone
this.options._selector = options.rootSelector;
}
var self = this;
if (!this.options.selector) {
// store copied attributes
this.options._attributes = {};
if (this.options.copyAttributes) {
if (typeof this.options.copyAttributes === 'string') {
this.options.copyAttributes = this.options.copyAttributes.split(' ');
}
}
else {
this.options.copyAttributes = [];
}
this.options.copyAttributes.forEach(function(attr) {
this.options._attributes[attr] = this.$element.attr(attr);
}, this);
// cancel original event
this.$element.on(this.options.trigger, function(e, ack) {
if (!ack) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
}
});
// manage singleton
this.$element.on('show.bs.confirmation', function(e) {
if (self.options.singleton) {
// close all other popover already initialized
$(self.options._selector).not($(this)).filter(function() {
return $(this).data('bs.confirmation') !== undefined;
}).confirmation('hide');
}
});
}
else {
// cancel original event
this.$element.on(this.options.trigger, this.options.selector, function(e, ack) {
if (!ack) {
e.preventDefault();
e.stopPropagation();
e.stopImmediatePropagation();
}
});
}
if (!this.options._isDelegate) {
// manage popout
this.eventBody = false;
this.uid = this.$element[0].id || this.getUID('group_');
this.$element.on('shown.bs.confirmation', function(e) {
if (self.options.popout && !self.eventBody) {
self.eventBody = $('body').on('click.bs.confirmation.' + self.uid, function(e) {
if ($(self.options._selector).is(e.target)) {
return;
}
// close all popover already initialized
$(self.options._selector).filter(function() {
return $(this).data('bs.confirmation') !== undefined;
}).confirmation('hide');
$('body').off('click.bs.' + self.uid);
self.eventBody = false;
});
}
});
}
};
/**
* Overrides, always show
* @returns {boolean}
*/
Confirmation.prototype.hasContent = function() {
return true;
};
/**
* Sets the popover content
*/
Confirmation.prototype.setContent = function() {
var self = this;
var $tip = this.tip();
var title = this.getTitle();
var content = this.getContent();
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title);
$tip.find('.confirmation-content').toggle(!!content).children().detach().end()[
// we use append for html objects to maintain js events
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
](content);
$tip.on('click', function(e) {
e.stopPropagation();
});
if (this.options.buttons) {
// configure custom buttons
var $group = $tip.find('.confirmation-buttons .btn-group').empty();
this.options.buttons.forEach(function(button) {
$group.append(
$('<a href="#"></a>')
.addClass(button.class || 'btn btn-xs btn-default')
.html(button.label || '')
.attr(button.attr || {})
.prepend($('<i></i>').addClass(button.icon), ' ')
.one('click', function(e) {
if ($(this).attr('href') === '#') {
e.preventDefault();
}
if (button.onClick) {
button.onClick.call(self.$element);
}
if (button.cancel) {
self.getOnCancel().call(self.$element, button.value);
self.$element.trigger('canceled.bs.confirmation', [button.value]);
}
else {
self.getOnConfirm().call(self.$element, button.value);
self.$element.trigger('confirmed.bs.confirmation', [button.value]);
}
if (self.inState) { // Bootstrap 3.3.5
self.inState.click = false;
}
self.hide();
})
);
}, this);
}
else {
// configure 'ok' button
$tip.find('[data-apply="confirmation"]')
.addClass(this.options.btnOkClass)
.html(this.options.btnOkLabel)
.attr(this.options._attributes)
.prepend($('<i></i>').addClass(this.options.btnOkIcon), ' ')
.off('click')
.one('click', function(e) {
if ($(this).attr('href') === '#') {
e.preventDefault();
}
self.getOnConfirm().call(self.$element);
self.$element.trigger('confirmed.bs.confirmation');
self.$element.trigger(self.options.trigger, [true]);
self.hide();
});
// configure 'cancel' button
$tip.find('[data-dismiss="confirmation"]')
.addClass(this.options.btnCancelClass)
.html(this.options.btnCancelLabel)
.prepend($('<i></i>').addClass(this.options.btnCancelIcon), ' ')
.off('click')
.one('click', function(e) {
e.preventDefault();
self.getOnCancel().call(self.$element);
self.$element.trigger('canceled.bs.confirmation');
if (self.inState) { // Bootstrap 3.3.5
self.inState.click = false;
}
self.hide();
});
}
$tip.removeClass('fade top bottom left right in');
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
// this manually by checking the contents.
if (!$tip.find('.popover-title').html()) {
$tip.find('.popover-title').hide();
}
// bind key navigation
activeConfirmation = this;
$(window)
.off('keyup.bs.confirmation')
.on('keyup.bs.confirmation', this._onKeyup.bind(this));
};
/**
* Remove key binding on destroy
*/
Confirmation.prototype.destroy = function() {
if (activeConfirmation === this) {
activeConfirmation = undefined;
$(window).off('keyup.bs.confirmation');
}
$.fn.popover.Constructor.prototype.destroy.call(this);
};
/**
* Remove key binding on hide
*/
Confirmation.prototype.hide = function() {
if (activeConfirmation === this) {
activeConfirmation = undefined;
$(window).off('keyup.bs.confirmation');
}
$.fn.popover.Constructor.prototype.hide.call(this);
};
/**
* Navigate through buttons with keyboard
* @param event
* @private
*/
Confirmation.prototype._onKeyup = function(event) {
if (!this.$tip) {
activeConfirmation = undefined;
$(window).off('keyup.bs.confirmation');
return;
}
var key = event.key || Confirmation.KEYMAP[event.keyCode || event.which];
var $group = this.$tip.find('.confirmation-buttons .btn-group');
var $active = $group.find('.active');
var $next;
switch (key) {
case 'Escape':
this.hide();
break;
case 'ArrowRight':
if ($active.length && $active.next().length) {
$next = $active.next();
}
else {
$next = $group.children().first();
}
$active.removeClass('active');
$next.addClass('active').focus();
break;
case 'ArrowLeft':
if ($active.length && $active.prev().length) {
$next = $active.prev();
}
else {
$next = $group.children().last();
}
$active.removeClass('active');
$next.addClass('active').focus();
break;
}
};
/**
* Gets the on-confirm callback
* @returns {function}
*/
Confirmation.prototype.getOnConfirm = function() {
if (this.$element.attr('data-on-confirm')) {
return getFunctionFromString(this.$element.attr('data-on-confirm'));
}
else {
return this.options.onConfirm;
}
};
/**
* Gets the on-cancel callback
* @returns {function}
*/
Confirmation.prototype.getOnCancel = function() {
if (this.$element.attr('data-on-cancel')) {
return getFunctionFromString(this.$element.attr('data-on-cancel'));
}
else {
return this.options.onCancel;
}
};
/**
* Generates an anonymous function from a function name
* function name may contain dots (.) to navigate through objects
* root context is window
*/
function getFunctionFromString(functionName) {
var context = window;
var namespaces = functionName.split('.');
var func = namespaces.pop();
for (var i = 0, l = namespaces.length; i < l; i++) {
context = context[namespaces[i]];
}
return function() {
context[func].call(this);
};
}
// CONFIRMATION PLUGIN DEFINITION
// =========================
var old = $.fn.confirmation;
$.fn.confirmation = function(option) {
var options = (typeof option == 'object' && option) || {};
options.rootSelector = this.selector || options.rootSelector; // this.selector removed in jQuery > 3
return this.each(function() {
var $this = $(this);
var data = $this.data('bs.confirmation');
if (!data && option == 'destroy') {
return;
}
if (!data) {
$this.data('bs.confirmation', (data = new Confirmation(this, options)));
}
if (typeof option == 'string') {
data[option]();
if (option == 'hide' && data.inState) { //data.inState doesn't exist in Bootstrap < 3.3.5
data.inState.click = false;
}
}
});
};
$.fn.confirmation.Constructor = Confirmation;
// CONFIRMATION NO CONFLICT
// ===================
$.fn.confirmation.noConflict = function() {
$.fn.confirmation = old;
return this;
};
}(jQuery));