forked from piranna/redux-offline-crud-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.js
211 lines (177 loc) · 5.52 KB
/
actions.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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
const uuid = require('react-native-uuid')
const genActionTypes = require('./actionTypes')
// Join params with slashses
function composeUrl(...args) {
return args.filter(item => item != null).join('/')
}
function filterMethods([name, func]) {
return name !== 'dispatch' && func instanceof Function
}
function reduceActions(acum, [key, func]) {
return { ...acum, [key]: (...args) => this(func(...args)) }
}
function reduceFilteredMethods(acum, [key, func]) {
return { ...acum, [key]: func }
}
function reduceNamespaces(acum, name) {
return { ...acum, [name]: actions(name, this) }
}
function reduceNamespacesObject(acum, [name, options]) {
if (typeof options !== 'object') options = { options }
return reduceNamespaces.call({ ...this, ...options }, acum, name)
}
const removeLastChar = string => string.slice(0, -1)
function trim(string, char) {
return string.replace(new RegExp(
'^[' + char + ']+|[' + char + ']+$', 'g' // eslint-disable-line
), '')
}
function actions(basePath, options = {}) {
if (Array.isArray(basePath)) {
// basePath is an array, recursion
return basePath.reduce(reduceNamespaces.bind(options), {})
}
if (typeof basePath !== 'string') {
// basePath is an dictionary like object, recursion
return Object.entries(basePath).reduce(reduceNamespacesObject.bind(options), {})
}
// basePath is a string
if (basePath.endsWith('/')) basePath = removeLastChar(basePath)
const { dispatch, headers } = options
let baseUrl = options.baseUrl || ''
if (baseUrl.endsWith('/')) baseUrl = removeLastChar(baseUrl)
const actionTypes = genActionTypes(basePath)
function reduceMethods(acum, [name, func]) {
const actionType = `${basePath}#${name}`
// eslint-disable-next-line
return { ...acum, [name]: (id, body) => {
const meta = { func, id }
return {
type: actionType,
meta: {
offline: {
effect: {
url: composeUrl(baseUrl, basePath, id, name),
method: 'POST',
body,
headers,
},
commit: { type: `${actionType}_commit`, meta },
rollback: { type: `${actionType}_rollback`, meta },
},
},
}
} }
}
// create object with CREATE, GET, PUT, PATCH, DELETE
let result = {
create(body, prefix) {
const id = `tmp_id:${uuid.v4()}`
if (prefix) prefix = trim(prefix, '/')
return {
type: actionTypes.create,
payload: body,
meta: {
id,
offline: {
effect: {
url: composeUrl(baseUrl, prefix, basePath),
method: 'POST',
body,
headers,
},
commit: { type: actionTypes.create_commit, meta: { id } },
rollback: { type: actionTypes.create_rollback, meta: { id } },
},
},
}
},
read(id, ownId = undefined, prefix) {
if (prefix) prefix = trim(prefix, '/')
return {
type: actionTypes.read,
meta: {
id: ownId || id,
offline: {
effect: {
url: composeUrl(baseUrl, prefix, basePath, id),
method: 'GET',
headers,
},
commit: { type: actionTypes.read_commit, meta: { id: ownId || id } },
rollback: { type: actionTypes.read_rollback, meta: { id: ownId || id } },
},
},
}
},
update(id, body, ownId = undefined, prefix) {
if (prefix) prefix = trim(prefix, '/')
return {
type: actionTypes.update,
payload: body,
meta: {
id: ownId || id,
offline: {
effect: {
url: composeUrl(baseUrl, prefix, basePath, id),
method: 'PUT',
body,
headers,
},
commit: { type: actionTypes.update_commit, meta: { id: ownId || id } },
rollback: { type: actionTypes.update_rollback, meta: { id: ownId || id } },
},
},
}
},
patch(id, body, prefix) {
if (prefix) prefix = trim(prefix, '/')
return {
type: actionTypes.patch,
payload: body,
meta: {
id,
offline: {
effect: {
url: composeUrl(baseUrl, prefix, basePath, id),
method: 'PATCH',
body,
headers: { ...headers, 'content-type': 'merge-patch+json' },
},
commit: { type: actionTypes.patch_commit, meta: { id } },
rollback: { type: actionTypes.patch_rollback, meta: { id } },
},
},
}
},
delete(id, prefix) {
if (prefix) prefix = trim(prefix, '/')
return {
type: actionTypes.delete,
meta: {
id,
offline: {
effect: {
url: composeUrl(baseUrl, prefix, basePath, id),
method: 'DELETE',
headers,
},
commit: { type: actionTypes.delete_commit, meta: { id } },
rollback: { type: actionTypes.delete_rollback, meta: { id } },
},
},
}
},
}
// custom methods
let { resourceMethods } = options
if (!resourceMethods) {
resourceMethods = Object.entries(options).filter(filterMethods)
.reduce(reduceFilteredMethods, {})
}
// merge CRUD methods with custom ones
result = Object.entries(resourceMethods).reduce(reduceMethods, result)
if (!dispatch) return result
return Object.entries(result).reduce(reduceActions.bind(dispatch), {})
}
module.exports = actions