-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcap.js
464 lines (397 loc) · 14.5 KB
/
cap.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
458
459
460
461
462
463
464
/*
CAP - Non-blocking HTML replacement for confirm/alert/prompt
Author: Ryan Kinal
License: WTFPL
*/
window.cap = (function() {
var blanket = document.getElementById('blanket'),
cap = {},
current,
error = document.createElement('div'),
showCurrent = function(parent)
{
parent.appendChild(current);
current.style.display = 'block';
blanket.style.display = 'block';
window.addEventListener('keydown', handleEscape);
},
closeCurrent = function()
{
if (current)
{
current.style.display = 'none';
blanket.style.display = 'none';
current.parentNode.removeChild(current);
current = null;
}
},
handleEscape = function(e)
{
e = e || window.event;
var key = e.keyCode || e.which;
if (key === 27)
{
window.removeEventListener('keydown', handleEscape);
closeCurrent();
return false;
}
},
empty = function(element)
{
while (element.childNodes.length)
{
element.removeChild(element.childNodes[0]);
}
};
if (!blanket)
{
blanket = document.createElement('div');
blanket.id = 'blanket';
blanket.className = 'blanket';
document.body.appendChild(blanket);
}
/*
parameters:
settings - (optional) an object with the following possible keys:
- parent - The HTML element to which the confirm element is appended
- className - A custom class to apply to the confirm element
- confirmText - Text to display on the confirm button
- cancelText - Text to display on the cancel button
- message - Text to identify what the user is confirming
- onConfirm - The callback to run when the user confirms
- onCancel - The callback to run when the user cancels
- show - Whether or not to show the confirm element after it is created
- hide - Whether or not to hide the prompt element after submit
returns an object with the following values:
- element - a reference to the confirm box (div)
- blanket - a reference to the blanket element
*/
cap.confirm = function(settings, onConfirm, onCancel)
{
if (typeof settings === 'string')
{
settings = {
message: settings,
onConfirm: onConfirm,
onCancel: onCancel
};
}
else if (typeof settings === 'undefined')
{
settings = {};
}
var box = document.createElement('div'),
okay = document.createElement('input'),
cancel = document.createElement('input'),
buttons = document.createElement('div'),
paragraph = document.createElement('p'),
parent = settings.parent || document.body;
box.className = settings.className || 'modal';
okay.type = 'button';
okay.value = settings.confirmText || 'Yes';
cancel.type = 'button';
cancel.value = settings.cancelText || 'No';
paragraph.appendChild(document.createTextNode(settings.message || 'Are you sure?'));
buttons.appendChild(okay);
buttons.appendChild(cancel);
box.appendChild(paragraph);
box.appendChild(buttons);
okay.addEventListener('click', function(e) {
var close, handlerReturnValue;
if (typeof settings.onConfirm === 'function')
{
handlerReturnValue = settings.onConfirm(e);
close = handlerReturnValue || typeof handlerReturnValue === 'undefined';
}
else
{
close = true;
}
if (close && settings.hide !== false)
{
closeCurrent();
}
return false;
});
cancel.addEventListener('click', function(e) {
var close, handlerReturnValue;
if (typeof settings.onCancel === 'function')
{
handlerReturnValue = settings.onCancel(e);
close = handlerReturnValue || typeof handlerReturnValue === 'undefined';
}
else
{
close = true;
}
if (close && settings.hide !== false)
{
closeCurrent();
}
return false;
});
current = box;
if (settings.show !== false)
{
showCurrent(parent);
}
return {
element: box,
blanket: blanket
};
}
/*
parameters:
settings - (optional) an object with the following possible keys:
- parent - The HTML element to which the alert element is appended
- className - A custom class to apply to the alert element
- okayText - String to display on the "okay" button
- contentType - They type of content that is passed in the "content" property
- If left out, it is assumed to be text
- If the value is "node", it's expecting a DOM node
- If the value is "html", it's expecting an HTML string
- content - Content to display in the alert. Type must match the value passed into contentType
- onConfirm - The callback to run when the user confirms
- show - Whether or not to show the alert element after it is created
- hide - Whether or not to hide the prompt element after submit
returns an object with the following values:
- element - a reference to the alert DOM element
- blanket - a reference to the blanket element
*/
cap.alert = function(settings, onConfirm)
{
if (typeof settings === 'string')
{
settings = {
content: settings,
onConfirm: onConfirm
};
}
else if (typeof settings === 'undefined')
{
settings = {};
}
var box = document.createElement('div'),
content,
okay = document.createElement('input'),
buttons = document.createElement('div'),
parent = settings.parent || document.body;
box.className = settings.className || 'modal';
okay.type = 'button';
okay.className = 'okay';
okay.value = settings.okayText || 'Okay';
buttons.appendChild(okay);
if (settings.contentType === 'html')
{
content = document.createElement('div');
content.innerHtml = settings.content;
}
else if (settings.contentType === 'node')
{
content = settings.content;
}
else
{
content = document.createElement('p');
content.appendChild(document.createTextNode(settings.content));
}
box.appendChild(content);
box.appendChild(buttons);
okay.addEventListener('click', function(e) {
var close,
handlerReturnValue;
if (typeof settings.onConfirm === 'function')
{
handlerReturnValue = settings.onConfirm(e);
close = handlerReturnValue || typeof handlerReturnValue === 'undefined';
}
else
{
close = true;
}
if (close && settings.hide !== false)
{
closeCurrent();
}
return false;
});
current = box;
if (settings.show !== false)
{
showCurrent(parent);
}
return {
element: box,
blanket: blanket
}
}
/*
parameters:
settings - (optional) an object with the following possible keys:
- parent - The HTML element to which the prompt element is appended
- className - A custom class to apply to the prompt element
- contentType - They type of content that is passed in the "content" property
- If left out, it is assumed to be text
- If the value is "node", it's expecting a DOM node
- If the value is "html", it's expecting an HTML string
- content - Content to display in the alert. Type must match the value passed into contentType
- trim - Whether to trim whitespace on both sides of the user input on submit
- validate - A function that takes one parameter - the user input - and returns whether that input is valid
- invalidError - String to display as an error when the input is not valid
- confirmText - String to display on the "submit" button for the prompt
- onConfirm - The callback to run when the user submits the input
- allowCancel - Whether or not the user is allowed to cancel this prompt
- cancelText - String to display on the "cancel" button for the prompt
- onCancel - The callback to run whent the user cancels
- input - An element to act as the user input element (where the user enters/chooses a value)
- show - Whether or not to show the alert element after it is created
- hide - Whether or not to hide the prompt element after submit
returns an object with the following values:
- element - a reference to the alert DOM element
- blanket - a reference to the blanket element
*/
cap.prompt = function(settings, onConfirm, onCancel)
{
if (typeof settings === 'string')
{
settings = {
content: settings,
onConfirm: onConfirm
};
if (typeof onCancel === 'function')
{
settings.onCancel = onCancel;
settings.allowCancel = true;
}
}
else if (typeof settings === 'undefined')
{
settings = {};
}
var box = document.createElement('div'),
input = document.createElement(settings.input || 'input'),
okay = document.createElement('input'),
cancel,
content,
buttons = document.createElement('div'),
parent = settings.parent || document.body,
trim = settings.trim !== false,
trimRegex = /(^\s+|\s$)/g,
validate = settings.validate || function(data) {
return /.+/.test(data);
},
confirm = function(e) {
var value = input.value,
handlerReturnValue,
close;
if (trim)
{
value = value.replace(trimRegex, '');
}
if (validate(value))
{
if (typeof settings.onConfirm === 'function')
{
handlerReturnValue = settings.onConfirm(e, value);
close = handlerReturnValue || typeof handlerReturnValue === 'undefined';
}
else
{
close = true;
}
if (close && settings.hide !== false)
{
closeCurrent();
}
}
else
{
empty(error);
error.appendChild(document.createTextNode(settings.invalidError || 'Invalid input'));
box.appendChild(error);
}
return false;
};
box.className = settings.className || 'modal';
error.className = 'error';
if (!settings.input)
{
input.type = 'text';
}
if (!input.className)
{
input.className = 'prompt-input';
}
okay.type = 'button';
okay.className = 'okay';
okay.value = settings.confirmText || 'Okay';
buttons.appendChild(input);
buttons.appendChild(okay);
if (settings.contentType === 'html')
{
content = document.createElement('div');
content.innerHTML = settings.content;
}
else if (settings.contentType === 'node')
{
content = settings.content;
}
else
{
content = document.createElement('p');
content.appendChild(document.createTextNode(settings.content));
}
box.appendChild(content);
box.appendChild(buttons);
okay.addEventListener('click', confirm);
if (settings.submitOnEnter !== false)
{
input.addEventListener('keypress', function(e) {
e = e || window.event;
var key = e.keyCode || e.which;
if (key === 13)
{
confirm(e);
return false;
}
});
}
if (settings.allowCancel)
{
cancel = document.createElement('input')
cancel.type = 'button';
cancel.className = 'cancel';
cancel.value = settings.cancelText || 'Cancel';
cancel.addEventListener('click', function(e) {
var close,
handlerReturnValue;
if (typeof settings.onCancel === 'function')
{
handlerReturnValue = settings.onCancel(e);
close = handlerReturnValue || typeof handlerReturnValue === 'undefined';
}
else
{
close = true;
}
if (close && settings.hide !== false)
{
closeCurrent();
}
return false;
});
buttons.appendChild(cancel);
}
current = box;
if (settings.show !== false)
{
showCurrent(parent);
input.focus();
}
return {
element: box,
blanket: blanket
}
}
return cap;
})();