-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathValidationsFactory.js
More file actions
412 lines (389 loc) · 13.5 KB
/
ValidationsFactory.js
File metadata and controls
412 lines (389 loc) · 13.5 KB
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
import { validators } from './mixins/ValidationRules';
import DataProvider from './DataProvider';
import { get, set, merge } from 'lodash';
import { Parser } from 'expr-eval';
let globalObject = typeof window === 'undefined'
? global
: window;
let pagesValidated = [];
class Validations {
screen = null;
firstPage = 0;
data = {};
insideLoop = false;
constructor(element, options) {
this.element = element;
Object.assign(this, options);
}
/**
* Add a Vuelidate rule for the element.
* Ex.
* {
* form_input_1: {
* required,
* minLength: minLength(6)
* }
* }
*/
async addValidations(validations) {
throw 'Abstract method addValidations not implemented', validations;
}
/**
* Check if element/container is visible.
*/
isVisible() {
// Disable validations if field is hidden
const visibleInDevice =
this.element.visibleInDevice === null || this.element.visibleInDevice === undefined
? true
: this.element.visibleInDevice;
if (!visibleInDevice) {
return false;
}
let visible = true;
if (this.element.config.conditionalHide) {
try {
visible = !!Parser.evaluate(this.element.config.conditionalHide, this.data);
} catch (error) {
visible = false;
}
}
return visible;
}
}
/**
* Add validations for a group of fields
*/
class ArrayOfFieldsValidations extends Validations {
async addValidations(validations) {
for (const item of this.element) {
await ValidationsFactory(item, { screen: this.screen, data: this.data, parentVisibilityRule: this.parentVisibilityRule, insideLoop: this.insideLoop }).addValidations(validations);
}
}
}
/**
* Add validations for a screen definition
*/
class ScreenValidations extends Validations {
async addValidations(validations) {
// add validations for page 1
if (this.element.config[this.firstPage]) {
pagesValidated = [this.firstPage];
const screenValidations = ValidationsFactory(this.element.config[this.firstPage].items, { screen: this.element, data: this.data });
await screenValidations.addValidations(validations);
pagesValidated = [];
}
}
}
/**
* Add validations for a nested screen
*/
class FormNestedScreenValidations extends Validations {
async addValidations(validations) {
// Disable validations if field is hidden
if (!this.isVisible()) {
return;
}
const nestedScreen = await this.loadNestedScreen(this.element.config.screen);
if (nestedScreen && nestedScreen.config) {
const definition = nestedScreen.config;
let parentVisibilityRule = this.parentVisibilityRule ? this.parentVisibilityRule : this.element.config.conditionalHide;
if (definition && definition[0] && definition[0].items) {
await ValidationsFactory(definition[0].items, { screen: nestedScreen, data: this.data, parentVisibilityRule }).addValidations(validations);
}
}
}
async loadNestedScreen(id) {
if (!id) {
return null;
}
if (!globalObject['nestedScreens']) {
globalObject['nestedScreens'] = {};
}
if (globalObject.nestedScreens['id_' + id]) {
return {config: globalObject.nestedScreens['id_' + id]};
}
const response = await DataProvider.getScreen(id);
globalObject.nestedScreens['id_' + id] = response.data.config;
return {config: response.data};
}
async loadScreen(id) {
if (!id) {
return null;
}
if (!globalObject['nestedScreens']) {
globalObject['nestedScreens'] = {};
}
if (globalObject.nestedScreens['id_' + id]) {
return globalObject.nestedScreens['id_' + id];
}
const response = await DataProvider.getScreen(id);
globalObject.nestedScreens['id_' + id] = response.data.config;
return response.data.config;
}
}
/**
* Add validations for a loop
*/
class FormLoopValidations extends Validations {
async addValidations(validations) {
// Disable validations if field is hidden
if (!this.isVisible()) {
return;
}
set(validations, this.element.config.name, {});
const loopField = get(validations, this.element.config.name);
loopField['$each'] = {};
this.checkForSiblings(validations);
const firstRow = (get(this.data, this.element.config.name) || [{}])[0];
await ValidationsFactory(this.element.items, { screen: this.screen, data: {_parent: this.data, ...firstRow }, parentVisibilityRule: this.element.config.conditionalHide, insideLoop: true }).addValidations(loopField['$each']);
}
checkForSiblings(validations) {
const siblings = [];
const siblingValidations = [];
// Find loops that reference the same variable
this.screen.config.forEach(page => {
if (!page || !page.items) {
return;
}
page.items.filter(item => {
if (item.component === 'FormLoop' && item.config.name === this.element.config.name) {
siblings.push(item);
}
});
// Get siblings validations
if (siblings) {
siblings.forEach(sibling => {
sibling.items.filter(item => {
if (!item.config.validation) {
return;
}
item.config.validation.forEach(validation => {
const rule = this.camelCase(validation.value.split(':')[0]);
const validationFn = validators[rule];
const obj = {};
let ruleObj = {};
ruleObj[rule] = validationFn;
obj[item.config.name] = ruleObj;
merge(siblingValidations, obj);
});
});
});
}
});
if (Object.keys(siblingValidations).length != 0) {
// Update the loop validations with its siblings.
const loopValidations = get(validations, this.element.config.name);
if (loopValidations.hasOwnProperty('$each')) {
merge(loopValidations['$each'], siblingValidations);
}
set(validations[this.element.config.name]['$each'], loopValidations);
}
}
camelCase(name) {
return name.replace(/_\w/g, m => m.substr(1, 1).toUpperCase());
}
}
/**
* Add validations for a multicolumn
*/
class FormMultiColumnValidations extends Validations {
async addValidations(validations) {
// Disable validations if field is hidden
if (!this.isVisible()) {
return;
}
await ValidationsFactory(this.element.items, { screen: this.screen, data: this.data, parentVisibilityRule: this.element.config.conditionalHide }).addValidations(validations);
}
}
/**
* Add validations of a page accessed by a navigation button
*/
class PageNavigateValidations extends Validations {
async addValidations(validations) {
// Disable validations if field is hidden
if (!this.isVisible()) {
return;
}
const screenNumber = this.element.config.eventData;
let screenName = 'Empty Screen';
if (this.screen.config[screenNumber] && this.screen.config[screenNumber].name) {
screenName = this.screen.config[screenNumber].name;
}
const screenPageId = `${screenName}-${screenNumber}`;
if (pagesValidated.length > 0 && !pagesValidated.includes(screenPageId)) {
if (this.screen.config[screenNumber] && this.screen.config[screenNumber].items) {
pagesValidated.push(screenPageId);
await ValidationsFactory(this.screen.config[this.element.config.eventData].items, { screen: this.screen, data: this.data }).addValidations(validations);
}
}
}
}
/**
* Add validations for a form element
*/
class FormElementValidations extends Validations {
async addValidations(validations) {
// Disable validations if field is hidden
if (!this.isVisible()) {
return;
}
if (this.element.config && this.element.config.readonly) {
//readonly elements do not need validation
return;
}
if (this.element.config && this.element.config.disabled) {
//disabled elements do not need validation
return;
}
if (!(this.element.config && this.element.config.name && typeof this.element.config.name === 'string' && this.element.config.name.match(/^[a-zA-Z_][0-9a-zA-Z_.]*$/))) {
//element invalid
return;
}
const fieldName = this.element.config.name;
const validationConfig = this.element.config.validation;
const conditionalHide = this.element.config.conditionalHide;
const parentVisibilityRule = this.parentVisibilityRule;
const insideLoop = this.insideLoop || false;
const deviceConfig = this.element.config.deviceVisibility
? this.element.config.deviceVisibility
: { showForDesktop: true, showForMobile: true };
set(validations, fieldName, get(validations, fieldName, {}));
const fieldValidation = get(validations, fieldName);
if (validationConfig instanceof Array) {
validationConfig.forEach((validation) => {
const rule = this.camelCase(validation.value.split(':')[0]);
if (!rule) {
return;
}
let validationFn = validators[rule];
if (!validationFn) {
// eslint-disable-next-line no-console
return;
}
if (validation.configs instanceof Array) {
const params = [];
validation.configs.forEach((cnf) => {
params.push(cnf.value);
});
params.push(fieldName);
validationFn = validationFn(...params);
}
fieldValidation[rule] = function(...props) {
const data = props[1];
const level = fieldName.split('.').length - 1;
const dataWithParent = this.getDataAccordingToFieldLevel(this.getRootScreen().addReferenceToParents(data), level);
if (parentVisibilityRule) {
const nextParentLevel = insideLoop ? 1 : 0;
const parentDataWithParent = this.getDataAccordingToFieldLevel(this.getRootScreen().addReferenceToParents(data), level + nextParentLevel);
let isParentVisible = true;
try {
isParentVisible = !!Parser.evaluate(parentVisibilityRule, parentDataWithParent);
} catch (error) {
isParentVisible = false;
}
if (!isParentVisible ) {
return true;
}
}
// Check Device Visibility
let visibleInDevice = true;
try {
const isMobileScreen = this.$root.$children[0].$refs.renderer.definition.isMobile;
visibleInDevice =
(isMobileScreen && deviceConfig.showForMobile) ||
(!isMobileScreen && deviceConfig.showForDesktop);
} catch (error) {
visibleInDevice = true;
}
if (!visibleInDevice) {
return true;
}
// Check Field Visibility
let visible = true;
if (conditionalHide) {
try {
visible = !!Parser.evaluate(conditionalHide, dataWithParent);
} catch (error) {
visible = false;
}
}
if (!visible) {
return true;
}
return validationFn.apply(this,props);
};
});
} else if (typeof validationConfig === 'string' && validationConfig) {
let validationFn = validators[validationConfig];
if (!validationFn) {
// eslint-disable-next-line no-console
return;
}
fieldValidation[validationConfig] = function(...props) {
const data = props[1];
const level = fieldName.split('.').length - 1;
const dataWithParent = this.getDataAccordingToFieldLevel(this.getRootScreen().addReferenceToParents(data), level);
// Check Parent Visibility
if (parentVisibilityRule) {
const nextParentLevel = insideLoop ? 1 : 0;
const parentDataWithParent = this.getDataAccordingToFieldLevel(this.getRootScreen().addReferenceToParents(data), level + nextParentLevel);
let isParentVisible = true;
try {
isParentVisible = !!Parser.evaluate(parentVisibilityRule, parentDataWithParent);
} catch (error) {
isParentVisible = false;
}
if (!isParentVisible) {
return true;
}
}
// Check Field Visibility
let visible = true;
if (conditionalHide) {
try {
visible = !!Parser.evaluate(conditionalHide, dataWithParent);
} catch (error) {
visible = false;
}
}
if (!visible) {
return true;
}
return validationFn.apply(this,props);
};
}
if (this.element.items) {
ValidationsFactory(this.element.items, { screen: this.screen, data: this.data }).addValidations(validations);
}
}
camelCase(name) {
return name.replace(/_\w/g, m => m.substr(1, 1).toUpperCase());
}
}
function ValidationsFactory(element, options) {
if (element instanceof Array) {
return new ArrayOfFieldsValidations(element, options);
}
if (element.config instanceof Array) {
return new ScreenValidations(element, options);
}
if (element.component === 'FormNestedScreen') {
return new FormNestedScreenValidations(element, options);
}
if (element.component === 'FormMultiColumn') {
return new FormMultiColumnValidations(element, options);
}
if (element.component === 'FormLoop') {
return new FormLoopValidations(element, options);
}
if (element.component === 'FormRecordList') {
//not required
//return new FormRecordListValidations(element, screen);
}
if (element.component === 'FormButton' && element.config.event === 'pageNavigate') {
return new PageNavigateValidations(element, options);
}
return new FormElementValidations(element, options);
}
export default ValidationsFactory;