-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-array.ts
117 lines (96 loc) · 2.81 KB
/
form-array.ts
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
import type {
ArraySchemaType,
BaseSchemaType,
ObjectSchemaType
} from '@websublime/schema';
import { schemaType } from '@websublime/schema';
import { BaseControl } from './base-control';
import { FormControl } from './form-control';
import { FormGroup } from './form-group';
/**
* Form Array
*/
// TODO Add items
export class FormArray<T = any> extends BaseControl<T> {
items: Array<BaseControl<T>> | never[] = [];
declare schema: ArraySchemaType<T>;
constructor(
schema: ArraySchemaType<T>,
parent: BaseControl<any> | null = null,
context: any = null
) {
super(schema, parent, context);
}
async validate(data: any = this.weakMap.get(this), drill = false) {
const { errors, isValid } = await this.schema.check(
data,
this.parent?.weakMap.get(this.parent),
null,
drill
);
if (drill) {
for (let i = 0; i < this.items.length; i++) {
await this.items[i].validate(data[i], drill);
}
}
const childValidation = (this.items as Array<BaseControl<any>>).reduce(
(acc, item) => acc && item.isValid,
true
);
this.isValid = isValid && childValidation;
this.errors = [...errors];
if (this.parent) {
this.notifyParent();
}
}
setData(data: any) {
this.weakMap.set(this, data);
data.forEach((item: any, index: number) => {
if (this.items[index]) {
this.items[index].setData(item);
} else {
if (this.schema.items?.schemaType === schemaType.property) {
this.items[index] = new FormControl(
this.schema?.items as BaseSchemaType<any>,
this,
index
);
}
if (this.schema.items?.schemaType === schemaType.array) {
this.items[index] = new FormArray(
this.schema?.items as ArraySchemaType<any>,
this,
index
);
}
if (this.schema.items?.schemaType === schemaType.object) {
this.items[index] = new FormGroup(
this.schema?.items as ObjectSchemaType<any>,
this,
index
);
}
this.items[index].setData(item);
}
});
}
async onChange(child: BaseControl<any>) {
if (child.isDirty) {
this.isDirty = true;
}
this.isFocus = child.isFocus;
if (!this.isTouch) {
this.isTouch = child.isTouch;
}
this.isLoading = child.isLoading;
if (
(child.context !== null || child.context !== undefined) &&
(this.weakMap.get(this) !== null || this.weakMap.get(this) !== undefined) &&
JSON.stringify((this.weakMap.get(this) as any)[child.context]) !==
JSON.stringify(child.weakMap.get(child))
) {
(this.weakMap.get(this) as any)[child.context] = child.weakMap.get(child);
}
await this.validate(this.weakMap.get(this));
}
}