mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
146 lines
5.2 KiB
JavaScript
146 lines
5.2 KiB
JavaScript
import $ from 'jquery';
|
|
import Mixin from 'ember-metal/mixin';
|
|
import RSVP from 'rsvp';
|
|
import run from 'ember-runloop';
|
|
|
|
import ShortcutsRoute from 'ghost-admin/mixins/shortcuts-route';
|
|
import styleBody from 'ghost-admin/mixins/style-body';
|
|
import ctrlOrCmd from 'ghost-admin/utils/ctrl-or-cmd';
|
|
|
|
let generalShortcuts = {};
|
|
generalShortcuts[`${ctrlOrCmd}+alt+p`] = 'publish';
|
|
|
|
export default Mixin.create(styleBody, ShortcutsRoute, {
|
|
classNames: ['editor'],
|
|
|
|
shortcuts: generalShortcuts,
|
|
|
|
actions: {
|
|
save() {
|
|
let selectedElement = $(document.activeElement);
|
|
|
|
if (selectedElement.is('input[type="text"]')) {
|
|
selectedElement.trigger('focusout');
|
|
}
|
|
|
|
run.scheduleOnce('actions', this, function () {
|
|
this.get('controller').send('save');
|
|
});
|
|
},
|
|
|
|
publish() {
|
|
let controller = this.get('controller');
|
|
|
|
controller.send('setSaveType', 'publish');
|
|
controller.send('save');
|
|
},
|
|
|
|
willTransition(transition) {
|
|
let controller = this.get('controller');
|
|
let scratch = controller.get('model.scratch');
|
|
let controllerIsDirty = controller.get('hasDirtyAttributes');
|
|
let model = controller.get('model');
|
|
let state = model.getProperties('isDeleted', 'isSaving', 'hasDirtyAttributes', 'isNew');
|
|
let deletedWithoutChanges,
|
|
fromNewToEdit;
|
|
|
|
if (this.get('upgradeStatus.isRequired')) {
|
|
return this._super(...arguments);
|
|
}
|
|
|
|
// if a save is in-flight we don't know whether or not it's safe to leave
|
|
// so we abort the transition and retry after the save has completed.
|
|
if (state.isSaving) {
|
|
transition.abort();
|
|
return run.later(this, function () {
|
|
RSVP.resolve(controller.get('lastPromise')).then(() => {
|
|
transition.retry();
|
|
});
|
|
}, 100);
|
|
}
|
|
|
|
fromNewToEdit = this.get('routeName') === 'editor.new'
|
|
&& transition.targetName === 'editor.edit'
|
|
&& transition.intent.contexts
|
|
&& transition.intent.contexts[0]
|
|
&& transition.intent.contexts[0].id === model.get('id');
|
|
|
|
deletedWithoutChanges = state.isDeleted
|
|
&& (state.isSaving || !state.hasDirtyAttributes);
|
|
|
|
if (!fromNewToEdit && !deletedWithoutChanges && controllerIsDirty) {
|
|
transition.abort();
|
|
controller.send('toggleLeaveEditorModal', transition);
|
|
return;
|
|
}
|
|
|
|
// The controller may hold model state that will be lost in the transition,
|
|
// so we need to apply it now.
|
|
if (fromNewToEdit && controllerIsDirty) {
|
|
if (scratch !== model.get('mobiledoc')) {
|
|
model.set('mobiledoc', scratch);
|
|
}
|
|
}
|
|
|
|
if (state.isNew) {
|
|
model.deleteRecord();
|
|
}
|
|
|
|
// since the transition is now certain to complete..
|
|
window.onbeforeunload = null;
|
|
|
|
// remove model-related listeners created in editor-base-route
|
|
this.detachModelHooks(controller, model);
|
|
}
|
|
},
|
|
|
|
renderTemplate(controller, model) {
|
|
this._super(controller, model);
|
|
|
|
this.render('post-settings-menu', {
|
|
model,
|
|
into: 'application',
|
|
outlet: 'settings-menu'
|
|
});
|
|
},
|
|
|
|
attachModelHooks(controller, model) {
|
|
// this will allow us to track when the model is saved and update the controller
|
|
// so that we can be sure controller.hasDirtyAttributes is correct, without having to update the
|
|
// controller on each instance of `model.save()`.
|
|
//
|
|
// another reason we can't do this on `model.save().then()` is because the post-settings-menu
|
|
// also saves the model, and passing messages is difficult because we have two
|
|
// types of editor controllers, and the PSM also exists on the posts.post route.
|
|
//
|
|
// The reason we can't just keep this functionality in the editor controller is
|
|
// because we need to remove these handlers on `willTransition` in the editor route.
|
|
model.on('didCreate', controller, controller.get('modelSaved'));
|
|
model.on('didUpdate', controller, controller.get('modelSaved'));
|
|
},
|
|
|
|
detachModelHooks(controller, model) {
|
|
model.off('didCreate', controller, controller.get('modelSaved'));
|
|
model.off('didUpdate', controller, controller.get('modelSaved'));
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
let tags = model.get('tags');
|
|
|
|
model.set('scratch', model.get('mobiledoc'));
|
|
model.set('titleScratch', model.get('title'));
|
|
|
|
this._super(...arguments);
|
|
|
|
if (tags) {
|
|
// used to check if anything has changed in the editor
|
|
controller.set('previousTagNames', tags.mapBy('name'));
|
|
} else {
|
|
controller.set('previousTagNames', []);
|
|
}
|
|
|
|
// attach model-related listeners created in editor-base-route
|
|
this.attachModelHooks(controller, model);
|
|
}
|
|
});
|