blob: c67f252be04119bafda347814a8d149746f8c814 (
plain)
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
|
import { useRef, useEffect, useCallback } from 'react';
import { useDispatch } from 'react-redux';
import { errorsActions } from './store';
export const usePrevious = (value) => {
const ref = useRef();
useEffect(() => {
ref.current = value;
});
return ref.current;
};
/* eslint-disable */
export const useEffectAsync = (effect, deps) => {
const dispatch = useDispatch();
const ref = useRef();
useEffect(() => {
effect()
.then((result) => ref.current = result)
.catch((error) => dispatch(errorsActions.push(error.message)));
return () => {
const result = ref.current;
if (result) {
result();
}
};
}, [...deps, dispatch]);
};
export const useCatch = (method) => {
const dispatch = useDispatch();
return (...parameters) => {
method(...parameters).catch((error) => dispatch(errorsActions.push(error.message)));
};
};
export const useCatchCallback = (method, deps) => {
return useCallback(useCatch(method), deps);
};
|