-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
67 lines (53 loc) · 1.76 KB
/
index.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
import { useReducer, useMemo } from "react";
type TMicroActions<ReturnType> = {
[key: string]: (...args: any[]) => ReturnType;
};
type TMicroDispatch<R extends TMicroActions<any>> = {
[Key in keyof R]: (...x: Parameters<R[Key]>) => void;
};
type TMicroReducer<State, ReturnType = State> = (
state: State
) => TMicroActions<ReturnType>;
export type MicroReducerReturn<R extends TMicroReducer<any, any>> = [
MicroReducerState<R>,
MicroReducerDispatch<R>
];
export type MicroReducerState<R extends TMicroReducer<any, any>> = Parameters<
R
>[0];
export type MicroReducerDispatch<
R extends TMicroReducer<any, any>
> = TMicroDispatch<ReturnType<R>>;
export type ProduceFunc = <State>(
currentState: State,
producer: (draftState: State) => void
) => State;
export function useMicroReducer<State, R extends TMicroActions<State>>(
microReducer: (state: State) => R,
initialState?: State
): [State, TMicroDispatch<R>];
export function useMicroReducer<State, R extends TMicroActions<void>>(
microReducer: (state: State) => R,
initialState: State,
producer: ProduceFunc
): [State, TMicroDispatch<R>];
// introduced generic R to allow proper infering
export function useMicroReducer(microReducer, initialState, producer?): any {
const [state, _dispatch] = useReducer((state, action) => {
if (producer) {
return producer(state, draft =>
microReducer(draft)[action.type](...action.payload)
);
}
return microReducer(state)[action.type](...action.payload);
}, initialState);
const dispatch = useMemo(() => {
const dispatch: any = {};
for (let key in microReducer()) {
dispatch[key] = (...args: any[]) =>
_dispatch({ type: key, payload: args });
}
return dispatch;
}, [_dispatch]);
return [state, dispatch];
}