mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
a6f19ca807
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades
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.get('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.get('settings.secondaryNavigation') : this.get('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.get('settings.secondaryNavigation') : this.get('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.get('settings.navigation');
|
|
let secondaryNavItems = this.get('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;
|
|
}
|
|
}
|
|
}
|
|
}
|