2018-01-11 01:57:43 +03:00
|
|
|
/* eslint-disable ghost/ember/alias-model-in-controller */
|
2017-08-30 15:31:04 +03:00
|
|
|
import Controller from '@ember/controller';
|
2018-10-18 02:18:29 +03:00
|
|
|
import {computed} from '@ember/object';
|
2017-10-30 12:38:01 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
2018-10-18 02:18:29 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2017-08-30 15:31:04 +03:00
|
|
|
|
|
|
|
export default Controller.extend({
|
2018-10-18 02:18:29 +03:00
|
|
|
settings: service(),
|
|
|
|
store: service(),
|
|
|
|
|
|
|
|
_allIntegrations: null,
|
|
|
|
|
|
|
|
init() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this._allIntegrations = this.store.peekAll('integration');
|
|
|
|
},
|
|
|
|
|
|
|
|
// filter over the live query so that the list is automatically updated
|
|
|
|
// as integrations are added/removed
|
2019-02-15 17:18:05 +03:00
|
|
|
integrations: computed('_allIntegrations.@each.{isNew,type}', function () {
|
|
|
|
return this._allIntegrations.reject((integration) => {
|
|
|
|
return integration.isNew || integration.type !== 'custom';
|
|
|
|
});
|
2018-10-18 02:18:29 +03:00
|
|
|
}),
|
|
|
|
|
|
|
|
// use ember-concurrency so that we can use the derived state to show
|
|
|
|
// a spinner only in the integrations list and avoid delaying the whole
|
|
|
|
// screen display
|
|
|
|
fetchIntegrations: task(function* () {
|
|
|
|
return yield this.store.findAll('integration');
|
2019-04-04 14:25:16 +03:00
|
|
|
}),
|
|
|
|
|
|
|
|
// used by individual integration routes' `model` hooks
|
|
|
|
integrationModelHook(prop, value, route, transition) {
|
|
|
|
let integration = this.store.peekAll('integration').findBy(prop, value);
|
|
|
|
|
|
|
|
if (integration) {
|
|
|
|
return integration;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.fetchIntegrations.perform().then((integrations) => {
|
|
|
|
let integration = integrations.findBy(prop, value);
|
|
|
|
|
|
|
|
if (!integration) {
|
|
|
|
let path = transition.intent.url.replace(/^\//, '');
|
|
|
|
return route.replaceWith('error404', {path, status: 404});
|
|
|
|
}
|
|
|
|
|
|
|
|
return integration;
|
|
|
|
});
|
|
|
|
}
|
2017-08-30 15:31:04 +03:00
|
|
|
});
|