This repository was archived by the owner on Mar 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseField.ts
177 lines (147 loc) · 3.71 KB
/
useField.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
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
import { watch, ref, reactive, Ref, isRef, toRefs, computed, onMounted } from '@vue/composition-api';
import { validate } from 'vee-validate';
import { ValidationFlags, ValidationResult } from 'vee-validate/dist/types/types';
import { Flag, FormController } from './types';
import { debounce, hasRefs } from './utils';
import { DELAY } from './constants';
type RuleExp = string | Record<string, any>;
interface FieldOptions {
value: Ref<any>;
rules: RuleExp | Ref<RuleExp>;
immediate: boolean;
form?: FormController;
}
type FieldAugmentedOptions = string | Ref<any> | FieldOptions;
export function useFlags() {
const flags: ValidationFlags = reactive(createFlags());
const passed = computed(() => {
return flags.valid && flags.validated;
});
const failed = computed(() => {
return flags.invalid && flags.validated;
});
return {
...toRefs(flags),
passed,
failed
};
}
export function useField(fieldName: string, opts?: FieldAugmentedOptions) {
const errors: Ref<string[]> = ref([]);
const { value, rules, form, immediate } = normalizeOptions(opts);
const initialValue = value.value;
const flags = useFlags();
function commitResult(result: ValidationResult) {
errors.value = result.errors;
flags.changed.value = initialValue !== value.value;
flags.valid.value = result.valid;
flags.invalid.value = !result.valid;
flags.validated.value = true;
flags.pending.value = false;
}
const validateField = async (newVal: any): Promise<ValidationResult> => {
flags.pending.value = true;
const result = await validate(newVal, isRef(rules) ? rules.value : rules, {
name: fieldName,
values: form?.valueRecords ?? {}
});
commitResult(result);
return result;
};
const handler = debounce(DELAY, validateField);
watch(value, handler, {
lazy: true
});
if (isRef(rules)) {
watch(rules as Ref<any>, handler, {
lazy: true
});
} else if (hasRefs(rules)) {
Object.keys(rules).forEach(key => {
if (!isRef(rules[key])) {
return;
}
watch(rules[key], handler, { lazy: true });
});
}
const reset = () => {
const defaults = createFlags();
Object.keys(flags).forEach((key: string) => {
flags[key as Flag].value = defaults[key as Flag];
});
errors.value = [];
};
const onBlur = () => {
flags.touched.value = true;
flags.untouched.value = false;
};
const onInput = () => {
flags.dirty.value = true;
flags.pristine.value = false;
};
onMounted(() => {
validate(initialValue, isRef(rules) ? rules.value : rules).then(result => {
if (immediate) {
commitResult(result);
return;
}
// Initial silent validation.
flags.valid.value = result.valid;
flags.invalid.value = !result.valid;
});
});
const field = {
vid: fieldName,
model: value,
...flags,
errors,
reset,
validate: validateField,
onInput,
onBlur
};
form?.register(field);
return field;
}
function normalizeOptions(opts: FieldAugmentedOptions | undefined): FieldOptions {
const defaults = {
value: ref(''),
immediate: false,
rules: ''
};
if (!opts) {
return defaults;
}
if (isRef(opts)) {
return {
...defaults,
rules: opts
};
}
if (typeof opts === 'string') {
return {
...defaults,
rules: opts
};
}
return {
...defaults,
...(opts ?? {})
};
}
function createFlags(): Record<Flag, boolean> {
return {
changed: false,
valid: false,
invalid: false,
touched: false,
untouched: true,
dirty: false,
pristine: true,
validated: false,
pending: false,
required: false,
passed: false,
failed: false
};
}