2018-02-14 23:37:51 +00:00
|
|
|
import { get, computed } from '@ember/object';
|
2018-02-08 23:06:10 +00:00
|
|
|
import { assign } from '@ember/polyfills';
|
|
|
|
import { copy } from '@ember/object/internals';
|
2018-02-12 23:24:15 +00:00
|
|
|
import { makeArray } from '@ember/array';
|
2018-02-08 23:06:10 +00:00
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
import queryString from 'npm:query-string';
|
|
|
|
import ApplicationAdapter from './application';
|
|
|
|
|
|
|
|
export default ApplicationAdapter.extend({
|
|
|
|
watchList: service(),
|
|
|
|
store: service(),
|
|
|
|
|
2018-02-14 23:37:51 +00:00
|
|
|
xhrs: computed(function() {
|
|
|
|
return {};
|
|
|
|
}),
|
|
|
|
|
|
|
|
ajaxOptions(url) {
|
|
|
|
const ajaxOptions = this._super(...arguments);
|
|
|
|
|
|
|
|
const previousBeforeSend = ajaxOptions.beforeSend;
|
|
|
|
ajaxOptions.beforeSend = function(jqXHR) {
|
|
|
|
if (previousBeforeSend) {
|
|
|
|
previousBeforeSend(...arguments);
|
|
|
|
}
|
|
|
|
this.get('xhrs')[url] = jqXHR;
|
|
|
|
jqXHR.always(() => {
|
|
|
|
delete this.get('xhrs')[url];
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return ajaxOptions;
|
|
|
|
},
|
|
|
|
|
2018-02-12 23:24:15 +00:00
|
|
|
findAll(store, type, sinceToken, snapshotRecordArray, additionalParams = {}) {
|
|
|
|
const params = copy(additionalParams, true);
|
|
|
|
const url = this.urlForFindAll(type.modelName);
|
|
|
|
|
|
|
|
if (get(snapshotRecordArray, 'adapterOptions.watch')) {
|
|
|
|
params.index = this.get('watchList').getIndexFor(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.ajax(url, 'GET', {
|
|
|
|
data: params,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-02-08 23:06:10 +00:00
|
|
|
findRecord(store, type, id, snapshot, additionalParams = {}) {
|
|
|
|
const params = copy(additionalParams, true);
|
|
|
|
const url = this.buildURL(type.modelName, id, snapshot, 'findRecord');
|
|
|
|
|
|
|
|
if (get(snapshot, 'adapterOptions.watch')) {
|
|
|
|
params.index = this.get('watchList').getIndexFor(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.ajax(url, 'GET', {
|
|
|
|
data: params,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
reloadRelationship(model, relationshipName, watch = false) {
|
|
|
|
const relationship = model.relationshipFor(relationshipName);
|
|
|
|
if (relationship.kind !== 'belongsTo' && relationship.kind !== 'hasMany') {
|
|
|
|
throw new Error(
|
|
|
|
`${relationship.key} must be a belongsTo or hasMany, instead it was ${relationship.kind}`
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
const url = model[relationship.kind](relationship.key).link();
|
|
|
|
let params = {};
|
|
|
|
|
|
|
|
if (watch) {
|
|
|
|
params.index = this.get('watchList').getIndexFor(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url.includes('?')) {
|
|
|
|
params = assign(queryString.parse(url.split('?')[1]), params);
|
|
|
|
}
|
|
|
|
|
2018-02-12 23:24:15 +00:00
|
|
|
return this.ajax(url, 'GET', {
|
2018-02-08 23:06:10 +00:00
|
|
|
data: params,
|
|
|
|
}).then(json => {
|
|
|
|
this.get('store').pushPayload(relationship.type, {
|
2018-02-12 23:24:15 +00:00
|
|
|
[relationship.type]: makeArray(json),
|
2018-02-08 23:06:10 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
handleResponse(status, headers, payload, requestData) {
|
|
|
|
const newIndex = headers['x-nomad-index'];
|
|
|
|
if (newIndex) {
|
|
|
|
this.get('watchList').setIndexFor(requestData.url, newIndex);
|
|
|
|
}
|
|
|
|
return this._super(...arguments);
|
|
|
|
},
|
2018-02-14 23:37:51 +00:00
|
|
|
|
|
|
|
cancelFindRecord(modelName, id) {
|
|
|
|
const url = this.urlForFindRecord(id, modelName);
|
|
|
|
const xhr = this.get('xhrs')[url];
|
|
|
|
if (xhr) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
cancelFindAll(modelName) {
|
|
|
|
const xhr = this.get('xhrs')[this.urlForFindAll(modelName)];
|
|
|
|
if (xhr) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
cancelReloadRelationship(model, relationshipName) {
|
|
|
|
const relationship = model.relationshipFor(relationshipName);
|
|
|
|
if (relationship.kind !== 'belongsTo' && relationship.kind !== 'hasMany') {
|
|
|
|
throw new Error(
|
|
|
|
`${relationship.key} must be a belongsTo or hasMany, instead it was ${relationship.kind}`
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
const url = model[relationship.kind](relationship.key).link();
|
|
|
|
const xhr = this.get('xhrs')[url];
|
|
|
|
if (xhr) {
|
|
|
|
xhr.abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-02-08 23:06:10 +00:00
|
|
|
});
|