generated from react-component/footer
-
-
Notifications
You must be signed in to change notification settings - Fork 323
/
Copy pathuseRangeOpen.ts
144 lines (123 loc) Β· 4.12 KB
/
useRangeOpen.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
import { useMergedState } from 'rc-util';
import useEvent from 'rc-util/lib/hooks/useEvent';
import raf from 'rc-util/lib/raf';
import * as React from 'react';
/**
* 1. Click input to show picker
* 2. Calculate next open index
*
* If click `confirm`:
* 3. Hide current picker
* 4. Open next index picker if exist
*
* If not `changeOnBlur` and click outside:
* 3. Hide picker
*
* If `changeOnBlur` and click outside:
* 3. Hide current picker
* 4. Open next index picker if exist
*/
export type SourceType = 'open' | 'blur' | 'confirm' | 'cancel' | 'clear' | 'preset';
/**
* Auto control of open state
*/
export default function useRangeOpen(
defaultOpen: boolean,
open: boolean,
activePickerIndex: 0 | 1 | undefined,
changeOnBlur: boolean,
needConfirmButton: boolean,
startInputRef: React.RefObject<HTMLInputElement>,
endInputRef: React.RefObject<HTMLInputElement>,
startSelectedValue: any,
endSelectedValue: any,
disabled: [boolean, boolean],
onOpenChange?: (open: boolean) => void,
): [
open: boolean,
activeIndex: 0 | 1,
firstTimeOpen: boolean,
triggerOpen: (open: boolean, activeIndex: 0 | 1 | false, source: SourceType) => void,
] {
const rafRef = React.useRef<number>(null);
const [firstTimeOpen, setFirstTimeOpen] = React.useState(false);
const [afferentOpen, setAfferentOpen] = useMergedState(defaultOpen || false, {
value: open,
});
const [mergedOpen, setMergedOpen] = useMergedState(defaultOpen || false, {
value: open,
onChange: (nextOpen) => {
onOpenChange?.(nextOpen);
},
});
const [mergedActivePickerIndex, setMergedActivePickerIndex] = useMergedState<0 | 1>(0, {
value: activePickerIndex,
});
const [nextActiveIndex, setNextActiveIndex] = React.useState<0 | 1>(null);
const queryNextIndex = (index: number) => (index === 0 ? 1 : 0);
React.useEffect(() => {
if (mergedOpen) {
setFirstTimeOpen(true);
}
}, [mergedOpen]);
React.useEffect(() => {
if (!afferentOpen && rafRef.current !== null) {
// Unfocus
raf.cancel(rafRef.current);
rafRef.current = null;
// Since the index will eventually point to the next one, it needs to be reset.
if (mergedActivePickerIndex !== null) {
setMergedActivePickerIndex(queryNextIndex(mergedActivePickerIndex));
}
}
}, [afferentOpen]);
const triggerOpen = useEvent((nextOpen: boolean, index: 0 | 1 | false, source: SourceType) => {
if (index === false) {
// Only when `nextOpen` is false and no need open to next index
setMergedOpen(nextOpen);
} else if (nextOpen) {
setMergedActivePickerIndex(index);
setMergedOpen(nextOpen);
const nextIndex = queryNextIndex(index);
// Record next open index
if (
!mergedOpen ||
// Also set next index if next is empty
![startSelectedValue, endSelectedValue][nextIndex]
) {
setNextActiveIndex(nextIndex);
} else {
setFirstTimeOpen(false);
if (nextActiveIndex !== null) {
setNextActiveIndex(null);
}
}
} else if (source === 'confirm' || (source === 'blur' && changeOnBlur)) {
// dateTime mode does not need help getting the index
const customNextActiveIndex =
afferentOpen && !needConfirmButton ? queryNextIndex(index) : nextActiveIndex;
if (customNextActiveIndex !== null) {
setFirstTimeOpen(false);
setMergedActivePickerIndex(customNextActiveIndex);
}
setNextActiveIndex(null);
// Focus back
if (customNextActiveIndex !== null && !disabled[customNextActiveIndex]) {
// Trigger closure to ensure consistency between controlled and uncontrolled logic.
if (afferentOpen && !firstTimeOpen && nextActiveIndex === null) {
setMergedOpen(false);
}
rafRef.current = raf(() => {
const ref = [startInputRef, endInputRef][customNextActiveIndex];
ref.current?.focus();
});
} else {
setMergedOpen(false);
}
} else {
setMergedOpen(false);
setAfferentOpen(false);
}
});
return [mergedOpen, mergedActivePickerIndex, firstTimeOpen, triggerOpen];
}