-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathuseAsync.ts
272 lines (244 loc) · 6.56 KB
/
useAsync.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
269
270
271
272
import {
DependencyList,
useCallback,
useState,
useRef,
useEffect,
} from 'react';
class Timer<T> {
private remaining = 0;
private delay = 0;
private cb: ((...args: any[]) => Promise<T | undefined>) | null = null;
private start = 0;
private timerId: any = 0;
public constructor(cb: () => Promise<T | undefined>, delay: number) {
this.remaining = delay;
this.delay = delay;
this.start = delay;
this.timerId = delay;
this.cb = cb;
}
public stop = () => {
clearTimeout(this.timerId);
this.timerId = 0;
this.remaining = this.delay;
};
public pause = () => {
clearTimeout(this.timerId);
this.remaining -= Date.now() - this.start;
};
public resume = (...args: any[]): Promise<T> | undefined => {
this.start = Date.now();
clearTimeout(this.timerId);
if (this.cb) {
/* eslint-disable no-undef */
return new Promise<T>((resolve) => {
this.timerId = setTimeout(async () => {
if (this.cb) {
this.cb(...(args || []));
// resume 只触发定时器开始计时,没有返回结果
resolve(
'No resolve value when pollingInterval is set, please use onSuccess & onError instead' as any
);
}
}, this.remaining);
});
}
return undefined;
};
}
export interface Options<T> {
manual?: boolean; // 是否初始化执行
pollingInterval?: number; // 轮询的间隔毫秒
onSuccess?: (d: T) => void; // 成功回调
onError?: (e: Error) => void; // 失败回调
}
type noop = (...args: any[]) => void;
const noop: noop = () => {/**/};
type promiseReturn<P, T> = (arg0?: P, ...args: any[]) => Promise<T | undefined>;
const promiseReturn: promiseReturn<any, any> = async () => null as any;
export interface ReturnValue<P, T> {
loading: boolean;
error?: Error;
data?: T;
cancel: noop;
/**当次执行的 service 的参数数组*/
params?: any[];
run: promiseReturn<P, T | undefined>;
/**使用上一次的 params,重新调用 run */
refresh: () => void;
timer: {
stop: noop;
resume: noop;
pause: noop;
};
}
export default function useAsync<P = any, Result = any>(
fn: (...args: any[]) => Promise<Result>,
deps: DependencyList = [],
options: Options<Result> = {}
): ReturnValue<P, Result> {
const [state, set] = useState<ReturnValue<P, Result>>({
loading: false,
cancel: noop,
run: promiseReturn,
params: [],
refresh:noop,
timer: {
stop: noop,
resume: promiseReturn,
pause: noop,
},
});
const timer = useRef<Timer<Result> | undefined>(undefined);
const count = useRef(0);
const init = useRef(true);
useEffect(() => {
count.current += 1;
init.current = true;
return () => {
count.current += 1;
};
}, deps);
const run = useCallback((...args: any[]): Promise<Result | undefined> => {
// 确保不会返回被取消的结果
const runCount = count.current;
set((s) => ({ ...s, loading: true,params:args }));
return fn(...args)
.then((data) => {
if (runCount === count.current) {
if (options.onSuccess) {
options.onSuccess(data);
}
if (runCount === count.current) {
set((s) => ({ ...s, error: undefined, data, loading: false }));
}
}
return data;
})
.catch((error) => {
if (runCount === count.current) {
if (options.onError) {
options.onError(error);
}
if (runCount === count.current) {
set((s) => ({ ...s, error, loading: false }));
}
}
return error;
});
}, deps);
const refresh = useCallback(() => {
run(state.params||[]);
}, []);
const stop = useCallback(() => {
count.current += 1;
// 清除计时器
if (timer.current) {
timer.current.stop();
}
set((s) => ({ ...s, loading: false }));
}, []);
const pause = useCallback(() => {
count.current += 1;
// 暂停计时器
if (timer.current) {
timer.current.pause();
}
set((s) => ({ ...s, loading: false }));
}, []);
const resume = useCallback(
async (...args: any[]): Promise<Result | undefined> => {
// 恢复计时器
if (timer.current) {
return timer.current.resume(...(args || []));
}
return undefined;
},
[run]
);
const start = useCallback(
async (...args: any[]): Promise<Result | undefined> => {
// 执行并开启计时器
await run(...(args || []));
return resume(...(args || []));
},
[run]
);
const intervalAsync = useCallback(
async (...args: any[]) => {
const runCount = count.current;
let ret: Result | undefined;
if (!options.manual || !init.current) {
ret = await run(...(args || []));
}
if (count.current === runCount) {
// 只初始化定时器,不开始计时
timer.current = new Timer<Result>(
() => intervalAsync(...args),
options.pollingInterval as number
);
// 如果设置了 manual,则默认不开始计时
if (init.current && options.manual) {
// await run(...(args || []));
init.current = false;
} else {
// 开始计时
ret = await timer.current.resume(...(args || []));
}
}
return ret;
},
[options.pollingInterval, options.manual, run]
);
const reload = useCallback(
(...args: any[]): Promise<Result | undefined> => {
// 防止上次数据返回
count.current += 1;
if (options.pollingInterval) {
if (!options.manual) {
// 如果有 polling,清理上次的计时器
stop();
}
return intervalAsync(...args);
}
// 直接运行
return run(...(args || []));
},
[run, options.pollingInterval]
);
const cancel = useCallback(() => {
count.current += 1;
// throw an error
set((s) => ({ ...s, loading: false }));
}, []);
useEffect(
(...args: any[]) => {
if (options.pollingInterval) {
intervalAsync();
} else if (!options.manual) {
// 直接值行
run(...(args || []));
}
return () => {
count.current += 1;
stop();
};
},
[options.manual, options.pollingInterval, run, intervalAsync]
);
return {
loading: state.loading,
error: state.error,
data: state.data,
params:state.params,
cancel,
refresh,
run: options.manual && options.pollingInterval ? start : reload,
timer: {
stop,
resume,
pause,
},
};
}