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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
import fetch from 'node-fetch'
import { session } from 'app/session'
export function crud_fetch(type, tag) {
const uri = '/api/v1/' + type + '/' + (tag || '')
return {
index: q => {
return fetch(_get_url(uri, q), _get_headers())
.then(req => req.json())
.catch(error)
},
show: id => {
let url;
if (typeof id === 'object') {
url = _get_url(uri + id[0] + '/', id[1])
} else {
url = _get_url(uri + id + '/')
}
return fetch(url, _get_headers())
.then(req => req.json())
.catch(error)
},
create: data => {
return fetch(uri, post(data))
.then(req => req.json())
.catch(error)
},
update: data => {
return fetch(uri + data.id + '/', put(data))
.then(req => req.json())
.catch(error)
},
destroy: data => {
return fetch(uri + data.id + '/', destroy(data))
.then(req => req.json())
.catch(error)
},
}
}
function _get_url(_url, data) {
const url = new URL(window.location.origin + _url)
if (data) {
Object.keys(data).forEach(key => url.searchParams.append(key, data[key]))
}
return url
}
export function _get_headers() {
return {
method: 'GET',
credentials: 'same-origin',
headers: {
'Accept': 'application/json',
'Authorization': "JWT " + session.get("access_token"),
},
}
}
export function post(data) {
return {
method: 'POST',
body: JSON.stringify(data),
credentials: 'same-origin',
headers: {
'Accept': 'application/json',
'Authorization': "JWT " + session.get("access_token"),
'Content-Type': 'application/json'
},
}
}
export function postBody(data) {
return {
method: 'POST',
body: data,
credentials: 'same-origin',
headers: {
'Accept': 'application/json',
'Authorization': "JWT " + session.get("access_token"),
},
}
}
export function put(data) {
return {
method: 'PUT',
body: JSON.stringify(data),
credentials: 'same-origin',
headers: {
'Accept': 'application/json',
'Authorization': "JWT " + session.get("access_token"),
'Content-Type': 'application/json'
},
}
}
export function destroy(data) {
return {
method: 'DELETE',
body: JSON.stringify(data),
credentials: 'same-origin',
headers: {
'Accept': 'application/json',
'Authorization': "JWT " + session.get("access_token"),
'Content-Type': 'application/json'
},
}
}
function error(err) {
console.warn(err)
}
|