-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathssh.js
60 lines (53 loc) · 1.53 KB
/
ssh.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
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import RESTSerializer from '@ember-data/serializer/rest';
import { isNone, isBlank } from '@ember/utils';
import { assign } from '@ember/polyfills';
import { decamelize } from '@ember/string';
export default RESTSerializer.extend({
keyForAttribute: function (attr) {
return decamelize(attr);
},
pushPayload(store, payload) {
const transformedPayload = this.normalizeResponse(
store,
store.modelFor(payload.modelName),
payload,
payload.id,
'findRecord'
);
return store.push(transformedPayload);
},
normalizeItems(payload) {
assign(payload, payload.data);
delete payload.data;
return payload;
},
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
const responseJSON = this.normalizeItems(payload);
const { modelName } = primaryModelClass;
const transformedPayload = { [modelName]: responseJSON };
const ret = this._super(store, primaryModelClass, transformedPayload, id, requestType);
return ret;
},
serializeAttribute(snapshot, json, key, attributes) {
const val = snapshot.attr(key);
if (attributes.options.readOnly) {
return;
}
if (
attributes.type === 'object' &&
val &&
Object.keys(val).length > 0 &&
isNone(snapshot.changedAttributes()[key])
) {
return;
}
if (isBlank(val) && isNone(snapshot.changedAttributes()[key])) {
return;
}
this._super(snapshot, json, key, attributes);
},
});