forked from jibe914/Bootstrap-Confirmation
-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathbootstrap-confirmation.js
322 lines (277 loc) · 9.48 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
/*!
* Bootstrap Confirmation
* Copyright 2013 Nimit Suwannagate <[email protected]>
* Copyright 2014-2016 Damien "Mistic" Sorel <[email protected]>
* Licensed under the Apache License, Version 2.0
*/
(function($) {
'use strict';
// 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.3.1';
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
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 class="btn" data-apply="confirmation"></a>' +
'<a 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);
// keep trace of selectors
this.options._isDelegate = false;
if (options.selector) { // container of buttons
this.options._selector = this._options._selector = options._root_selector + ' ' + options.selector;
}
else if (options._selector) { // children of container
this.options._selector = options._selector;
this.options._isDelegate = true;
}
else { // standalone
this.options._selector = options._root_selector;
}
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');
}
});
}
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;
});
}
});
}
};
/**
* 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();
});
// configure custom buttons
if (this.options.buttons) {
var $group = $tip.find('.confirmation-buttons .btn-group').empty();
this.options.buttons.forEach(function(button) {
$group.append(
$('<a></a>')
.addClass(button.class)
.html(button.label)
.prepend($('<i></i>').addClass(button.icon), ' ')
.one('click', function() {
if (button.onClick) {
button.onClick.call(self.$element);
}
if (button.cancel) {
self.getOnCancel.call(self).call(self.$element);
self.$element.trigger('canceled.bs.confirmation');
}
else {
self.getOnConfirm.call(self).call(self.$element);
self.$element.trigger('confirmed.bs.confirmation');
}
self.$element.confirmation('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() {
self.getOnConfirm.call(self).call(self.$element);
self.$element.trigger('confirmed.bs.confirmation');
self.$element.trigger(self.options.trigger, [true]);
self.$element.confirmation('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() {
self.getOnCancel.call(self).call(self.$element);
if (self.inState) self.inState.click = false; // Bootstrap 3.3.5
self.$element.trigger('canceled.bs.confirmation');
self.$element.confirmation('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();
}
};
/**
* 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._root_selector = this.selector;
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));