-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular-validation-tools.js
230 lines (181 loc) · 7.51 KB
/
angular-validation-tools.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
(function(angular, module, define) {
function exportModule(angularModule) {
if (module && module.exports) {
module.exports = angularModule;
} else {
if ((typeof define === 'function') && define.amd) {
define(function () { return angularModule; });
}
}
}
var angularModule = angular.module('jameslk.angular-validation-tools', [])
.provider('ValidationToolsConfig', function() {
var config = this;
this.$get = function() {
return config;
};
function RuleError(errorName, errorMessage) {
this.errorName = errorName;
this.errorMessage = errorMessage;
}
this._ruleErrors = {};
this.getRuleErrors = function() {
return this._ruleErrors;
};
this.getRuleError = function(rule) {
return this._ruleErrors[rule];
};
this.setRuleErrors = function(ruleErrors) {
this._ruleErrors = ruleErrors;
return this;
};
this.setRuleError = function(errorName, errorMessage) {
this._ruleErrors[errorName] = new RuleError(errorName, errorMessage);
return this;
}
this
.setRuleError('required', 'This field is required')
.setRuleError('email', 'A valid email is required')
.setRuleError('minlength', function(input) {
return 'Must be longer than ' + input.attr('ng-minlength');
})
;
})
.directive('vtValidationConstraints', function($compile) {
function applyRuleErrors(element, ruleErrors) {
for (var directiveName in ruleErrors) {
if (ruleErrors.hasOwnProperty(directiveName)) {
var ruleValue = ruleErrors[directiveName];
element.attr(directiveName, ruleValue ? ruleValue : directiveName);
}
}
}
return {
restrict: 'A',
terminal: true,
priority: 1000,
link: function(scope, element, attrs) {
var constraints = scope[attrs.vtValidationConstraints];
for (var elementId in constraints) {
if (constraints.hasOwnProperty(elementId)) {
var ruleErrors = constraints[elementId];
applyRuleErrors(element.find('#' + elementId), ruleErrors)
}
}
element.attr('vt-has-validations', 'vt-has-validations');
element.attr('novalidate', 'novalidate'); // turn off HTML5 validations if not already
element.removeAttr('vt-validation-constraints'); // so we don't have a recursive loop
$compile(element)(scope);
}
}
})
.directive('vtHasValidations', function() {
return {
restrict: 'A',
require: 'form',
controller: function($scope) {
this.onValidationErrors = function(callback) {
$scope.$on('ValidationTools.validationError', callback);
};
},
link: function(scope, element, attrs, formController) {
element.on('submit', function(event) {
if (formController.$invalid) {
event.preventDefault();
scope.$broadcast('ValidationTools.validationError');
}
});
}
}
})
.directive('vtValidationErrors', function(ValidationToolsConfig) {
function getInputElement(attrs) {
if (!attrs.hasOwnProperty('forId')) {
throw 'for-id needs to be set for validationError element';
}
var inputElement = angular.element('#' + attrs.forId);
if (!inputElement.length) {
throw 'Cannot find element with id ' + attrs.forId;
}
if (!inputElement.attr('name')) {
throw 'Input ' + attrs.forId + ' needs to have a name attribute for validation to work';
}
return inputElement;
}
function setErrorMessagesFromStatus(scope, errorStatus) {
var validationRuleErrors = ValidationToolsConfig.getRuleErrors();
scope.errors = [];
for (var errorName in errorStatus) {
if (errorStatus.hasOwnProperty(errorName) && errorStatus[errorName]) {
if (validationRuleErrors.hasOwnProperty(errorName)) {
var errorMessage = validationRuleErrors[errorName].errorMessage;
if (typeof errorMessage === 'function') {
errorMessage = errorMessage(scope._inputElement);
} else if (!errorMessage) {
continue; // Skip blank error messages
}
} else {
var errorMessage = 'Invalid: ' + errorName;
}
scope.errors.push(errorMessage);
}
}
}
return {
require: '^form',
scope: true,
controller: function($scope) {
$scope.validation = null;
$scope.errors = [];
$scope._inputElement = null;
$scope.valid = true;
$scope.invalid = false;
},
link: function(scope, element, attrs, formController) {
scope._inputElement = getInputElement(attrs);
var elementName = scope._inputElement.attr('name');
scope.validation = formController[elementName];
scope.$watch('validation.$error', function(errorStatus) {
setErrorMessagesFromStatus(scope, errorStatus);
}, true);
scope.$watch('validation.$valid', function(valid) {
scope.valid = scope.validation.$valid;
scope.invalid = scope.validation.$invalid;
});
}
}
})
.directive('vtShowOnSubmit', function() {
function show(element) {
element.addClass('ng-show');
element.removeClass('ng-hide');
}
function hide(element) {
element.addClass('ng-hide');
element.removeClass('ng-show');
}
function showOnSubmit(scope, element, hasValidationsController) {
hide(element);
hasValidationsController.onValidationErrors(function() {
show(element);
});
}
return {
restrict: 'AC',
require: [
'^vtHasValidations',
'vtValidationErrors' // this is required to ensure we have the correct scope
],
link: function(scope, element, attrs, controllers) {
var hasValidationsController = controllers[0]
validationErrorsController = controllers[1];
showOnSubmit(scope, element, hasValidationsController);
}
}
});
exportModule(angularModule);
})(
angular,
typeof module !== 'undefined' ? module : null,
typeof define !== 'undefined' ? define : null
);