-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsf.js
executable file
·515 lines (382 loc) · 11.2 KB
/
jsf.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
/**
* The JSF functions enable client side validation of forms, with
* respect to relevance, requiredness, read-only-ness, calculated
* values and constraints. These notions can be applied on a control,
* or on a fieldset.
*/
var jsf = {};
/**
* JavaScript interpreter for expressions.
*/
jsf.JavaScriptInterpreter = function() {
};
/**
* Try int, otherwise string...
*/
jsf.JavaScriptInterpreter.prototype.typeValue = function(val) {
if (parseInt(val) == val) {
return parseInt(val);
} else {
return val;
}
};
/**
* Evaluate the code provided.
* @param expr Expression to evaluate
* @param data Data dict as returned by jQuery(form).serializeArray()
* @param def Default value
*/
jsf.JavaScriptInterpreter.prototype.eval = function(expr, data, def) {
var self = this;
$.each(data, function(key, value) {
data[key] = self.typeValue(value);
});
try {
return (new Function("with(this) { return " + expr + "}")).call(data);
} catch (e) {
return def;
}
};
/**
* The Validator class wraps a form and takes care of validation on
* init, on changes and on submit.
* @param form jQuery form
* @param options Array of overrides for the validator class.
*/
jsf.Validator = function(form, options) {
var self = this;
// list of inputs that actually DO something to others
self.effective_inputs = [];
self.check_inputs = [];
self.interpreter = new jsf.JavaScriptInterpreter();
self.form = form;
self.valid = true;
// Some settings
self.requiredClass = "required";
self.errorClass = "error";
self.irrelevantClass = "irrelevant";
self.readonlyClass = "readonly";
self.constraintClass = "constraint-violation";
$.extend(self, options);
self.init();
// Do initial round to calulate relevance, requiredness, etc.
self.validate();
// Set validation handling on changes
self.form.find(":input").change(function(e) {
var input = $(e.currentTarget);
self.validate(false, input,
self.effective_inputs[input.attr("name")] || []);
});
self.form.submit(function(e) {
try {
self.validate(true);
}
catch(err) {
// pass
}
return self.valid;
});
};
/**
* Preform some rough checking on potential variables in the expression.
* @param input The input that holds the expression
* @param expr Expression
*/
jsf.Validator.prototype.findEffectiveInputs = function(input, expr) {
var self = this;
var matches = expr.match(/\w+/g);
if (matches) {
for (var i = 0; i < matches.length; i++) {
if (self.form.find(":input[name='" + matches[i] + "']").length) {
if (!self.effective_inputs[matches[i]]) {
self.effective_inputs[matches[i]] = [];
}
self.effective_inputs[matches[i]].push(input);
}
}
}
};
/**
* Initialize validator
*/
jsf.Validator.prototype.init = function() {
var self = this;
var input, other_input, expr;
self.form.find(":input,fieldset,.form-group").each(function() {
input = $(this);
$.each(['required', 'relevant', 'readonly', 'calculate', 'constraint'],
function(idx, expr) {
if (self.getExpression(input, expr)) {
self.check_inputs.push(input);
self.findEffectiveInputs(input, self.getExpression(input, expr));
}});
});
};
/**
* Selector that finds the element whereupon callbacks
* operate. Override this if you use, for example, div's around your
* input elements.
* @param elt Input element that triggered the callback
*/
jsf.Validator.prototype.selectInput = function(elt) {
return elt;
};
/**
* Called whenever some input is required or unrequired.
* @param elt Input element that was validated
* @param req boolean specifying requiredness
*/
jsf.Validator.prototype.requiredCallback = function(elt, req) {
elt = this.selectInput(elt);
if (req) {
elt.addClass(this.requiredClass);
} else {
elt.removeClass(this.requiredClass);
}
};
/**
* Called whenever some input's relevance changes
* @param elt Input element that was validated
* @param req boolean specifying relevance
*/
jsf.Validator.prototype.relevantCallback = function(elt, rel) {
elt = this.selectInput(elt);
if (rel) {
elt.removeClass(this.irrelevantClass);
} else {
elt.addClass(this.irrelevantClass);
}
};
/**
* Called when constraints are checked.
* @param elt Input element that was checked
* @param ok Whether the constraint was met or not
*/
jsf.Validator.prototype.constraintCallback = function(elt, ok) {
elt = this.selectInput(elt);
if (!ok) {
elt.addClass(this.constraintClass);
} else {
elt.removeClass(this.constraintClass);
}
};
/**
* Called when readonly-ness is checked
* @param elt Input element that triggered the callback
* @param ro Read only or not
*/
jsf.Validator.prototype.readonlyCallback = function(input, ro) {
elt = this.selectInput(input);
if (ro) {
elt.addClass(this.readonlyClass);
input.attr('disabled','disabled');
} else {
elt.removeClass(this.readonlyClass);
input.removeAttr('disabled');
}
};
/**
* Calculate callback upon calculations
* @param elt Input element that triggered the callback
* @param val Value that was calculated
*/
jsf.Validator.prototype.calculateCallback = function(elt, val) {
elt.val(val);
};
/**
* Called when an error is found.
* @param elt Input element that has the error
* @param err Error or not
* @param errType One of "required", "constraint"
*/
jsf.Validator.prototype.errorCallback = function(elt, err, errType) {
elt = this.selectInput(elt);
if (err) {
elt.addClass(this.errorClass);
} else {
elt.removeClass(this.errorClass);
}
};
/**
* Do the actual validation.
* @param processErrors Do error handling if set to true.
* @param tgtInput Input that triggered the validate action.
* @param inputs List of input elements to check. If not provided, check all.
*/
jsf.Validator.prototype.validate = function(processErrors, tgtInput, inputs) {
var self = this;
var data = {};
var input;
self.valid = true;
self.form.addClass("validate");
if (inputs === undefined) {
inputs = self.check_inputs;
}
self.form.find(":input").each(function() {
data[$(this).attr("name")] = self.getValue($(this));
});
for (var i = 0; i < inputs.length; i++) {
input = inputs[i];
if (self.checkRelevant(input, data)) {
self.checkRequired(input, data, processErrors);
self.checkConstraint(input, data, input.is(tgtInput) ? true : processErrors);
}
self.checkReadonly(input, data);
self.calculate(input, data);
}
self.form.removeClass("validate");
};
/**
* Check whether the input has a value. This is different for input
* types, e.g. checkboxes and radio. If the given input is a group,
* check all descendant elements.
* @param input Input element (jQuery wrapped)
*/
jsf.Validator.prototype.hasValue = function(input) {
var self = this;
if (input.is(":checkbox")) {
return input.is(":checked");
} else if (input.is(":radio")) {
return this.form.find(":radio[name=" + input.attr("name") + "]:checked").length;
} else if (input.is(".form-group") || input.is("fieldset")) {
var hasVal = false;
input.find(":input").each(function() {
if (self.hasValue($(this))) {
hasVal = true;
}
});
return hasVal;
} else {
return input.val();
}
};
/**
* Get the input value. This is different for input types,
* e.g. checkboxes and radio.
*/
jsf.Validator.prototype.getValue = function(input) {
if (input.is(":checkbox")) {
return input.is(":checked");
} else if (input.is(":radio")) {
return this.form.find(":radio[name=" + input.attr("name") + "]:checked").val();
} else {
return input.val();
}
};
/**
* Get the epression for the given type.
* @param input Input element
* @param type One of required, relevant, readonly, constraint or calculate
*/
jsf.Validator.prototype.getExpression = function(input, type) {
return input.attr("jsf:" + type) || "";
};
/**
* Check on requiredness
* @param input Element to check
* @param data jQuery data array
* @param processErrors Do error handling or skip
*/
jsf.Validator.prototype.checkRequired = function(input, data, processErrors) {
var self = this;
var required_expr = self.getExpression(input, 'required');
if (!required_expr) {
return false;
}
var required = self.eval(required_expr, data, false);
self.requiredCallback(input, required);
if (processErrors) {
self.errorCallback(input, required && !self.hasValue(input), "required");
}
if (required && !self.hasValue(input)) {
self.valid = false;
}
return required;
};
/**
* Check on relevance. This check travels up the DOM looking for
* parents that hold relevance expressions. All these expressions are
* concatenated with an 'and' clause, so all must be relevant for the
* control to be relevant.
*
* @param input Element to check
* @param data jQuery data array
*/
jsf.Validator.prototype.checkRelevant = function(input, data) {
var self = this;
var relevant_expr = self.getExpression(input, 'relevant') || 'true';
var parent_expr;
input.parents("fieldset").each(function() {
parent_expr = self.getExpression($(this), "relevant");
if (parent_expr) {
relevant_expr += " && (" + parent_expr + ")";
}
});
if (!relevant_expr) {
return true;
}
var relevant = self.eval(relevant_expr, data, true);
self.relevantCallback(input, relevant);
return relevant;
};
/**
* Check whether input should be read-only
* @param input Element to check
* @param data jQuery data array
*/
jsf.Validator.prototype.checkReadonly = function(input, data) {
var readonly_expr = this.getExpression(input, 'readonly');
if (!readonly_expr) {
return false;
}
var readonly = this.eval(readonly_expr, data, false);
this.readonlyCallback(input, readonly);
};
/**
* Check whether input value meets constraint
* @param input Element to check
* @param data jQuery data array
* @param processErrors Do error handling or skip
*/
jsf.Validator.prototype.checkConstraint = function(input, data, processErrors) {
var constraint_expr = this.getExpression(input, 'constraint');
if (!constraint_expr) {
return true;
}
var ok = this.eval(constraint_expr, data, true);
this.constraintCallback(input, ok);
if (processErrors) {
this.errorCallback(input, !ok, "constraint");
}
if (!ok) {
this.valid = false;
}
};
/**
* Calculate input value
* @param input Element to check
* @param data jQuery data array
*/
jsf.Validator.prototype.calculate = function(input, data) {
var calculate_expr = this.getExpression(input, 'calculate');
if (!calculate_expr) {
return true;
}
var value = this.eval(calculate_expr, data);
this.calculateCallback(input, value);
};
/**
* Wrapper around the interpreter, so as to keep this pluggable.
* @param expr Expression to evaluate
* @param data Expression context data
* @param def Default value
*/
jsf.Validator.prototype.eval = function(expr, data, def) {
return this.interpreter.eval(expr, data, def);
};
// Extend jQuery objects with the jsf function
$.fn.extend({jsf: function(options) {
this.each(function() {
new jsf.Validator($(this), options);
});
}});