mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
e932af26a7
refs https://github.com/TryGhost/Team/issues/451 Start of new post preview prototype. - adds preview button next to publish button - opens new combined preview modal with desktop/email/social tabs - desktop preview shows front-end preview url in iframe - email preview fetches preview data as per the older email preview modal - social preview to come later
21 lines
481 B
JavaScript
21 lines
481 B
JavaScript
import ModalBase from 'ghost-admin/components/modal-base';
|
|
import classic from 'ember-classic-decorator';
|
|
import {action} from '@ember/object';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
// TODO: update modals to work fully with Glimmer components
|
|
@classic
|
|
export default class ModalPostPreviewComponent extends ModalBase {
|
|
@tracked tab = 'desktop';
|
|
|
|
@action
|
|
changeTab(tab) {
|
|
this.tab = tab;
|
|
}
|
|
|
|
@action
|
|
close() {
|
|
this.closeModal();
|
|
}
|
|
}
|