Files
2015-06-18 15:43:21 -05:00

66 lines
1.6 KiB
JavaScript

import {IonicRoot} from '../app/app';
import {Animation} from '../../animations/animation';
import {ClickBlock} from '../../util/click-block';
import * as util from 'ionic/util';
export class Overlay {
/* Instance Methods */
open(animation) {
animation = animation || this.options.enterAnimation;
let enterAnimation = Animation.create(this.domElement, animation);
ClickBlock(true, enterAnimation.duration() + 200);
return new Promise(resolve => {
enterAnimation.play().then(() => {
ClickBlock(false);
enterAnimation.dispose();
resolve();
});
});
}
close(animation) {
return new Promise(resolve => {
animation = animation || this.options.leaveAnimation;
let leavingAnimation = Animation.create(this.domElement, animation);
leavingAnimation.play().then(() => {
this._clean();
leavingAnimation.dispose();
resolve();
})
});
}
extendOptions(opts) {
if (!this.options) this.options = {};
util.extend(this.options, opts);
}
_clean() {
this._dispose && this._dispose();
}
/* Static Methods */
static create(ComponentType: Type, opts) {
return new Promise((resolve, reject) => {
IonicRoot.append(ComponentType).then((ref) => {
let overlay = ref.instance;
overlay._dispose = ref.dispose;
overlay.domElement = ref.elementRef.domElement;
overlay.extendOptions(opts);
overlay.open();
resolve(overlay);
}).catch(err => {
console.error('Overlay create:', err);
reject(err);
});
});
}
}