forked from cferdinandi/validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate.js
636 lines (499 loc) · 17.6 KB
/
validate.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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/*!
* validate v1.4.1: A lightweight form validation script that augments native HTML5 form validation elements and attributes.
* (c) 2018 Chris Ferdinandi
* MIT License
* http://github.com/cferdinandi/validate
*/
(function (root, factory) {
if ( typeof define === 'function' && define.amd ) {
define([], factory(root));
} else if ( typeof exports === 'object' ) {
module.exports = factory(root);
} else {
root.validate = factory(root);
}
})(typeof global !== 'undefined' ? global : this.window || this.global, (function (root) {
'use strict';
//
// Variables
//
var validate = {}; // Object for public APIs
var supports = 'querySelector' in document && 'addEventListener' in root; // Feature test
var settings;
var timeout;
// Default settings
var defaults = {
// Classes and Selectors
selector: '[data-validate]',
fieldClass: 'error',
errorClass: 'error-message',
// Messages
messageValueMissing: 'Please fill out this field.',
messageValueMissingSelect: 'Please select a value.',
messageValueMissingSelectMulti: 'Please select at least one value.',
messageTypeMismatchEmail: 'Please enter an email address.',
messageTypeMismatchURL: 'Please enter a URL.',
messageTooShort: 'Please lengthen this text to {minLength} characters or more. You are currently using {length} characters.',
messageTooLong: 'Please shorten this text to no more than {maxLength} characters. You are currently using {length} characters.',
messagePatternMismatch: 'Please match the requested format.',
messageBadInput: 'Please enter a number.',
messageStepMismatch: 'Please select a valid value.',
messageRangeOverflow: 'Please select a value that is no more than {max}.',
messageRangeUnderflow: 'Please select a value that is no less than {min}.',
messageGeneric: 'The value you entered for this field is invalid.',
// Live Validation
useLiveValidation: false,
rewardEarlyPunishLate: true,
punishLateTimeout: 1000,
// Form Submission
disableSubmit: false,
onSubmit: function () {},
// Callbacks
beforeShowError: function () {},
afterShowError: function () {},
beforeRemoveError: function () {},
afterRemoveError: function () {}
};
//
// Methods
//
// Element.matches() polyfill
if (!Element.prototype.matches) {
Element.prototype.matches =
Element.prototype.matchesSelector ||
Element.prototype.mozMatchesSelector ||
Element.prototype.msMatchesSelector ||
Element.prototype.oMatchesSelector ||
Element.prototype.webkitMatchesSelector ||
function(s) {
var matches = (this.document || this.ownerDocument).querySelectorAll(s),
i = matches.length;
while (--i >= 0 && matches.item(i) !== this) {}
return i > -1;
};
}
/**
* Merge two or more objects. Returns a new object.
* @private
* @param {Boolean} deep If true, do a deep (or recursive) merge [optional]
* @param {Object} objects The objects to merge together
* @returns {Object} Merged values of defaults and options
*/
var extend = function () {
// Variables
var extended = {};
var deep = false;
var i = 0;
var length = arguments.length;
// Check if a deep merge
if ( Object.prototype.toString.call( arguments[0] ) === '[object Boolean]' ) {
deep = arguments[0];
i++;
}
// Merge the object into the extended object
var merge = function (obj) {
for ( var prop in obj ) {
if ( Object.prototype.hasOwnProperty.call( obj, prop ) ) {
// If deep merge and property is an object, merge properties
if ( deep && Object.prototype.toString.call(obj[prop]) === '[object Object]' ) {
extended[prop] = extend( true, extended[prop], obj[prop] );
} else {
extended[prop] = obj[prop];
}
}
}
};
// Loop through each object and conduct a merge
for ( ; i < length; i++ ) {
var obj = arguments[i];
merge(obj);
}
return extended;
};
/**
* Get the closest matching element up the DOM tree.
* @private
* @param {Element} elem Starting element
* @param {String} selector Selector to match against
* @return {Boolean|Element} Returns null if not match found
*/
var getClosest = function ( elem, selector ) {
for ( ; elem && elem !== document; elem = elem.parentNode ) {
if ( elem.matches( selector ) ) return elem;
}
return null;
};
/**
* Validate a form field
* @public
* @param {Node} field The field to validate
* @param {Object} options User options
* @return {String} The error message
*/
validate.hasError = function (field, options) {
// Merge user options with existing settings or defaults
var localSettings = extend(settings || defaults, options || {});
// Don't validate submits, buttons, file and reset inputs, and disabled fields
if (field.disabled || field.type === 'file' || field.type === 'reset' || field.type === 'submit' || field.type === 'button') return;
// Get validity
var validity = field.validity;
// If valid, return null
if (validity.valid) return;
// If field is required and empty
if (validity.valueMissing) {
if (field.type === 'select-multiple') return localSettings.messageValueMissingSelectMulti;
if (field.type === 'select-one') return localSettings.messageValueMissingSelect;
return localSettings.messageValueMissing;
}
// If not the right type
if (validity.typeMismatch) {
// Email
if (field.type === 'email') return localSettings.messageTypeMismatchEmail;
// URL
if (field.type === 'url') return localSettings.messageTypeMismatchURL;
}
// If too short
if (validity.tooShort) return localSettings.messageTooShort.replace('{minLength}', field.getAttribute('minLength')).replace('{length}', field.value.length);
// If too long
if (validity.tooLong) return localSettings.messageTooLong.replace('{minLength}', field.getAttribute('maxLength')).replace('{length}', field.value.length);
// If number input isn't a number
if (validity.badInput) return localSettings.messageBadInput;
// If a number value doesn't match the step interval
if (validity.stepMismatch) return localSettings.messageStepMismatch;
// If a number field is over the max
if (validity.rangeOverflow) return localSettings.messageRangeOverflow.replace('{max}', field.getAttribute('max'));
// If a number field is below the min
if (validity.rangeUnderflow) return localSettings.messageRangeUnderflow.replace('{min}', field.getAttribute('min'));
// If pattern doesn't match
if (validity.patternMismatch) {
// If pattern info is included, return custom error
if (field.hasAttribute('title')) return field.getAttribute('title');
// Otherwise, generic error
return localSettings.messagePatternMismatch;
}
// If a custom error is set
if (validity.customError) {
return (localSettings.messageCustom && localSettings.messageCustom[field.validationMessage]) || field.validationMessage;
}
// If all else fails, return a generic catchall error
return localSettings.messageGeneric;
};
/**
* Show an error message on a field
* @public
* @param {Node} field The field to show an error message for
* @param {String} error The error message to show
* @param {Object} options User options
*/
validate.showError = function (field, error, options) {
// Merge user options with existing settings or defaults
var localSettings = extend(settings || defaults, options || {});
// Before show error callback
localSettings.beforeShowError(field, error);
// Add error class to field
field.classList.add(localSettings.fieldClass);
// If the field is a radio button and part of a group, error all and get the last item in the group
if (field.type === 'radio' && field.name) {
var group = document.getElementsByName(field.name);
if (group.length > 0) {
for (var i = 0; i < group.length; i++) {
if (group[i].form !== field.form) continue; // Only check fields in current form
group[i].classList.add(localSettings.fieldClass);
}
field = group[group.length - 1];
}
}
// Get field id or name
var id = field.id || field.name;
if (!id) return;
// Check if error message field already exists
// If not, create one
var message = field.form.querySelector('.' + localSettings.errorClass + '#error-for-' + id );
if (!message) {
message = document.createElement('div');
message.className = localSettings.errorClass;
message.id = 'error-for-' + id;
// If the field is a radio button or checkbox, insert error after the label
var label;
if (field.type === 'radio' || field.type ==='checkbox') {
label = field.form.querySelector('label[for="' + id + '"]') || getClosest(field, 'label');
if (label) {
label.parentNode.insertBefore( message, label.nextSibling );
}
}
// Otherwise, insert it after the field
if (!label) {
field.parentNode.insertBefore( message, field.nextSibling );
}
}
// Add ARIA role to the field
field.setAttribute('aria-describedby', 'error-for-' + id);
// Update error message
message.innerHTML = error;
// Remove any existing styles hiding the error message
message.style.display = '';
message.style.visibility = '';
// After show error callback
localSettings.afterShowError(field, error);
};
/**
* Remove an error message from a field
* @public
* @param {Node} field The field to remove the error from
* @param {Object} options User options
*/
validate.removeError = function (field, options) {
// Merge user options with existing settings or defaults
var localSettings = extend(settings || defaults, options || {});
// Before remove error callback
localSettings.beforeRemoveError(field);
// Remove ARIA role from the field
field.removeAttribute('aria-describedby');
// Remove error class to field
field.classList.remove(localSettings.fieldClass);
// If the field is a radio button and part of a group, remove error from all and get the last item in the group
if (field.type === 'radio' && field.name) {
var group = document.getElementsByName(field.name);
if (group.length > 0) {
for (var i = 0; i < group.length; i++) {
if (group[i].form !== field.form) continue; // Only check fields in current form
group[i].classList.remove(localSettings.fieldClass);
}
field = group[group.length - 1];
}
}
// Get field id or name
var id = field.id || field.name;
if (!id) return;
// Check if an error message is in the DOM
var message = field.form.querySelector('.' + localSettings.errorClass + '#error-for-' + id + '');
if (!message) return;
// If so, hide it
message.innerHTML = '';
message.style.display = 'none';
message.style.visibility = 'hidden';
// After remove error callback
localSettings.afterRemoveError(field);
};
/**
* Set or remove a custom error
* @public
* @param {Node} field The field to set the custom error on
* @param {String} errorMessage Custom error message or empty string
*/
validate.setCustomError = function (field, errorMessage) {
field.setCustomValidity(errorMessage);
field.dispatchEvent(new Event('customValiditySet'));
};
/**
* Add the `novalidate` attribute to all forms
* @private
* @param {Boolean} remove If true, remove the `novalidate` attribute
*/
var addNoValidate = function (remove) {
var forms = document.querySelectorAll(settings.selector);
for (var i = 0; i < forms.length; i++) {
if (remove) {
forms[i].removeAttribute('novalidate');
continue;
}
forms[i].setAttribute('novalidate', true);
}
};
/**
* Check field validity when it loses focus
* @private
* @param {Event} event The blur event
*/
var blurHandler = function (event) {
// Only run if the field is in a form to be validated
if (!event.target.form || !event.target.form.matches(settings.selector)) return;
// Validate the field
var error = validate.hasError(event.target);
// If there's an error, show it
if (error) {
validate.showError(event.target, error);
return;
}
// Otherwise, remove any errors that exist
validate.removeError(event.target);
};
/**
* Check radio and checkbox field validity when clicked
* @private
* @param {Event} event The click event
*/
var clickHandler = function (event) {
// Only run if the field is in a form to be validated
if (!event.target.form || !event.target.form.matches(settings.selector)) return;
// Only run if the field is a checkbox or radio
var type = event.target.getAttribute('type');
if (!(type === 'checkbox' || type === 'radio')) return;
// Validate the field
var error = validate.hasError(event.target);
// If there's an error, show it
if (error) {
validate.showError(event.target, error);
return;
}
// Otherwise, remove any errors that exist
validate.removeError(event.target);
};
/**
* Check text field validity when typing
* @private
* @param {Event} event The keyup event
*/
var keyupHandler = function (event) {
clearTimeout(timeout);
// Only run if the field is in a form to be validated
if (!event.target.form || !event.target.form.matches(settings.selector)) return;
// Only run if the field is some kind of text field
var type = event.target.getAttribute('type');
var textLikeInputs = ['text', 'email', 'url', 'tel', 'number', 'password', 'search', 'date', 'time', 'datetime', 'month', 'week'];
if (!(textLikeInputs.indexOf(type) > -1 || event.target.nodeName === 'TEXTAREA')) return;
// Validate the field
var error = validate.hasError(event.target);
// If there's an error, show it
if (error) {
if (settings.rewardEarlyPunishLate === true) {
timeout = setTimeout((function () {
validate.showError(event.target, error);
}), settings.punishLateTimeout);
} else {
validate.showError(event.target, error);
}
return;
}
// Otherwise, remove any errors that exist
validate.removeError(event.target);
};
/**
* Check select field validity on change
* @private
* @param {Event} event The change event
*/
var changeHandler = function (event) {
// Only run if the field is in a form to be validated
if (!event.target.form || !event.target.form.matches(settings.selector)) return;
// Only run if the field is a select
var type = event.target.getAttribute('type');
if (!(event.target.nodeName === 'SELECT')) return;
// Validate the field
var error = validate.hasError(event.target);
// If there's an error, show it
if (error) {
validate.showError(event.target, error);
return;
}
// Otherwise, remove any errors that exist
validate.removeError(event.target);
};
/**
* Check field validity when a custom error is set or removed
* @private
* @param {Event} event The customValiditySet event
*/
var customHandler = function (event) {
// Only run if the field is in a form to be validated
if (!event.target.form || !event.target.form.matches(settings.selector)) return;
// Validate the field
var error = validate.hasError(event.target);
// If there's an error, show it
if (error) {
validate.showError(event.target, error);
return;
}
// Otherwise, remove any errors that exist
validate.removeError(event.target);
};
/**
* Check all fields on submit
* @private
* @param {Event} event The submit event
*/
var submitHandler = function (event) {
// Only run on forms flagged for validation
if (!event.target.matches(settings.selector)) return;
// Get all of the form elements
var fields = event.target.elements;
// Validate each field
// Store the first field with an error to a variable so we can bring it into focus later
var hasErrors;
for (var i = 0; i < fields.length; i++) {
var error = validate.hasError(fields[i]);
if (error) {
validate.showError(fields[i], error);
if (!hasErrors) {
hasErrors = fields[i];
}
} else {
validate.removeError(fields[i]);
}
}
// Prevent form from submitting if there are errors or submission is disabled
if (hasErrors || settings.disableSubmit) {
event.preventDefault();
}
// If there are errrors, focus on first element with error
if (hasErrors) {
hasErrors.focus();
return;
}
// Otherwise, submit the form
settings.onSubmit(event.target, fields);
};
/**
* Destroy the current initialization.
* @public
*/
validate.destroy = function () {
// If plugin isn't already initialized, stop
if ( !settings ) return;
// Remove event listeners
document.removeEventListener('blur', blurHandler, true);
document.removeEventListener('click', clickHandler, false);
document.removeEventListener('submit', submitHandler, false);
if (settings.useLiveValidation) {
document.removeEventListener('change', changeHandler, true);
document.removeEventListener('keyup', keyupHandler, true);
}
// Remove all errors
var fields = document.querySelectorAll(settings.errorClass);
for (var i = 0; i < fields.length; i++) {
validate.removeError(fields[i]);
}
// Remove `novalidate` from forms
addNoValidate(true);
// Reset variables
settings = null;
};
/**
* Initialize Validate
* @public
* @param {Object} options User settings
*/
validate.init = function (options) {
// feature test
if (!supports) return;
// Destroy any existing initializations
validate.destroy();
// Merge user options with defaults
settings = extend(defaults, options || {});
// Add the `novalidate` attribute to all forms
addNoValidate();
// Event listeners
document.addEventListener('blur', blurHandler, true);
document.addEventListener('click', clickHandler, true);
document.addEventListener('submit', submitHandler, false);
document.addEventListener('customValiditySet', customHandler, true);
if (settings.useLiveValidation) {
document.addEventListener('change', changeHandler, true);
document.addEventListener('keyup', keyupHandler, true);
}
};
//
// Public APIs
//
return validate;
}));