Ghost/ghost/admin/app/components/modals/design/view-theme.js

53 lines
1.4 KiB
JavaScript
Raw Normal View History

import Component from '@glimmer/component';
import InstallThemeModal from './install-theme';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
import {tracked} from '@glimmer/tracking';
export default class ViewThemeModal extends Component {
@service modals;
@service router;
static modalOptions = {
className: 'fullscreen-modal-total-overlay',
omitBackdrop: true
};
@tracked previewSize = 'desktop';
get isDesktopPreview() {
return this.previewSize === 'desktop';
}
get isMobilePreview() {
return this.previewSize === 'mobile';
}
willDestroy() {
super.willDestroy(...arguments);
// leave install modal visiible if it's in the success state because
// we're switching over to the design customisation screen in the bg
// and don't want to auto-close when this modal closes
if (this.installModal && !this.showingSuccessModal) {
this.installModal.close();
}
}
@action
installTheme() {
this.installModal = this.modals.open(InstallThemeModal, {
theme: this.args.data.theme,
onSuccess: () => {
this.showingSuccessModal = true;
this.router.transitionTo('settings.design');
}
});
}
@action
setPreviewSize(size) {
this.previewSize = size;
}
}