mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
1d4cc70246
closes https://github.com/TryGhost/Ghost/issues/8515 - ensure the theme record is removed from the store when deleting because theme IDs get re-used unlike other models
179 lines
5.1 KiB
JavaScript
179 lines
5.1 KiB
JavaScript
import $ from 'jquery';
|
|
import Controller from 'ember-controller';
|
|
import NavigationItem from 'ghost-admin/models/navigation-item';
|
|
import RSVP from 'rsvp';
|
|
import computed, {notEmpty} from 'ember-computed';
|
|
import injectService from 'ember-service/inject';
|
|
import {isEmpty} from 'ember-utils';
|
|
import {isThemeValidationError} from 'ghost-admin/services/ajax';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default Controller.extend({
|
|
config: injectService(),
|
|
ghostPaths: injectService(),
|
|
notifications: injectService(),
|
|
session: injectService(),
|
|
|
|
newNavItem: null,
|
|
|
|
themes: null,
|
|
themeToDelete: null,
|
|
showDeleteThemeModal: notEmpty('themeToDelete'),
|
|
|
|
blogUrl: computed('config.blogUrl', function () {
|
|
let url = this.get('config.blogUrl');
|
|
|
|
return url.slice(-1) !== '/' ? `${url}/` : url;
|
|
}),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.set('newNavItem', NavigationItem.create({isNew: true}));
|
|
},
|
|
|
|
save: task(function* () {
|
|
let navItems = this.get('model.navigation');
|
|
let newNavItem = this.get('newNavItem');
|
|
let notifications = this.get('notifications');
|
|
let validationPromises = [];
|
|
|
|
if (!newNavItem.get('isBlank')) {
|
|
validationPromises.pushObject(this.send('addNavItem'));
|
|
}
|
|
|
|
navItems.map((item) => {
|
|
validationPromises.pushObject(item.validate());
|
|
});
|
|
|
|
try {
|
|
yield RSVP.all(validationPromises);
|
|
return yield this.get('model').save();
|
|
|
|
} catch (error) {
|
|
if (error) {
|
|
notifications.showAPIError(error);
|
|
throw error;
|
|
}
|
|
}
|
|
}),
|
|
|
|
addNewNavItem() {
|
|
let navItems = this.get('model.navigation');
|
|
let newNavItem = this.get('newNavItem');
|
|
|
|
newNavItem.set('isNew', false);
|
|
navItems.pushObject(newNavItem);
|
|
this.set('newNavItem', NavigationItem.create({isNew: true}));
|
|
},
|
|
|
|
_deleteTheme() {
|
|
let theme = this.get('store').peekRecord('theme', this.get('themeToDelete').name);
|
|
|
|
if (!theme) {
|
|
return;
|
|
}
|
|
|
|
return theme.destroyRecord().then(() => {
|
|
// HACK: this is a private method, we need to unload from the store
|
|
// here so that uploading another theme with the same "id" doesn't
|
|
// attempt to update the deleted record
|
|
theme.unloadRecord();
|
|
}).catch((error) => {
|
|
this.get('notifications').showAPIError(error);
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
save() {
|
|
this.get('save').perform();
|
|
},
|
|
|
|
addNavItem() {
|
|
let newNavItem = this.get('newNavItem');
|
|
|
|
// If the url sent through is blank (user never edited the url)
|
|
if (newNavItem.get('url') === '') {
|
|
newNavItem.set('url', '/');
|
|
}
|
|
|
|
return newNavItem.validate().then(() => {
|
|
this.addNewNavItem();
|
|
});
|
|
},
|
|
|
|
deleteNavItem(item) {
|
|
if (!item) {
|
|
return;
|
|
}
|
|
|
|
let navItems = this.get('model.navigation');
|
|
|
|
navItems.removeObject(item);
|
|
},
|
|
|
|
reorderItems(navItems) {
|
|
this.set('model.navigation', navItems);
|
|
},
|
|
|
|
updateUrl(url, navItem) {
|
|
if (!navItem) {
|
|
return;
|
|
}
|
|
|
|
navItem.set('url', url);
|
|
},
|
|
|
|
activateTheme(theme) {
|
|
return theme.activate().then((theme) => {
|
|
if (!isEmpty(theme.get('warnings'))) {
|
|
this.set('themeWarnings', theme.get('warnings'));
|
|
this.set('showThemeWarningsModal', true);
|
|
}
|
|
}).catch((error) => {
|
|
if (isThemeValidationError(error)) {
|
|
this.set('themeWarnings', error.errors[0].errorDetails);
|
|
this.set('showThemeErrorsModal', true);
|
|
return;
|
|
}
|
|
|
|
throw error;
|
|
});
|
|
},
|
|
|
|
downloadTheme(theme) {
|
|
let themeURL = `${this.get('ghostPaths.apiRoot')}/themes/${theme.name}`;
|
|
let accessToken = this.get('session.data.authenticated.access_token');
|
|
let downloadURL = `${themeURL}/download/?access_token=${accessToken}`;
|
|
let iframe = $('#iframeDownload');
|
|
|
|
if (iframe.length === 0) {
|
|
iframe = $('<iframe>', {id: 'iframeDownload'}).hide().appendTo('body');
|
|
}
|
|
|
|
iframe.attr('src', downloadURL);
|
|
},
|
|
|
|
deleteTheme(theme) {
|
|
if (theme) {
|
|
return this.set('themeToDelete', theme);
|
|
}
|
|
|
|
return this._deleteTheme();
|
|
},
|
|
|
|
hideDeleteThemeModal() {
|
|
this.set('themeToDelete', null);
|
|
},
|
|
|
|
hideThemeWarningsModal() {
|
|
this.set('themeWarnings', null);
|
|
this.set('showThemeWarningsModal', false);
|
|
this.set('showThemeErrorsModal', false);
|
|
},
|
|
|
|
reset() {
|
|
this.set('newNavItem', NavigationItem.create({isNew: true}));
|
|
}
|
|
}
|
|
});
|