forked from redux-loop/redux-loop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
268 lines (224 loc) · 7.27 KB
/
index.d.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
import { Action, ActionCreator, AnyAction, StoreEnhancer, Store } from 'redux';
export type UnknownAction = AnyAction | never;
export interface StoreCreator {
<S, A extends Action>(
reducer: LoopReducer<S, A>,
preloadedState: S | undefined,
enhancer: StoreEnhancer<S>
): Store<S>;
}
type WithDefaultActionHandling<T extends AnyAction> =
| T
| Action<'@@REDUX_LOOP/ENFORCE_DEFAULT_HANDLING'>;
export type Loop<S> = [S, CmdType];
export interface LoopReducer<S, A extends Action = AnyAction> {
(state: S | undefined, action: WithDefaultActionHandling<A>, ...args: any[]):
| S
| Loop<S>;
}
export interface LoopReducerWithDefinedState<S, A extends Action = AnyAction> {
(state: S, action: WithDefaultActionHandling<A>, ...args: any[]): S | Loop<S>;
}
export interface LiftedLoopReducer<S, A extends Action = AnyAction> {
(
state: S | undefined,
action: WithDefaultActionHandling<A>,
...args: any[]
): Loop<S>;
}
export type CmdSimulation = {
result: any;
success: boolean;
};
export interface MultiCmdSimulation {
[index: number]: CmdSimulation | MultiCmdSimulation;
}
export interface NoneCmd {
readonly type: 'NONE';
simulate(): null;
}
export interface ListCmd {
readonly type: 'LIST';
readonly cmds: CmdType[];
readonly sequence?: boolean;
readonly batch?: boolean;
simulate(simulations: MultiCmdSimulation): AnyAction[];
}
export interface ActionCmd<A extends Action> {
readonly type: 'ACTION';
readonly actionToDispatch: A;
simulate(): A;
}
export interface SetTimeoutCmd<A extends Action = never> {
readonly type: 'SET_TIMEOUT';
readonly nestedCmd: CmdType;
readonly delayMs: number;
readonly scheduledActionCreator?: (timerId: number) => A;
simulate(
timerId: number,
nestedSimulation?: CmdSimulation | MultiCmdSimulation
): A[] | A | null;
}
export interface SetIntervalCmd<A extends Action = never> {
readonly type: 'SET_INTERVAL';
readonly nestedCmd: CmdType;
readonly delayMs: number;
readonly scheduledActionCreator?: (timerId: number) => A;
simulate(
timerId: number,
nestedSimulation?: CmdSimulation | MultiCmdSimulation
): A[] | A | null;
}
export interface MapCmd<A extends Action = never> {
readonly type: 'MAP';
readonly tagger: ActionCreator<A>;
readonly nestedCmd: CmdType;
readonly args: any[];
simulate(simulations?: CmdSimulation | MultiCmdSimulation): A[] | A | null;
}
export interface RunCmd<
SuccessAction extends Action = never,
FailAction extends Action = never
> {
readonly type: 'RUN';
readonly func: (...args: any[]) => any;
readonly args?: any[];
readonly failActionCreator?: ActionCreator<FailAction>;
readonly successActionCreator?: ActionCreator<SuccessAction>;
readonly forceSync?: boolean;
simulate(simulation: CmdSimulation): SuccessAction | FailAction;
}
export type CmdType =
| ActionCmd<UnknownAction>
| SetTimeoutCmd<UnknownAction>
| SetIntervalCmd<UnknownAction>
| ListCmd
| MapCmd<UnknownAction>
| NoneCmd
| RunCmd<UnknownAction, UnknownAction>;
export interface LoopConfig {
readonly DONT_LOG_ERRORS_ON_HANDLED_FAILURES?: boolean;
readonly ENABLE_THUNK_MIGRATION?: boolean;
}
export function install<S>(config?: LoopConfig): StoreEnhancer<S>;
export function loop<S>(state: S, cmd: CmdType): Loop<S>;
export namespace Cmd {
export const dispatch: unique symbol;
export const getState: unique symbol;
export const none: NoneCmd;
export type Dispatch = <A extends Action>(a: A) => Promise<A>;
export type GetState = <S>() => S;
export function action<A extends Action>(action: A): ActionCmd<A>;
export type ListOptions = {
batch?: boolean;
sequence?: boolean;
testInvariants?: boolean;
};
export function list(cmds: CmdType[], options?: ListOptions): ListCmd;
export function clearTimeout(timerId: number): RunCmd;
export function clearInterval(timerId: number): RunCmd;
export function setTimeout<A extends Action = never>(
cmd: CmdType,
delayMs: number,
options?: {
scheduledActionCreator?: (timerId: number) => A;
}
): SetTimeoutCmd<A>;
export function setInterval<A extends Action = never>(
cmd: CmdType,
delayMs: number,
options?: {
scheduledActionCreator?: (timerId: number) => A;
}
): SetIntervalCmd<A>;
export function map<A extends Action, B extends Action>(
cmd: CmdType,
tagger: (subAction: B) => A,
args?: any[]
): MapCmd<A>;
// Allow the use of special dispatch | getState symbols
// and check for a union with other types, e.g., support `getState?: GetState | number`
type ArgOrSymbol<T> = {
[K in keyof T]: Extract<T[K], GetState> extends never
? Extract<T[K], Dispatch> extends never
? T[K]
: Exclude<T[K], Dispatch> | typeof dispatch
: Exclude<T[K], GetState> | typeof getState;
};
type RunFunc = (...args: any[]) => Promise<any> | any;
export type PromiseResult<T> = T extends Promise<infer U> ? U : T;
export type RunOptions<
Func extends RunFunc,
SuccessAction extends Action = never,
FailAction extends Action = never,
FailReason = unknown
> = {
args?: ArgOrSymbol<Parameters<Func>>;
forceSync?: boolean;
testInvariants?: boolean;
successActionCreator: (
value: PromiseResult<ReturnType<Func>>
) => SuccessAction;
failActionCreator: (error: FailReason) => FailAction;
};
export function run<Func extends RunFunc>(
f: Func,
options?: Omit<
RunOptions<Func>,
'successActionCreator' | 'failActionCreator'
>
): RunCmd<never, never>;
export function run<Func extends RunFunc, SuccessAction extends Action>(
f: Func,
options: Omit<RunOptions<Func, SuccessAction>, 'failActionCreator'>
): RunCmd<SuccessAction, never>;
export function run<
Func extends RunFunc,
FailAction extends Action,
FailReason = unknown
>(
f: Func,
options: Omit<
RunOptions<Func, never, FailAction, FailReason>,
'successActionCreator'
>
): RunCmd<never, FailAction>;
export function run<
Func extends RunFunc,
SuccessAction extends Action,
FailAction extends Action,
FailReason = unknown
>(
f: Func,
options: RunOptions<Func, SuccessAction, FailAction, FailReason>
): RunCmd<SuccessAction, FailAction>;
}
export type ReducersMapObject<S, A extends Action = AnyAction> = {
[K in keyof S]: LoopReducer<S[K], A>;
};
export function combineReducers<S, A extends Action = AnyAction>(
reducers: ReducersMapObject<S, A>
): LiftedLoopReducer<S, A>;
export function mergeChildReducers<S>(
parentResult: S | Loop<S>,
action: AnyAction,
childMap: ReducersMapObject<S>
): Loop<S>;
// eslint-disable-next-line camelcase
export function DEPRECATED_mergeChildReducers<S>(
parentResult: S | Loop<S>,
action: AnyAction,
childMap: ReducersMapObject<S>
): Loop<S>;
export function reduceReducers<S>(
initialReducer: LoopReducer<S, any>,
...reducers: Array<LoopReducerWithDefinedState<S, any>>
): LiftedLoopReducer<S, any>;
export function reduceReducers<S, A extends Action>(
initialReducer: LoopReducer<S, A>,
...reducers: Array<LoopReducerWithDefinedState<S, A>>
): LiftedLoopReducer<S, A>;
export function liftState<S>(state: S | Loop<S>): Loop<S>;
export function isLoop(test: any): boolean;
export function getModel<S>(loop: S | Loop<S>): S;
export function getCmd(a: any): CmdType | null;