This repository was archived by the owner on Nov 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFormControl.jsx
462 lines (415 loc) · 11.3 KB
/
FormControl.jsx
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
/**
* A lightweight and extensible React validation component
*/
import React from 'react';
import PropTypes from 'prop-types';
import Validator from 'validate-framework-utils';
import debounce from 'lodash.debounce';
import isNumber from 'lodash.isnumber';
const ORIGINAL_VALUES = Symbol('#ORIGINAL_VALUES');
const ORIGINAL_CLASS_NAMES = Symbol('#ORIGINAL_CLASS_NAMES');
const GET_RESULT_FROM_SCHEMA = Symbol('#GET_RESULT_FROM_SCHEMA');
const ASSEMBLE_FIELD_FROM_RESULT = Symbol('#ASSEMBLE_FIELD_FROM_RESULT');
const ASSEMBLE_FIELD_CHANGE = Symbol('#ASSEMBLE_FIELD_CHANGE');
const ASYNC_ASSEMBLE_FIELD_CHANGE = Symbol('#ASYNC_ASSEMBLE_FIELD_CHANGE');
const ASSEMBLE_FIELD_VALIDATE = Symbol('#ASSEMBLE_FIELD_VALIDATE');
const ASYNC_ASSEMBLE_FIELD_VALIDATE = Symbol('#ASYNC_ASSEMBLE_FIELD_VALIDATE');
/**
* React validation component
* @param schemas
* @param methods Extended Validation Method
*/
export default (schemas, methods) => FormComponent => (
/**
* Returns a react form
*/
class FormControl extends React.Component {
static propTypes = {
values: PropTypes.object,
classNames: PropTypes.object,
};
static childContextTypes = {
formControl: PropTypes.object.isRequired,
};
schemas = { ...schemas };
[ORIGINAL_VALUES] = {};
[ORIGINAL_CLASS_NAMES] = {};
constructor(props) {
super(props);
const {
values,
classNames,
} = props;
this.state = {
fields: {},
};
if (classNames) {
this.initClassNames(classNames);
}
if (values) {
this.init(values);
}
// Initializes the validation component and customizes the validation method
this.validator = new Validator();
Object.assign(this.validator, methods, { fields: this.state.fields });
}
getChildContext() {
return {
formControl: this,
};
}
componentWillReceiveProps(nextProps) {
const { values } = nextProps;
// No value
if (!values) {
return;
}
// Updates the state from the parent component
const { fields } = this.state;
(async () => {
// eslint-disable-next-line no-restricted-syntax
for (const name of Object.keys(values)) {
const theValue = values[name];
// Convert to string
const value = isNumber(theValue) ? String(theValue) : theValue;
// Validate the new data
if (fields[name]) {
// diff
if (fields[name].value !== value) {
await this[ASYNC_ASSEMBLE_FIELD_CHANGE](name, value);
}
} else {
// Add a new field
fields[name] = {
className: this[ORIGINAL_CLASS_NAMES].static,
value,
};
}
}
// Update
this.setState({
fields,
});
})();
}
/**
* Get the fields object
* @returns {Object}
*/
get fields() {
return this.state.fields;
}
/**
* Gets a list of form values
* @return {Object}
*/
get formValues() {
const { fields } = this.state;
const values = {};
Object.keys(fields).forEach((name) => {
values[name] = fields[name].value;
});
return values;
}
/**
* Gets the global validation status
* @return {Boolean}
*/
get isAllValid() {
const { fields } = this.state;
return Object
.keys(this.schemas)
.every(name => fields[name] && fields[name].result);
}
/**
* Initializes the form value and classes
* @param values
* @param classes
*/
init = (values, classes) => {
const { fields } = this.state;
// Assign classNames
if (classes) {
this.initClassNames(classes);
}
// Initialize
Object.keys(values).forEach((name) => {
const theValue = values[name];
// Convert to string
const value = isNumber(theValue) ? String(theValue) : theValue;
fields[name] = {
...fields[name],
className: this[ORIGINAL_CLASS_NAMES].static,
value,
};
// Only initialized once
if (this[ORIGINAL_VALUES][name] === undefined) {
this[ORIGINAL_VALUES][name] = value;
}
// Synchronize values external state
if (this.props.values) {
this.props.values[name] = value;
}
});
return this;
};
/**
* Init classNames
* @param classes
*/
initClassNames = (classes) => {
// Merge
Object.assign(this[ORIGINAL_CLASS_NAMES], classes);
return this;
};
/**
* Create asynchronous validation
* See createField.jsx
* @param ms
* @return {Function}
*/
createDelayValidateFunc = (ms) => {
const debounceValidateAndUpdate = async (...args) => {
await this[ASYNC_ASSEMBLE_FIELD_VALIDATE](...args);
this.forceUpdate();
};
return debounce(debounceValidateAndUpdate, ms);
};
[ASSEMBLE_FIELD_CHANGE] = (name, value) => {
const { fields } = this.state;
fields[name].value = value;
// Async
if (fields[name].delayFunc) {
fields[name].delayFunc(name, value);
} else {
this[ASSEMBLE_FIELD_VALIDATE](name, value);
}
};
[ASYNC_ASSEMBLE_FIELD_CHANGE] = async (name, value) => {
this.state.fields[name].value = value;
await this[ASYNC_ASSEMBLE_FIELD_VALIDATE](name, value);
};
[GET_RESULT_FROM_SCHEMA] = (name, value) => {
const schema = this.schemas[name];
return schema ? this.validator.validateField({ ...schema, name })(value) : {};
};
[ASSEMBLE_FIELD_FROM_RESULT] = (name, { result, error }) => {
const classNames = this[ORIGINAL_CLASS_NAMES];
const { fields } = this.state;
const classNameArray = [
classNames.static,
result ? classNames.success : null,
result === false ? classNames.error : null,
];
// Assemble
Object.assign(fields[name], {
className: classNameArray.filter(item => item).join('\u{20}'),
result,
message: error ? error.message : undefined,
});
};
[ASSEMBLE_FIELD_VALIDATE] = (name, value) => {
const resultField = this[GET_RESULT_FROM_SCHEMA](name, value);
this[ASSEMBLE_FIELD_FROM_RESULT](name, resultField);
};
[ASYNC_ASSEMBLE_FIELD_VALIDATE] = async (name, value) => {
const resultField = await this[GET_RESULT_FROM_SCHEMA](name, value);
this[ASSEMBLE_FIELD_FROM_RESULT](name, resultField);
};
/**
* Validate fields by names
* @param names
* @return {Boolean}
*/
validateFieldsByNames = async (...names) => {
const { fields } = this.state;
let isValid = true;
// eslint-disable-next-line no-restricted-syntax
for (const name of names) {
if (fields[name]) {
await this[ASYNC_ASSEMBLE_FIELD_VALIDATE](name, fields[name].value);
// Exclude unauthenticated and validated successfully
if (fields[name].result === false) {
isValid = false;
}
}
}
return isValid;
};
// Form change event listener
onFormChange = (e) => {
const { name, type, value } = e.target;
const { fields } = this.state;
// Dependent on the name attribute
if (!name) {
return;
}
let theValue;
// Checkbox processing
if (type === 'checkbox') {
theValue = fields[name].value.slice();
const index = theValue.indexOf(value);
if (index === -1) {
theValue.push(value);
} else {
theValue.splice(index, 1);
}
} else {
theValue = value;
}
// Synchronize values external state
if (this.props.values) {
this.props.values[name] = theValue;
}
// Assemble and delay validate
this[ASSEMBLE_FIELD_CHANGE](name, theValue);
// Update
this.setState({
fields,
});
this.formDidChange({ [name]: theValue });
};
/**
* Customize to change the values
* @param values
*/
changeValues = (values) => {
const { fields } = this.state;
// Initializes
this.init(values);
Object.keys(values).forEach((name) => {
this[ASSEMBLE_FIELD_CHANGE](name, values[name]);
});
// Update
this.setState({
fields,
});
this.formDidChange(values);
return this;
};
/**
* Add one or more validation rules
* @param schema
*/
addSchemas = (schema) => {
Object.assign(this.schemas, schema);
return this;
};
/**
* Delete one or more validation rules
* If there is no name, it will all be removed.
* @param names
*/
removeSchemas = (...names) => {
if (names.length) {
names.forEach((name) => {
delete this.schemas[name];
});
} else {
this.schemas = {};
}
// Validate the deleted status
this.validateByNames(...names);
return this;
};
/**
* Add one or more fields
* @param values
*/
addValues = (values) => {
const { fields } = this.state;
// Initializes
this.init(values);
// Update
this.setState({
fields,
});
this.formDidChange(values);
return this;
};
/**
* Deletes one or more fields
* If there is no name, it will all be removed.
* @param names
*/
removeValues = (...names) => {
const { fields } = this.state;
if (names.length) {
names.forEach((name) => {
delete fields[name];
if (this.props.values) {
delete this.props.values[name];
}
});
} else {
// Remove all
Object.keys(fields).forEach((name) => {
delete this.state.fields[name];
if (this.props.values) {
delete this.props.values[name];
}
});
}
// Update
this.setState({
fields,
});
this.formDidChange({});
return this;
};
/**
* Reset one or more fields
* If there is no name, it will all be init.
* @param names
*/
resetValues = (...names) => {
const { fields } = this.state;
const values = {};
if (names.length) {
names.forEach((name) => {
values[name] = this[ORIGINAL_VALUES][name];
});
this.init(values);
} else {
// Init all
Object.assign(values, this[ORIGINAL_VALUES]);
this.init(values);
}
// Update
this.setState({
fields,
});
this.formDidChange(values);
return this;
};
/**
* Validate the component through names
* @param names
* @return {Boolean}
*/
validateByNames = async (...names) => {
const result = await this.validateFieldsByNames(...names);
const { fields } = this.state;
// Update
this.setState({
fields,
});
return result;
};
/**
* Validate all
* @return {Boolean}
*/
validate = () => this.validateByNames(...Object.keys(this.schemas));
// After change
formDidChange = () => {};
render() {
return (
<FormComponent
{...this.props}
formControl={this}
/>
);
}
}
);