28 lines
861 B
JavaScript
28 lines
861 B
JavaScript
import ApplicationAdapter from './application';
|
|
|
|
export default class RecommendationSummaryAdapter extends ApplicationAdapter {
|
|
pathForType = () => 'recommendations';
|
|
|
|
urlForFindAll() {
|
|
const url = super.urlForFindAll(...arguments);
|
|
return `${url}?namespace=*`;
|
|
}
|
|
|
|
updateRecord(store, type, snapshot) {
|
|
const url = `${super.urlForCreateRecord('recommendations', snapshot)}/apply`;
|
|
|
|
const allRecommendationIds = snapshot.hasMany('recommendations').mapBy('id');
|
|
const excludedRecommendationIds = (snapshot.hasMany('excludedRecommendations') || []).mapBy(
|
|
'id'
|
|
);
|
|
const includedRecommendationIds = allRecommendationIds.removeObjects(excludedRecommendationIds);
|
|
|
|
const data = {
|
|
Apply: includedRecommendationIds,
|
|
Dismiss: excludedRecommendationIds,
|
|
};
|
|
|
|
return this.ajax(url, 'POST', { data });
|
|
}
|
|
}
|