blob: a6a43b04d54060899225b87852313a46b81a1f20 (
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
|
export default async function(endpoint, fetch_failed, is_loading, data_name) {
const fetch_timeout = setTimeout(() => {
if(!fetch_failed.value) {
fetch_failed.value = `Failed to fetch ${data_name} data.`;
is_loading.value = false;
}
}, 5000);
const data_req = await fetch(`${window.location.protocol}//${window.location.host}/api/v1/${endpoint}`).catch(() => {
if(!fetch_failed.value) {
fetch_failed.value = `Failed to fetch ${data_name} data.`;
is_loading.value = false;
clearTimeout(fetch_timeout);
}
return null;
});
if(data_req !== null) {
const data = await data_req.json().catch(() => {
fetch_failed.value = "Failed to parse server response.";
});
if(data_req.ok) {
clearTimeout(fetch_timeout);
is_loading.value = false;
return data.data;
} else {
fetch_failed.value = `Failed to fetch ${data_name} data.`;
}
}
clearTimeout(fetch_timeout);
is_loading.value = false;
return null;
};
|