Ghost/ghost/admin/app/routes/settings/integrations/amp.js
Kevin Ansfield a23bbf2368 Clean up integrations routes loading states
no issue
- integrations index screen no longer needs to reload the settings cache
- individual built-in integration routes should handle their own reloading if necessary (eg, zapier doesn't need any settings so doesn't need a delay or loading template)
- built-in integration routes are no longer nested and so need their own loading templates
2018-10-04 11:41:11 +01:00

34 lines
902 B
JavaScript

import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
import styleBody from 'ghost-admin/mixins/style-body';
import {inject as service} from '@ember/service';
export default AuthenticatedRoute.extend(styleBody, {
settings: service(),
titleToken: 'AMP',
classNames: ['settings-view-integrations-amp'],
beforeModel() {
return this.settings.reload();
},
actions: {
save() {
this.get('controller').send('save');
},
willTransition(transition) {
let controller = this.get('controller');
let settings = controller.get('settings');
let modelIsDirty = settings.get('hasDirtyAttributes');
if (modelIsDirty) {
transition.abort();
controller.send('toggleLeaveSettingsModal', transition);
return;
}
}
}
});