-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormValidation.js
executable file
·82 lines (71 loc) · 1.87 KB
/
FormValidation.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
/**
* validate require form elements
*/
class FormValidation {
/**
*
* @param { string } formSelector - form selector
* @param onInvalid - invalid event callback
* @param onFocusIn - focusin event callback
* @param invalidClassName - class name for invalid input
*/
constructor({ formSelector, onInvalid, onFocusIn, invalidClassName }) {
this.formSelector = formSelector;
this.onInvalid = onInvalid;
this.onFocusIn = onFocusIn;
this.invalidClassName = invalidClassName;
this.init();
}
/**
* handler invalid
* @param { Object } e - default event
* @private
*/
_handlerInvalid = e => {
const { target } = e;
if (target.closest(this.formSelector)) {
e.preventDefault();
target.classList.add(this.invalidClassName);
if (this.onInvalid) {
this.onInvalid(e);
}
}
}
/**
* handler focusin
* @param e - native event
* @private
*/
_handlerFocusIn = e => {
const { target } = e;
if (target.closest(this.formSelector)) {
target.classList.remove(this.invalidClassName);
if (this.onFocusIn) {
this.onFocusIn(e);
}
}
}
/**
* init events for validation
* @return void
*/
events() {
document.addEventListener('invalid', this._handlerInvalid, true);
document.addEventListener('focusin', this._handlerFocusIn, true);
}
/**
* init formValidation
* @return void
*/
init() {
this.events();
}
/**
* destroy formValidation
* @return void
*/
destroy() {
document.removeEventListener('invalid', this._handlerInvalid, true);
document.removeEventListener('focusin', this._handlerFocusIn, true);
}
}