mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
7b443d4b63
no issue The `config` service has been a source of confusion when writing with modern Ember patterns because it's use of the deprecated `ProxyMixin` forced all property access/setting to go via `.get()` and `.set()` whereas the rest of the system has mostly (there are a few other uses of ProxyObjects remaining) eliminated the use of the non-native get/set methods. - removed use of `ProxyMixin` in the `config` service by grabbing the API response after fetching and using `Object.defineProperty()` to add native getters/setters that pass through to a tracked object holding the API response data. Ember's autotracking automatically works across the native getters/setters so we can then use the service as if it was any other native object - updated all code to use `config.{attrName}` directly for getting/setting instead of `.get()` and `.set()` - removed unnecessary async around `config.availableTimezones` which wasn't making any async calls
149 lines
4.1 KiB
JavaScript
149 lines
4.1 KiB
JavaScript
import classic from 'ember-classic-decorator';
|
|
import {action, computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
/* eslint-disable ghost/ember/alias-model-in-controller */
|
|
import $ from 'jquery';
|
|
import Controller from '@ember/controller';
|
|
import NavigationItem from 'ghost-admin/models/navigation-item';
|
|
import RSVP from 'rsvp';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
@classic
|
|
export default class NavigationController extends Controller {
|
|
@service config;
|
|
@service ghostPaths;
|
|
@service notifications;
|
|
@service session;
|
|
@service settings;
|
|
|
|
dirtyAttributes = false;
|
|
newNavItem = null;
|
|
newSecondaryNavItem = null;
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
this.set('newNavItem', NavigationItem.create({isNew: true}));
|
|
this.set('newSecondaryNavItem', NavigationItem.create({isNew: true, isSecondary: true}));
|
|
}
|
|
|
|
@computed('config.blogUrl')
|
|
get blogUrl() {
|
|
let url = this.config.blogUrl;
|
|
|
|
return url.slice(-1) !== '/' ? `${url}/` : url;
|
|
}
|
|
|
|
@action
|
|
save() {
|
|
this.saveTask.perform();
|
|
}
|
|
|
|
@action
|
|
addNavItem(item) {
|
|
// If the url sent through is blank (user never edited the url)
|
|
if (item.get('url') === '') {
|
|
item.set('url', '/');
|
|
}
|
|
|
|
return item.validate().then(() => {
|
|
this.addNewNavItem(item);
|
|
});
|
|
}
|
|
|
|
@action
|
|
deleteNavItem(item) {
|
|
if (!item) {
|
|
return;
|
|
}
|
|
|
|
let navItems = item.isSecondary ? this.settings.secondaryNavigation : this.settings.navigation;
|
|
|
|
navItems.removeObject(item);
|
|
this.set('dirtyAttributes', true);
|
|
}
|
|
|
|
@action
|
|
updateLabel(label, navItem) {
|
|
if (!navItem) {
|
|
return;
|
|
}
|
|
|
|
if (navItem.get('label') !== label) {
|
|
navItem.set('label', label);
|
|
this.set('dirtyAttributes', true);
|
|
}
|
|
}
|
|
|
|
@action
|
|
updateUrl(url, navItem) {
|
|
if (!navItem) {
|
|
return;
|
|
}
|
|
|
|
if (navItem.get('url') !== url) {
|
|
navItem.set('url', url);
|
|
this.set('dirtyAttributes', true);
|
|
}
|
|
|
|
return url;
|
|
}
|
|
|
|
@action
|
|
reset() {
|
|
this.set('newNavItem', NavigationItem.create({isNew: true}));
|
|
this.set('newSecondaryNavItem', NavigationItem.create({isNew: true, isSecondary: true}));
|
|
}
|
|
|
|
addNewNavItem(item) {
|
|
let navItems = item.isSecondary ? this.settings.secondaryNavigation : this.settings.navigation;
|
|
|
|
item.set('isNew', false);
|
|
navItems.pushObject(item);
|
|
this.set('dirtyAttributes', true);
|
|
|
|
if (item.isSecondary) {
|
|
this.set('newSecondaryNavItem', NavigationItem.create({isNew: true, isSecondary: true}));
|
|
$('.gh-blognav-container:last .gh-blognav-line:last input:first').focus();
|
|
} else {
|
|
this.set('newNavItem', NavigationItem.create({isNew: true}));
|
|
$('.gh-blognav-container:first .gh-blognav-line:last input:first').focus();
|
|
}
|
|
}
|
|
|
|
@task
|
|
*saveTask() {
|
|
let navItems = this.settings.navigation;
|
|
let secondaryNavItems = this.settings.secondaryNavigation;
|
|
|
|
let notifications = this.notifications;
|
|
let validationPromises = [];
|
|
|
|
if (!this.newNavItem.get('isBlank')) {
|
|
validationPromises.pushObject(this.send('addNavItem', this.newNavItem));
|
|
}
|
|
|
|
if (!this.newSecondaryNavItem.get('isBlank')) {
|
|
validationPromises.pushObject(this.send('addNavItem', this.newSecondaryNavItem));
|
|
}
|
|
|
|
navItems.forEach((item) => {
|
|
validationPromises.pushObject(item.validate());
|
|
});
|
|
|
|
secondaryNavItems.forEach((item) => {
|
|
validationPromises.pushObject(item.validate());
|
|
});
|
|
|
|
try {
|
|
yield RSVP.all(validationPromises);
|
|
this.set('dirtyAttributes', false);
|
|
return yield this.settings.save();
|
|
} catch (error) {
|
|
if (error) {
|
|
notifications.showAPIError(error);
|
|
throw error;
|
|
}
|
|
}
|
|
}
|
|
}
|