Ghost/ghost/admin/app/controllers/settings/integrations.js
Kevin Ansfield b51bc4751d Added integration details to Zapier integration screen behind dev flag
no issue
- the new version of our Zapier App uses API Key auth so we need to expose the details on the Zapier integration screen
- extracted `copyTextToClipboard` into a util function
- added `integrationModelHook` method to `settings.integrations` controller to remove duplication in the `settings.integration` and `settings.integration.zapier` routes
- fixed missing "Zapier" title token
2019-04-04 12:25:16 +01:00

53 lines
1.7 KiB
JavaScript

/* eslint-disable ghost/ember/alias-model-in-controller */
import Controller from '@ember/controller';
import {computed} from '@ember/object';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency';
export default Controller.extend({
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,type}', function () {
return this._allIntegrations.reject((integration) => {
return integration.isNew || integration.type !== 'custom';
});
}),
// 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');
}),
// 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;
});
}
});