react-use/src/useStateList.ts
xobotyi b6993a6f95
feat(prettier): make prettier a part of eslint.
Also reduce max line width to 100. And remove `lint:types` step for
commit sequence, it bothers when committing incomplete (wip) changes.
2021-02-01 18:58:55 +03:00

74 lines
2.2 KiB
TypeScript

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;
}
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,
...actions,
};
}