forked from briceburg/jqModal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjqModal.js
More file actions
339 lines (262 loc) · 10.7 KB
/
jqModal.js
File metadata and controls
339 lines (262 loc) · 10.7 KB
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
/*
* jqModal - Minimalist Modaling with jQuery
*
* Copyright (c) 2007-2014 Brice Burgess @iceburg_net
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* $Version: 1.0.2 (2014.04.10 +r19)
* Requires: jQuery 1.2.3+
*/
(function($) {
/**
* Initialize a set of elements as "modals". Modals typically are popup dialogs,
* notices, modal windows, &c.
*
* @name jqm
* @param options user defined options, augments defaults.
* @type jQuery
* @cat Plugins/jqModal
*/
$.fn.jqm=function(options){
var o = $.extend({}, $.jqm.params, options);
return this.each(function(){
var e = $(this),
jqm = $(this).data('jqm');
if(!jqm) jqm = {ID: I++};
// add/extend options to modal and mark as initialized
e.data('jqm',$.extend(o,jqm)).addClass('jqm-init');
// ... Attach events to trigger showing of this modal
o.trigger&&$(this).jqmAddTrigger(o.trigger);
});
};
/**
* Matching modals will have their jqmShow() method fired by attaching a
* onClick event to elements matching `trigger`.
*
* @name jqmAddTrigger
* @param trigger a selector String, jQuery collection of elements, or a DOM element.
*/
$.fn.jqmAddTrigger=function(trigger){
return this.each(function(){
if(!addTrigger($(this), 'jqmShow', trigger))
err("jqmAddTrigger must be called on initialized modals")
});
};
/**
* Matching modals will have their jqmHide() method fired by attaching an
* onClick event to elements matching `trigger`.
*
* @name jqmAddClose
* @param trigger a selector String, jQuery collection of elements, or a DOM element.
*/
$.fn.jqmAddClose=function(trigger){
return this.each(function(){
if(!addTrigger($(this), 'jqmHide', trigger))
err("jqmAddClose must be called on initialized modals")
});
};
/**
* Open matching modals (if not shown)
*/
$.fn.jqmShow=function(trigger){
return this.each(function(){ !this._jqmShown&&show($(this), trigger); });
};
/**
* Close matching modals
*/
$.fn.jqmHide=function(trigger){
return this.each(function(){ this._jqmShown&&hide($(this), trigger); });
};
// utility functions
var
err = function(msg){
if(window.console && window.console.error) window.console.error(msg);
}, show = function(e, t){
/**
* e = modal element (as jQuery object)
* t = triggering element
*
* o = options
* z = z-index of modal
* v = overlay element (as jQuery object)
* h = hash (for jqModal <= r15 compatibility)
*/
var o = e.data('jqm'),
t = t || window.event,
z = (parseInt(e.css('z-index'))),
z = (z > 0) ? z : 3000,
v = $('<div></div>').addClass(o.overlayClass).css({height:'100%',width:'100%',position:'fixed',left:0,top:0,'z-index':z-1,opacity:o.overlay/100}),
// maintain legacy "hash" construct
h = {w: e, c: o, o: v, t: t};
e.css('z-index',z);
if(o.ajax){
var target = o.target || e,
url = o.ajax;
target = (typeof target == 'string') ? $(target,e) : $(target);
if(url.substr(0,1) == '@') url = $(t).attr(url.substring(1));
// Load the Ajax Content (and once loaded);
// Fire the onLoad callback (if exists),
// Attach closing events to elements inside the modal that match the closingClass,
// and Execute the jqModal default Open Callback
target.html(o.ajaxText).load(url,function(){
o.onLoad && o.onLoad.call(this,h);
open(h);
});
}
else { open(h); }
}, hide = function(e, t){
/**
* e = modal element (as jQuery object)
* t = triggering element
*
* o = options
* h = hash (for jqModal <= r15 compatibility)
*/
var o = e.data('jqm'),
t = t || window.event,
// maintain legacy "hash" construct
h = {w: e, c: o, o: e.data('jqmv'), t: t};
close(h);
}, onShow = function(hash){
// onShow callback. Responsible for showing a modal and overlay.
// return false to stop opening modal.
// hash object;
// w: (jQuery object) The modal element
// c: (object) The modal's options object
// o: (jQuery object) The overlay element
// t: (DOM object) The triggering element
// display the overlay (prepend to body) if not disabled
if(hash.c.overlay > 0)
hash.o.prependTo('body');
// make modal visible
hash.w.show();
// call focusFunc (attempts to focus on first input in modal)
$.jqm.focusFunc(hash.w);
return true;
}, onHide = function(hash){
// onHide callback. Responsible for hiding a modal and overlay.
// return false to stop closing modal.
// hash object;
// w: (jQuery object) The modal element
// c: (object) The modal's options object
// o: (jQuery object) The overlay element
// t: (DOM object) The triggering element
// hide modal and if overlay, remove overlay.
hash.w.hide() && hash.o && hash.o.remove();
return true;
}, addTrigger = function(e, key, trigger){
// addTrigger: Adds a jqmShow or jqmHide (key) for a modal (e)
// all elements that match trigger string (trigger)\
// return false if e is not an initialized modal element
if(!e.data('jqm')) return false;
return $(trigger).each(function(){
// register modal to trigger elements
this[key] = this[key] || [];
this[key].push(e);
}).click(function(){
var trigger = this;
// foreadh modal registered to this trigger, call jqmShow ||
// jqmHide (key) on modal passing trigger element (e)
$.each(this[key], function(i, e){ e[key](trigger); });
// stop trigger click event from bubbling
return false;
});
}, open = function(h){
// open: executes the onOpen callback + performs common tasks if successful
// transform legacy hash into new var shortcuts
var e = h.w,
v = h.o,
o = h.c;
// execute onShow callback
if(o.onShow(h) !== false){
// mark modal as shown
e[0]._jqmShown = true;
// if modal dialog
//
// Bind the Keep Focus Function [F] if no other Modals are open (!A[0]) +
// Add this modal to the opened modals stack (A) for nested modal support
//
// else, close dialog when overlay is clicked
if(o.modal){ !A[0]&&F('bind'); A.push(e); }
else e.jqmAddClose(v);
// Attach closing events to elements inside the modal that match the closingClass
o.closeClass&&e.jqmAddClose($('.' + o.closeClass,e));
// IF toTop is true and overlay exists;
// Add placeholder element <span id="jqmP#ID_of_modal"/> before modal to
// remember it's position in the DOM and move it to a child of the body tag (after overlay)
o.toTop&&v&&e.before('<span id="jqmP'+o.ID+'"></span>').insertAfter(v);
// remember overlay (for closing function)
e.data('jqmv',v);
}
}, close = function(h){
// close: executes the onHide callback + performs common tasks if successful
// transform legacy hash into new var shortcuts
var e = h.w,
v = h.o,
o = h.c;
// execute onShow callback
if(o.onHide(h) !== false){
// mark modal as !shown
e[0]._jqmShown = false;
// If modal, remove from modal stack.
// If no modals in modal stack, unbind the Keep Focus Function
if(o.modal){A.pop();!A[0]&&F('unbind');}
// IF toTop was passed and an overlay exists;
// Move modal back to its "remembered" position.
o.toTop&&v&&$('#jqmP'+o.ID).after(e).remove();
}
}, F = function(t){
// F: The Keep Focus Function (for modal: true dialos)
// Binds or Unbinds (t) the Focus Examination Function (X) to keypresses and clicks
$(document)[t]("keypress keydown mousedown",X);
}, X = function(e){
// X: The Focus Examination Function (for modal: true dialogs)
var modal = $(e.target).data('jqm') || $(e.target).parents('.jqm-init:first').data('jqm'),
activeModal = A[A.length-1].data('jqm');
// allow bubbling if event target is within active modal dialog
if(modal && modal.ID == activeModal.ID) return true;
// else, trigger focusFunc (focus on first input element and halt bubbling)
return $.jqm.focusFunc(activeModal);
},
I = 0, // modal ID increment (for nested modals)
A = []; // array of active modals (used to lock interactivity to appropriate modal)
// $.jqm, overridable defaults
$.jqm = {
/**
* default options
*
* (Integer) overlay - [0-100] Translucency percentage (opacity) of the body covering overlay. Set to 0 for NO overlay, and up to 100 for a 100% opaque overlay.
* (String) overlayClass - Applied to the body covering overlay. Useful for controlling overlay look (tint, background-image, &c) with CSS.
* (String) closeClass - Children of the modal element matching `closeClass` will fire the onHide event (to close the modal).
* (Mixed) trigger - Matching elements will fire the onShow event (to display the modal). Trigger can be a selector String, a jQuery collection of elements, a DOM element, or a False boolean.
* (String) ajax - URL to load content from via an AJAX request. False to disable ajax. If ajax begins with a "@", the URL is extracted from the attribute of the triggering element (e.g. use '@data-url' for; <a href="#" class="jqModal" data-url="modal.html">...)
* (Mixed) target - Children of the modal element to load the ajax response into. If false, modal content will be overwritten by ajax response. Useful for retaining modal design.
* Target may be a selector string, jQuery collection of elements, or a DOM element -- and MUST exist as a child of the modal element.
* (String) ajaxText - Text shown while waiting for ajax return. Replaces HTML content of `target` element.
* (Boolean) modal - If true, user interactivity will be locked to the modal window until closed.
* (Boolean) toTop - If true, modal will be posistioned as a first child of the BODY element when opened, and its DOM posistion restored when closed. Useful for overcoming z-Index container issues.
* (Function) onShow - User defined callback function fired when modal opened.
* (Function) onHide - User defined callback function fired when modal closed.
* (Function) onLoad - User defined callback function fired when ajax content loads.
*/
params: {
overlay: 50,
overlayClass: 'jqmOverlay',
closeClass: 'jqmClose',
trigger: '.jqModal',
ajax: false,
target: false,
ajaxText: '',
modal: false,
toTop: false,
onShow: onShow,
onHide: onHide,
onLoad: false
},
// focusFunc is fired when a modal is shown, or when interaction occurs outside
// a modal enabled dialog. Passed the modal element.
focusFunc: function(e) { $(':input:visible:first',e).focus(); return false; }
};
})( jQuery );