forked from gaoding-inc/v-model
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodel-base.js
276 lines (217 loc) · 7.24 KB
/
model-base.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/**
* ModelBase
*
* @author xiaomi
*/
import axios from 'axios';
import lodash from 'lodash';
import Promise from 'bluebird';
import pathToRegexp from 'path-to-regexp';
const isArray = Array.isArray;
const rUpdateMethod = /^(POST|PUT|PATCH)$/i;
const defaultGetPagination = (response, key = 'x-pagination') => {
let pagination = null;
try {
const headers = response.headers;
pagination = JSON.parse(headers[key]);
}
catch(ex) { }
if(!pagination) {
pagination = {
total: 0,
size: 20,
num: 1
};
}
return pagination;
};
export default class ModelBase {
static cacher = null;
static http = axios.create();
constructor(data) {
this.$defineResult();
this.$reset(data);
}
$defineResult() {
const innerProps = {
promise: Promise.resolve(this),
resolved: true,
response: null
};
lodash.forEach(innerProps, (val, k) => {
Object.defineProperty(this, '$' + k, {
configurable: true,
enumerable: false,
writable: true,
value: val
});
});
}
$reset(data) {
lodash.forEach(this, (val, k) => {
if(k !== '$resolved') {
delete this[k];
}
});
if(typeof data === 'object') {
lodash.forEach(data, (val, k) => {
this.$set(k, val);
});
}
return this;
}
$set(key, val) {
this[key] = val;
}
$request(options) {
const Model = this.constructor;
options = lodash.clone(options);
// mixin params, data
options.params = lodash.assign({}, Model.params, options.params);
// all data for url
const allData = lodash.assign({},
options.params,
options.data
);
// clear params
lodash.forEach(Model.urlTokens, token => {
if(token && token.name) {
delete options.params[token.name];
}
});
// wrap by bluebird
// support Cancellation
return new Promise((resolve, reject, onCancel) => {
options = lodash.assign({
url: Model.url(allData)
}, Model.options, options);
// clean
if(!rUpdateMethod.test(options.method)) {
delete options.data;
}
// cancellation
if(typeof onCancel === 'function') {
const source = axios.CancelToken.source();
onCancel(() => {
source.cancel('Request canceled');
});
options.cancelToken = source.token;
}
return Model.http.request(options).then(resolve, reject);
});
}
static extend(url, actions, staticProps, options) {
const Model = class Model extends this {};
const urlTokens = pathToRegexp.parse(url);
// optional last token
const urlLastToken = urlTokens[urlTokens.length - 1];
if(typeof urlLastToken === 'object') {
urlLastToken.optional = true;
}
Model.url = pathToRegexp.tokensToFunction(urlTokens);
Model.urlTokens = urlTokens;
Model.options = options;
// staic props
lodash.assign(Model, staticProps);
// actions
lodash.forEach(actions, (action, name) => {
Model.addAction(name, action);
});
return Model;
}
static addAction(name, action) {
const method = action.method;
const hasPagination = action.hasPagination;
const isArrayResult = !!(action.isArray || hasPagination);
const isUpdateMethod = rUpdateMethod.test(method);
this.prototype['$' + name] = function(params) {
const Model = this.constructor;
// update
if(isUpdateMethod) {
lodash.forEach(params, (val, k) => {
this.$set(k, val);
});
return Model[name](this).$promise;
}
return Model[name](params, this).$promise;
};
this[name] = function(params, data) {
const Model = this;
const ModelOptions = Model.options || {};
// switch params
if(isUpdateMethod) {
[data, params] = [params, data];
}
// mixin params
params = lodash.assign({}, action.params, params);
// getPagination
const getPagination = ModelOptions.getPagination
? ModelOptions.getPagination
: defaultGetPagination;
const model = (data instanceof Model) ? data : new Model(data);
const result = isArrayResult
? hasPagination
? {
pagination: getPagination(),
items: []
} : []
: model;
// Define result ext props
if(result !== model) {
model.$defineResult.call(result);
}
// cacher, only support non update method
const cacher = action.cacher || Model.cacher;
const allowCacher = action.allowCacher;
const fetchCache = () => {
if(!isUpdateMethod && allowCacher && cacher) {
const cache = cacher.get(params, Model, result);
lodash.merge(result, cache);
}
};
const updateCache = () => {
if(!isUpdateMethod && allowCacher && cacher) {
cacher.set(result, params, Model);
}
};
fetchCache();
// options
const options = lodash.assign({
params: params,
data: model
}, action);
// set $resolved
model.$set.call(result, '$resolved', false);
result.$promise = model.$request(options)
.then(response => {
const data = response.data;
result.$response = response;
if(isArray(data) !== isArrayResult) {
throw new Error(`Model.${name} expected an ${isArrayResult ? 'array' : 'object'} but got an ${isArray(data) ? 'array' : 'object'}`);
}
if(!isArrayResult) {
model.$reset(data);
}
else {
const items = hasPagination ? result.items : result;
// fill items
items.length = 0;
data.forEach(item => {
items.push(new Model(item));
});
if(hasPagination) {
const pagination = getPagination(response);
lodash.assign(result.pagination, pagination);
}
}
// update cache
updateCache();
return result;
})
.finally(() => {
model.$set.call(result, '$resolved', true);
});
return result;
};
}
}