primeng
Version:
[](https://opensource.org/licenses/MIT) [](https://gitter.im/primefaces/primeng?ut
234 lines • 9.93 kB
JavaScript
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
var core_1 = require("@angular/core");
var common_1 = require("@angular/common");
var domhandler_1 = require("../dom/domhandler");
var animations_1 = require("@angular/animations");
var OverlayPanel = /** @class */ (function () {
function OverlayPanel(el, domHandler, renderer, cd) {
this.el = el;
this.domHandler = domHandler;
this.renderer = renderer;
this.cd = cd;
this.dismissable = true;
this.autoZIndex = true;
this.baseZIndex = 0;
this.showTransitionOptions = '225ms ease-out';
this.hideTransitionOptions = '195ms ease-in';
this.onShow = new core_1.EventEmitter();
this.onHide = new core_1.EventEmitter();
this.visible = false;
}
OverlayPanel.prototype.bindDocumentClickListener = function () {
var _this = this;
if (!this.documentClickListener && this.dismissable) {
this.documentClickListener = this.renderer.listen('document', 'click', function () {
if (!_this.selfClick && !_this.targetClickEvent) {
_this.hide();
}
_this.selfClick = false;
_this.targetClickEvent = false;
_this.cd.markForCheck();
});
}
};
OverlayPanel.prototype.unbindDocumentClickListener = function () {
if (this.documentClickListener) {
this.documentClickListener();
this.documentClickListener = null;
}
};
OverlayPanel.prototype.toggle = function (event, target) {
var _this = this;
if (event.type === 'click') {
this.targetClickEvent = true;
}
if (this.visible) {
this.visible = false;
if (this.hasTargetChanged(event, target)) {
this.target = target || event.currentTarget || event.target;
setTimeout(function () {
_this.visible = true;
}, 200);
}
}
else {
this.show(event, target);
}
};
OverlayPanel.prototype.show = function (event, target) {
if (event.type === 'click') {
this.targetClickEvent = true;
}
this.target = target || event.currentTarget || event.target;
this.visible = true;
};
OverlayPanel.prototype.hasTargetChanged = function (event, target) {
return this.target != null && this.target !== (target || event.currentTarget || event.target);
};
OverlayPanel.prototype.appendContainer = function () {
if (this.appendTo) {
if (this.appendTo === 'body')
document.body.appendChild(this.container);
else
this.domHandler.appendChild(this.container, this.appendTo);
}
};
OverlayPanel.prototype.restoreAppend = function () {
if (this.container && this.appendTo) {
this.el.nativeElement.appendChild(this.container);
}
};
OverlayPanel.prototype.onAnimationStart = function (event) {
switch (event.toState) {
case 'visible':
this.container = event.element;
this.onShow.emit(null);
this.appendContainer();
if (this.autoZIndex) {
this.container.style.zIndex = String(this.baseZIndex + (++domhandler_1.DomHandler.zindex));
}
this.domHandler.absolutePosition(this.container, this.target);
this.bindDocumentClickListener();
this.bindDocumentResizeListener();
break;
case 'void':
this.onContainerDestroy();
this.onHide.emit({});
break;
}
};
OverlayPanel.prototype.hide = function () {
this.visible = false;
};
OverlayPanel.prototype.onPanelClick = function (event) {
if (this.closeClick) {
this.hide();
this.closeClick = false;
}
else if (this.dismissable) {
this.selfClick = true;
}
};
OverlayPanel.prototype.onCloseClick = function (event) {
this.closeClick = true;
event.preventDefault();
};
OverlayPanel.prototype.onWindowResize = function (event) {
this.hide();
};
OverlayPanel.prototype.bindDocumentResizeListener = function () {
this.documentResizeListener = this.onWindowResize.bind(this);
window.addEventListener('resize', this.documentResizeListener);
};
OverlayPanel.prototype.unbindDocumentResizeListener = function () {
if (this.documentResizeListener) {
window.removeEventListener('resize', this.documentResizeListener);
this.documentResizeListener = null;
}
};
OverlayPanel.prototype.onContainerDestroy = function () {
this.unbindDocumentClickListener();
this.unbindDocumentResizeListener();
this.selfClick = false;
this.targetClickEvent = false;
};
OverlayPanel.prototype.ngOnDestroy = function () {
this.target = null;
if (this.container) {
this.restoreAppend();
this.onContainerDestroy();
}
};
__decorate([
core_1.Input(),
__metadata("design:type", Boolean)
], OverlayPanel.prototype, "dismissable", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", Boolean)
], OverlayPanel.prototype, "showCloseIcon", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", Object)
], OverlayPanel.prototype, "style", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", String)
], OverlayPanel.prototype, "styleClass", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", Object)
], OverlayPanel.prototype, "appendTo", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", Boolean)
], OverlayPanel.prototype, "autoZIndex", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", Number)
], OverlayPanel.prototype, "baseZIndex", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", String)
], OverlayPanel.prototype, "showTransitionOptions", void 0);
__decorate([
core_1.Input(),
__metadata("design:type", String)
], OverlayPanel.prototype, "hideTransitionOptions", void 0);
__decorate([
core_1.Output(),
__metadata("design:type", core_1.EventEmitter)
], OverlayPanel.prototype, "onShow", void 0);
__decorate([
core_1.Output(),
__metadata("design:type", core_1.EventEmitter)
], OverlayPanel.prototype, "onHide", void 0);
OverlayPanel = __decorate([
core_1.Component({
selector: 'p-overlayPanel',
template: "\n <div [ngClass]=\"'ui-overlaypanel ui-widget ui-widget-content ui-corner-all ui-shadow'\" [ngStyle]=\"style\" [class]=\"styleClass\" (click)=\"onPanelClick($event)\"\n [@animation]=\"{value: 'visible', params: {showTransitionParams: showTransitionOptions, hideTransitionParams: hideTransitionOptions}}\" (@animation.start)=\"onAnimationStart($event)\" *ngIf=\"visible\">\n <div class=\"ui-overlaypanel-content\">\n <ng-content></ng-content>\n </div>\n <a href=\"#\" *ngIf=\"showCloseIcon\" class=\"ui-overlaypanel-close ui-state-default\" (click)=\"onCloseClick($event)\">\n <span class=\"ui-overlaypanel-close-icon pi pi-times\"></span>\n </a>\n </div>\n ",
animations: [
animations_1.trigger('animation', [
animations_1.state('void', animations_1.style({
transform: 'translateY(5%)',
opacity: 0
})),
animations_1.state('visible', animations_1.style({
transform: 'translateY(0)',
opacity: 1
})),
animations_1.transition('void => visible', animations_1.animate('{{showTransitionParams}}')),
animations_1.transition('visible => void', animations_1.animate('{{hideTransitionParams}}'))
])
],
providers: [domhandler_1.DomHandler]
}),
__metadata("design:paramtypes", [core_1.ElementRef, domhandler_1.DomHandler, core_1.Renderer2, core_1.ChangeDetectorRef])
], OverlayPanel);
return OverlayPanel;
}());
exports.OverlayPanel = OverlayPanel;
var OverlayPanelModule = /** @class */ (function () {
function OverlayPanelModule() {
}
OverlayPanelModule = __decorate([
core_1.NgModule({
imports: [common_1.CommonModule],
exports: [OverlayPanel],
declarations: [OverlayPanel]
})
], OverlayPanelModule);
return OverlayPanelModule;
}());
exports.OverlayPanelModule = OverlayPanelModule;
//# sourceMappingURL=overlaypanel.js.map