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
|
|
|
|
integrations: computed('_allIntegrations.@each.isNew', function () {
|
|
|
|
return this._allIntegrations.rejectBy('isNew', true);
|
|
|
|
}),
|
|
|
|
|
|
|
|
// 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');
|
|
|
|
})
|
2017-08-30 15:31:04 +03:00
|
|
|
});
|