-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseNotifyRequest.ts
69 lines (57 loc) · 1.28 KB
/
useNotifyRequest.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
import { ref } from 'vue';
/**
* A Vue composable that abstracts out the logic for handling loading and errors when running async code.
*/
export function useNotifyRequest<
T = any,
TArgs extends Array<any> = Array<any>,
>(
requestHandler: (...args: TArgs) => Promise<T>,
options?: {
onSuccess?: (result: Awaited<T>) => void;
onError?: (error: any) => void;
},
) {
const loading = ref(false);
const error = ref<any>();
const result = ref<T>();
async function exec(...args: TArgs) {
try {
_startLoading();
_clearError();
const res = await requestHandler(...args);
res ? _setResult(res) : _clearResult();
if (options?.onSuccess) options.onSuccess(res);
} catch (err) {
_clearResult();
_setError(err);
if (options?.onError) options.onError(err);
} finally {
_stopLoading();
}
}
function _startLoading() {
loading.value = true;
}
function _stopLoading() {
loading.value = false;
}
function _setError(err: any) {
error.value = err;
}
function _clearError() {
error.value = undefined;
}
function _setResult(val: T) {
error.value = val;
}
function _clearResult() {
result.value = undefined;
}
return {
result,
error,
loading,
exec,
};
}