-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarvelApiIntance.js
66 lines (62 loc) · 1.45 KB
/
marvelApiIntance.js
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
import axios from 'axios';
import md5 from 'md5';
import { toast } from 'react-hot-toast';
/**
* time.
*
* Purpose:
* - Its required to use marvel api.
*/
const time = Number(new Date());
/**
* hash.
*
* Purpose:
* - Md5 time + PrivateKey + PublicKey (required to use marvel api.)
*
* References:
* - https://www.npmjs.com/package/md5
*/
const hash = md5(
time + import.meta.env.VITE_MARVEL_PRIVATE_KEY + import.meta.env.VITE_MARVEL_PUBLIC_KEY,
);
/**
* marvelInstance.
*
* Purpose:
* - Create an axios instance to manage all request.
*
* Reference:
* - https://axios-http.com/docs/intro
*/
export const marvelInstance = axios.create({
baseURL: import.meta.env.VITE_MARVEL_BASE_URL,
timeout: 5000,
params: {
ts: time,
apikey: import.meta.env.VITE_MARVEL_PUBLIC_KEY,
hash: hash,
},
});
/**
* Purpose:
* - Dispatch a toast when marvelInstance return error status 409
*
* -Note:
* - "Minimum error handling" can be handled from these interceptors or they are stored in redux.
*/
marvelInstance.interceptors.response.use(
(response) => response,
(error) => {
switch (error.response.status) {
case 409:
toast.error(`Error: ${error.response.data.code} - ${error.response.data.status}`);
break;
case 404:
toast.error(`Error: ${error.response.status} - ${error.response.statusText}`);
break;
default:
console.log('an interceptor is missing for that status');
}
},
);