-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseField.ts
100 lines (84 loc) · 3.23 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
import { Dispatch, Reducer, useCallback, useEffect, useReducer, useRef } from 'react';
import { useDebouncedCallback } from './useDebouncedCallback';
import { useFormState } from './useFormState';
import { useParentField } from './useParentField';
import { fieldReducer, FieldAction, FieldState, initFieldReducer } from '../reducers';
import { useValues } from './useValues';
import { useError } from './useError';
export { FieldState, FieldAction };
export function useField<TValue = any>(
name: string,
debounceDelay: number = 300,
removeOnUnmount: boolean = false,
): [FieldState<TValue>, Dispatch<FieldAction<TValue>>] {
const [formState] = useFormState();
const [parentFieldState, parentFieldDispatch] = useParentField();
const [initialValue, parentsValue] = useValues<TValue>(name, parentFieldState);
const error = useError(name, parentFieldState);
const [fieldState, fieldDispatch] = useReducer(
fieldReducer as Reducer<FieldState<TValue>, FieldAction<TValue>>,
[initialValue, parentsValue] as [TValue | undefined, TValue | undefined],
initFieldReducer,
);
const currentStateRef = useRef(fieldState);
const changingRef = useRef(false);
const previousParentsValue = useRef(parentsValue);
const [propagateChanged, cancelChangedPropagation] = useDebouncedCallback(
(value: TValue) => {
changingRef.current = false;
parentFieldDispatch({ type: 'CHANGE_FIELD', name, value });
},
debounceDelay,
[],
);
const dispatch = useCallback(
(action: FieldAction<TValue>) => {
if (formState.status === 'IDLE' || formState.status === 'CHANGING') {
if (action.type === 'CHANGE') {
// notify form about pending change
if (changingRef.current === false) {
// set as changing
changingRef.current = true;
// propagate change to parent
parentFieldDispatch({ type: 'CHANGING', name });
}
// propagate change to parent field and form
propagateChanged(action.value);
}
fieldDispatch(action);
}
},
[formState.status, fieldDispatch],
);
if (currentStateRef.current !== fieldState) {
currentStateRef.current = fieldState;
}
useEffect(() => {
return () => {
// cancel changed propagation
cancelChangedPropagation();
if (changingRef.current) {
changingRef.current = false;
parentFieldDispatch({ type: 'CHANGE_FIELD', name, value: currentStateRef.current.value });
}
if (removeOnUnmount) {
parentFieldDispatch({ type: 'REMOVE_FIELD', name });
}
};
}, [name, removeOnUnmount]);
// if initial value changes, set it
if (initialValue !== fieldState.initialValue) {
previousParentsValue.current = initialValue;
fieldDispatch({ type: 'SET_INITIAL_VALUE', value: initialValue as TValue });
} else if (previousParentsValue.current !== parentsValue) {
previousParentsValue.current = parentsValue;
if (parentsValue !== fieldState.value) {
fieldDispatch({ type: 'SET_VALUE', value: parentsValue as TValue });
}
}
// if error is changed, propagate down
if (error !== fieldState.error) {
fieldDispatch({ type: 'SET_ERROR', error: error as string });
}
return [fieldState, dispatch];
}