2022-05-12 01:46:01 +03:00
|
|
|
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',
|
|
|
|
omitBackdrop: true,
|
|
|
|
ignoreBackdropClick: true
|
|
|
|
};
|
|
|
|
|
2022-05-13 19:43:14 +03:00
|
|
|
@tracked tab = this.args.data.currentTab || 'browser';
|
2022-05-12 01:46:01 +03:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
|
|
|
this.saveFirstTask.perform();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
changeTab(tab) {
|
|
|
|
this.tab = tab;
|
2022-05-13 19:43:14 +03:00
|
|
|
this.args.data.changeTab?.(tab);
|
2022-05-12 01:46:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@task
|
|
|
|
*saveFirstTask() {
|
|
|
|
const {saveTask, post, hasDirtyAttributes} = this.args.data;
|
|
|
|
|
|
|
|
if (saveTask.isRunning) {
|
|
|
|
return yield saveTask.last;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (post.isDraft && hasDirtyAttributes) {
|
|
|
|
yield saveTask.perform();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|