-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathqc.bs.modal.js
234 lines (208 loc) · 8.84 KB
/
qc.bs.modal.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
/**
* Helper to implement a modal via bootstrap.
*
* Uses the jQuery UI widget mechanism to provide object oriented functionality.
*
* Assumes that a wrapper is being used on the control and is set up with a modal class. This is required for correct functioning.
*/
jQuery(function( $, undefined ) {
$.widget( "qcubed.bsModal", {
options: {
fade: true, // Modal transition
hasCloseButton: true, // Has a close button
title: "", // Title text
headerClasses: "", // Classes to put in the header. A good one is bg-primary, bg-success, etc.
buttons: null, // Array of button options
size: null, // The modal-lg or modal-sm option
backdrop: null, // The backdrop option that can be specified in the initialization options.
// Boolean, or the string "static", which means do not allow closing by clicking outside of dialog.
keyboard: true, // Boolean, whether to allow ESC key to close
show: false // Boolean, whether to show immediately upon initialization
},
_create: function() {
var self = this,
$control = this.element,
id = $control.attr('id'),
wrapperId = id + "_ctl",
$wrapper = $('#' + wrapperId);
// make the wrapper into the bs modal wrapper
var $md = $('<div class="modal-dialog" role="document"></div>');
if (this.options.size) {
$md.addClass(this.options.size);
}
// allows capturing of enter key events
$md.attr('tabindex', -1);
var $mc = $('<div class="modal-content"></div>');
var $mh = $('<div class="modal-header"></div>');
var hasHeader = false;
if (this.options.hasCloseButton) {
$mh.append('<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>');
hasHeader = true;
}
if (this.options.title) {
$mh.append('<h4 class="modal-title" id="gridSystemModalLabel">' + this.options.title + '</h4>');
hasHeader = true;
}
if (this.options.headerClasses) {
$mh.addClass(this.options.headerClasses);
}
$control.addClass('modal-body');
var $mf = $('<div class="modal-footer"></div>');
if (this.options.buttons) {
$.each(this.options.buttons, function(i, objButton) {
var buttonStyle = 'default';
var $b = $('<button type="button">' + objButton.text + '</button>');
if (objButton.isPrimary) {
$b.attr('data-primary', 1);
}
if (objButton.style) {
buttonStyle = objButton.style;
}
$b.addClass('btn-' + buttonStyle);
$b.attr('data-btnid', objButton.id);
if (objButton.attr) {
$b.attr(objButton.attr);
}
$b.addClass('btn'); // do this after attr in case attr includes a class attribute
// create an action for the button
if (objButton.close) {
// button click closes the dialog
$b.attr("data-dismiss", "modal");
}
objButton.instance = self;
if (objButton.click === false) {
// do nothing
}
else if (objButton.click) {
$b.click(objButton.click);
}
else {
$b.click(objButton, self._buttonClick);
}
$mf.append($b);
});
}
// makes sure a return key fires the default button if there is one
$control.parent().on ("keydown", function(event) {
if (event.which === 13 && !$(event.target).is('textarea')) {
var b = $(this).closest("[role=\'dialog\']").find("button[data-primary=1]");
if (b && b[0]) {
b[0].click();
}
event.preventDefault();
return false;
}
});
// put it all together
$md.append($mc);
if (hasHeader) {
$mc.append($mh);
}
$mc.append($control);
if (this.options.buttons) {
$mc.append($mf);
}
$wrapper.append($md);
// initialize the modal
var options = {};
if (this.options.keyboard) {
options.keyboard = this.options.keyboard;
}
if (this.options.backdrop) {
options.backdrop = this.options.backdrop;
}
options.show = this.options.show;
$wrapper.modal(options);
$wrapper.on('shown.bs.modal', function (e) {
qcubed.recordControlModification(id, "_IsOpen", true);
// focus first element if possible, or whole dialog to capture return event
var obj = $control.find(':input:enabled:visible:first');
if (obj.length) {
obj.focus();
} else {
$md.focus(); // allows capturing of enter key events if no control is selected
}
});
$wrapper.on('hidden.bs.modal', function (e) {
qcubed.recordControlModification(id, "_IsOpen", false);
});
},
open: function() {
var $control = this.element,
id = $control.attr('id'),
wrapperId = id + "_ctl",
$wrapper = $('#' + wrapperId);
$wrapper.modal("show");
},
close: function() {
var $control = this.element,
id = $control.attr('id'),
wrapperId = id + "_ctl",
$wrapper = $('#' + wrapperId);
$wrapper.modal("hide");
},
showButton: function(btnId, visible) {
var $control = $(this.element).parent(),
$button = $control.find("button[data-btnid=" + btnId + "]");
if ($button) {
if (visible) {
$button.show();
} else {
$button.hide();
}
}
},
setButtonCss: function(btnId, css) {
var $control = this.element,
$button = $control.find("button[data-btnid=" + btnId + "]");
if ($button) {
$button.css(css);
}
},
/**
* Uses bootstrap to perform a confirm message.
* @param string message
* @param function success The function to execute if the user confirms the message. Otherwise, no function is executed.
*/
confirm: function(message, success) {
var $form = $(this.element).closest('form');
var $w = $('<div id="bsConfirm_ctl" class="modal"></div>');
var $m = $('<div id="bsConfirm">' + message + '</div>');
$w.append($m);
$form.append($w);
$m.bsModal({
hasCloseButton: false, backdrop: "static", title: " ", headerClasses: "bg-warning",
buttons: [
{text: "No", close: true, click: false},
{text: "Yes", close: true, click: success}
]
});
$m.bsModal("open");
$w.on('hidden.bs.modal', function () {
$w.remove();
});
},
_buttonClick: function(event) {
var objButton = event.data;
var self = objButton.instance;
if (objButton.confirm) {
self.confirm(objButton.confirm, function () {
self._recordButtonClick(event);
});
} else {
self._recordButtonClick(event);
}
},
_recordButtonClick: function(event) {
var objButton = event.data;
var self = objButton.instance;
var controlId = self.element.attr('id');
qcubed.recordControlModification(controlId, "_ClickedButton", objButton.id);
self.element.trigger("QDialog_Button", objButton.id);
},
_destroy: function () {
this.close(); // there currently is no tear down function for modals. v4 of bootstrap is supposed to have one.
this._super();
}
});
});