mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 13:52:10 +03:00
fb239054a0
follow up from #95 - converts components to use ember-cli-shims
85 lines
2.2 KiB
JavaScript
85 lines
2.2 KiB
JavaScript
import RSVP from 'rsvp';
|
|
import injectService from 'ember-service/inject';
|
|
import {A as emberA} from 'ember-array/utils';
|
|
import {isBlank} from 'ember-utils';
|
|
import on from 'ember-evented/on';
|
|
import run from 'ember-runloop';
|
|
|
|
import LiquidTether from 'liquid-tether/components/liquid-tether';
|
|
import {invokeAction} from 'ember-invoke-action';
|
|
|
|
const {Promise} = RSVP;
|
|
|
|
const FullScreenModalComponent = LiquidTether.extend({
|
|
to: 'fullscreen-modal',
|
|
target: 'document.body',
|
|
targetModifier: 'visible',
|
|
targetAttachment: 'top center',
|
|
attachment: 'top center',
|
|
tetherClass: 'fullscreen-modal',
|
|
overlayClass: 'fullscreen-modal-background',
|
|
modalPath: 'unknown',
|
|
|
|
dropdown: injectService(),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.modalPath = `modals/${this.get('modal')}`;
|
|
},
|
|
|
|
setTetherClass: on('init', function () {
|
|
let tetherClass = this.get('tetherClass');
|
|
let modifiers = (this.get('modifier') || '').split(' ');
|
|
let tetherClasses = emberA([tetherClass]);
|
|
|
|
modifiers.forEach((modifier) => {
|
|
if (!isBlank(modifier)) {
|
|
let className = `${tetherClass}-${modifier}`;
|
|
tetherClasses.push(className);
|
|
}
|
|
});
|
|
|
|
this.set('tetherClass', tetherClasses.join(' '));
|
|
}),
|
|
|
|
closeDropdowns: on('didInsertElement', function () {
|
|
run.schedule('afterRender', this, function () {
|
|
this.get('dropdown').closeDropdowns();
|
|
});
|
|
}),
|
|
|
|
actions: {
|
|
close() {
|
|
// Because we return the promise from invokeAction, we have
|
|
// to check if "close" exists first
|
|
if (this.get('close')) {
|
|
return invokeAction(this, 'close');
|
|
}
|
|
|
|
return new Promise((resolve) => {
|
|
resolve();
|
|
});
|
|
},
|
|
|
|
confirm() {
|
|
if (this.get('confirm')) {
|
|
return invokeAction(this, 'confirm');
|
|
}
|
|
|
|
return new Promise((resolve) => {
|
|
resolve();
|
|
});
|
|
},
|
|
|
|
clickOverlay() {
|
|
this.send('close');
|
|
}
|
|
}
|
|
});
|
|
|
|
FullScreenModalComponent.reopenClass({
|
|
positionalParams: ['modal']
|
|
});
|
|
|
|
export default FullScreenModalComponent;
|