-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI.ts
More file actions
40 lines (32 loc) · 1.13 KB
/
API.ts
File metadata and controls
40 lines (32 loc) · 1.13 KB
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 Axios from 'axios';
const axios = Axios.create({
responseType: 'text',
baseURL: `/api`,
});
////////////////////////////////////////////////////////////////////////////////////////////////
export default class API {
public static INVALID_TOKEN = 'InvalidToken';
public static async get(path: string, params?: { [key: string]: any }) {
const cleanedPath = path.replace(/^\//, '');
const res = await axios.get(cleanedPath);
return tryJsonParse(res.data);
}
public static async post(path: string, params?: { [key: string]: any }) {
const cleanedPath = path.replace(/^\//, '');
const res = await axios.post(cleanedPath, params || {});
return tryJsonParse(res.data);
}
public static async put(path: string, params?: { [key: string]: any }) {
const cleanedPath = path.replace(/^\//, '');
const res = await axios.put(cleanedPath, params || {});
return tryJsonParse(res.data);
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////
function tryJsonParse(text: string) {
try {
return JSON.parse(text);
} catch (_) {
return text;
}
}