Ghost/ghost/admin/app/components/editor/modals/preview.js
Kevin Ansfield f76d7e9cd2 Renamed editor-labs component directory to editor
no issue

- cleanup now the old publish flow is no more
2022-05-25 09:13:08 +01:00

49 lines
1.2 KiB
JavaScript

import Component from '@glimmer/component';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency';
import {tracked} from '@glimmer/tracking';
export default class EditorPostPreviewModal extends Component {
@service settings;
@service session;
static modalOptions = {
className: 'fullscreen-modal-total-overlay publish-modal',
omitBackdrop: true,
ignoreBackdropClick: true
};
@tracked tab = this.args.data.currentTab || 'browser';
@tracked isChangingTab = false;
constructor() {
super(...arguments);
this.saveFirstTask.perform();
}
get skipAnimation() {
return this.args.data.skipAnimation || this.isChangingTab;
}
@action
changeTab(tab) {
this.tab = tab;
this.isChangingTab = true;
this.args.data.changeTab?.(tab);
}
@task
*saveFirstTask() {
const {saveTask, publishOptions, hasDirtyAttributes} = this.args.data;
if (saveTask.isRunning) {
return yield saveTask.last;
}
if (publishOptions.post.isDraft && hasDirtyAttributes) {
yield saveTask.perform();
}
}
}