-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathuseStateList.ts
77 lines (66 loc) Β· 2.31 KB
/
useStateList.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
import { useMemo, useRef } from 'react';
import useMountedState from './useMountedState';
import useUpdate from './useUpdate';
import useUpdateEffect from './useUpdateEffect';
export interface UseStateListReturn<T> {
state: T;
currentIndex: number;
setStateAt: (newIndex: number) => void;
setState: (state: T) => void;
next: () => void;
prev: () => void;
isFirst: boolean;
isLast: boolean;
}
export default function useStateList<T>(stateSet: T[] = []): UseStateListReturn<T> {
const isMounted = useMountedState();
const update = useUpdate();
const index = useRef(0);
// If new state list is shorter that before - switch to the last element
useUpdateEffect(() => {
if (stateSet.length <= index.current) {
index.current = stateSet.length - 1;
update();
}
}, [stateSet.length]);
const actions = useMemo(
() => ({
next: () => actions.setStateAt(index.current + 1),
prev: () => actions.setStateAt(index.current - 1),
setStateAt: (newIndex: number) => {
// do nothing on unmounted component
if (!isMounted()) return;
// do nothing on empty states list
if (!stateSet.length) return;
// in case new index is equal current - do nothing
if (newIndex === index.current) return;
// it gives the ability to travel through the left and right borders.
// 4ex: if list contains 5 elements, attempt to set index 9 will bring use to 5th element
// in case of negative index it will start counting from the right, so -17 will bring us to 4th element
index.current =
newIndex >= 0
? newIndex % stateSet.length
: stateSet.length + (newIndex % stateSet.length);
update();
},
setState: (state: T) => {
// do nothing on unmounted component
if (!isMounted()) return;
const newIndex = stateSet.length ? stateSet.indexOf(state) : -1;
if (newIndex === -1) {
throw new Error(`State '${state}' is not a valid state (does not exist in state list)`);
}
index.current = newIndex;
update();
},
}),
[stateSet]
);
return {
state: stateSet[index.current],
currentIndex: index.current,
isFirst: index.current === 0,
isLast: index.current === stateSet.length - 1,
...actions,
};
}