mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
a23bbf2368
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
34 lines
902 B
JavaScript
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
});
|