primeng
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primeng) [ • 12.8 kB
JavaScript
import { ViewContainerRef, Directive, ComponentFactoryResolver, ChangeDetectorRef, Renderer2, NgZone, ViewChild, Component, NgModule, ApplicationRef, Injector, Injectable } from '@angular/core';
import { trigger, state, style, transition, animate } from '@angular/animations';
import { CommonModule } from '@angular/common';
import { DomHandler } from 'primeng/dom';
import { Subject } from 'rxjs';
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 DynamicDialogContent = /** @class */ (function () {
function DynamicDialogContent(viewContainerRef) {
this.viewContainerRef = viewContainerRef;
}
DynamicDialogContent.ctorParameters = function () { return [
{ type: ViewContainerRef }
]; };
DynamicDialogContent = __decorate([
Directive({
selector: '[pDynamicDialogContent]'
})
], DynamicDialogContent);
return DynamicDialogContent;
}());
var DynamicDialogConfig = /** @class */ (function () {
function DynamicDialogConfig() {
}
return DynamicDialogConfig;
}());
var DynamicDialogRef = /** @class */ (function () {
function DynamicDialogRef() {
this._onClose = new Subject();
this.onClose = this._onClose.asObservable();
}
DynamicDialogRef.prototype.close = function (result) {
this._onClose.next(result);
};
return DynamicDialogRef;
}());
var __decorate$1 = (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 DynamicDialogComponent = /** @class */ (function () {
function DynamicDialogComponent(componentFactoryResolver, cd, renderer, config, dialogRef, zone) {
this.componentFactoryResolver = componentFactoryResolver;
this.cd = cd;
this.renderer = renderer;
this.config = config;
this.dialogRef = dialogRef;
this.zone = zone;
this.visible = true;
}
DynamicDialogComponent.prototype.ngAfterViewInit = function () {
this.loadChildComponent(this.childComponentType);
this.cd.detectChanges();
};
DynamicDialogComponent.prototype.onOverlayClicked = function (evt) {
this.dialogRef.close();
};
DynamicDialogComponent.prototype.onDialogClicked = function (evt) {
evt.stopPropagation();
};
DynamicDialogComponent.prototype.loadChildComponent = function (componentType) {
var componentFactory = this.componentFactoryResolver.resolveComponentFactory(componentType);
var viewContainerRef = this.insertionPoint.viewContainerRef;
viewContainerRef.clear();
this.componentRef = viewContainerRef.createComponent(componentFactory);
};
DynamicDialogComponent.prototype.moveOnTop = function () {
if (this.config.autoZIndex !== false) {
var zIndex = this.config.baseZIndex || 0 + (++DomHandler.zindex);
this.container.style.zIndex = String(zIndex);
this.maskViewChild.nativeElement.style.zIndex = String(zIndex - 1);
}
};
DynamicDialogComponent.prototype.onAnimationStart = function (event) {
switch (event.toState) {
case 'visible':
this.container = event.element;
this.moveOnTop();
this.bindGlobalListeners();
DomHandler.addClass(document.body, 'ui-overflow-hidden');
break;
case 'void':
this.onContainerDestroy();
break;
}
};
DynamicDialogComponent.prototype.onAnimationEnd = function (event) {
if (event.toState === 'void') {
this.dialogRef.close();
}
};
DynamicDialogComponent.prototype.onContainerDestroy = function () {
DomHandler.removeClass(document.body, 'ui-overflow-hidden');
this.unbindGlobalListeners();
this.container = null;
};
DynamicDialogComponent.prototype.close = function () {
this.visible = false;
};
DynamicDialogComponent.prototype.onMaskClick = function () {
if (this.config.dismissableMask) {
this.close();
}
};
DynamicDialogComponent.prototype.bindGlobalListeners = function () {
if (this.config.closeOnEscape !== false && this.config.closable !== false) {
this.bindDocumentEscapeListener();
}
};
DynamicDialogComponent.prototype.unbindGlobalListeners = function () {
this.unbindDocumentEscapeListener();
};
DynamicDialogComponent.prototype.bindDocumentEscapeListener = function () {
var _this = this;
this.documentEscapeListener = this.renderer.listen('document', 'keydown', function (event) {
if (event.which == 27) {
if (parseInt(_this.container.style.zIndex) == DomHandler.zindex) {
_this.close();
}
}
});
};
DynamicDialogComponent.prototype.unbindDocumentEscapeListener = function () {
if (this.documentEscapeListener) {
this.documentEscapeListener();
this.documentEscapeListener = null;
}
};
DynamicDialogComponent.prototype.ngOnDestroy = function () {
this.onContainerDestroy();
if (this.componentRef) {
this.componentRef.destroy();
}
};
DynamicDialogComponent.ctorParameters = function () { return [
{ type: ComponentFactoryResolver },
{ type: ChangeDetectorRef },
{ type: Renderer2 },
{ type: DynamicDialogConfig },
{ type: DynamicDialogRef },
{ type: NgZone }
]; };
__decorate$1([
ViewChild(DynamicDialogContent, { static: false })
], DynamicDialogComponent.prototype, "insertionPoint", void 0);
__decorate$1([
ViewChild('mask', { static: false })
], DynamicDialogComponent.prototype, "maskViewChild", void 0);
DynamicDialogComponent = __decorate$1([
Component({
selector: 'p-dynamicDialog',
template: "\n\t\t<div #mask class=\"ui-widget-overlay ui-dialog-mask ui-dialog-mask-scrollblocker\" *ngIf=\"visible\" (click)=\"onMaskClick()\"></div>\n\t\t<div [ngClass]=\"{'ui-dialog ui-dynamicdialog ui-widget ui-widget-content ui-corner-all ui-shadow':true, 'ui-dialog-rtl': config.rtl}\" [ngStyle]=\"config.style\" [class]=\"config.styleClass\"\n\t\t\t[@animation]=\"{value: 'visible', params: {transitionParams: config.transitionOptions || '150ms cubic-bezier(0, 0, 0.2, 1)'}}\" \n\t\t\t(@animation.start)=\"onAnimationStart($event)\" (@animation.done)=\"onAnimationEnd($event)\" role=\"dialog\" *ngIf=\"visible\"\n\t\t\t[style.width]=\"config.width\" [style.height]=\"config.height\">\n <div class=\"ui-dialog-titlebar ui-widget-header ui-helper-clearfix ui-corner-top\" *ngIf=\"config.showHeader === false ? false: true\">\n <span class=\"ui-dialog-title\">{{config.header}}</span>\n <div class=\"ui-dialog-titlebar-icons\">\n <a [ngClass]=\"'ui-dialog-titlebar-icon ui-dialog-titlebar-close ui-corner-all'\" tabindex=\"0\" role=\"button\" (click)=\"close()\" (keydown.enter)=\"close()\" *ngIf=\"config.closable !== false\">\n <span class=\"pi pi-times\"></span>\n </a>\n </div>\n </div>\n <div class=\"ui-dialog-content ui-widget-content\" [ngStyle]=\"config.contentStyle\">\n\t\t\t\t<ng-template pDynamicDialogContent></ng-template>\n\t\t\t</div>\n\t\t\t<div class=\"ui-dialog-footer ui-widget-content\" *ngIf=\"config.footer\">\n\t\t\t\t{{config.footer}}\n </div>\n\t\t</div>\n\t",
animations: [
trigger('animation', [
state('void', style({
transform: 'translateX(-50%) translateY(-50%) scale(0.7)',
opacity: 0
})),
state('visible', style({
transform: 'translateX(-50%) translateY(-50%) scale(1)',
opacity: 1
})),
transition('* => *', animate('{{transitionParams}}'))
])
]
})
], DynamicDialogComponent);
return DynamicDialogComponent;
}());
var DynamicDialogModule = /** @class */ (function () {
function DynamicDialogModule() {
}
DynamicDialogModule = __decorate$1([
NgModule({
imports: [CommonModule],
declarations: [DynamicDialogComponent, DynamicDialogContent],
entryComponents: [DynamicDialogComponent]
})
], DynamicDialogModule);
return DynamicDialogModule;
}());
var DynamicDialogInjector = /** @class */ (function () {
function DynamicDialogInjector(_parentInjector, _additionalTokens) {
this._parentInjector = _parentInjector;
this._additionalTokens = _additionalTokens;
}
DynamicDialogInjector.prototype.get = function (token, notFoundValue, flags) {
var value = this._additionalTokens.get(token);
if (value)
return value;
return this._parentInjector.get(token, notFoundValue);
};
return DynamicDialogInjector;
}());
var __decorate$2 = (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 DialogService = /** @class */ (function () {
function DialogService(componentFactoryResolver, appRef, injector) {
this.componentFactoryResolver = componentFactoryResolver;
this.appRef = appRef;
this.injector = injector;
}
DialogService.prototype.open = function (componentType, config) {
var dialogRef = this.appendDialogComponentToBody(config);
this.dialogComponentRef.instance.childComponentType = componentType;
return dialogRef;
};
DialogService.prototype.appendDialogComponentToBody = function (config) {
var _this = this;
var map = new WeakMap();
map.set(DynamicDialogConfig, config);
var dialogRef = new DynamicDialogRef();
map.set(DynamicDialogRef, dialogRef);
var sub = dialogRef.onClose.subscribe(function () {
_this.removeDialogComponentFromBody();
sub.unsubscribe();
});
var componentFactory = this.componentFactoryResolver.resolveComponentFactory(DynamicDialogComponent);
var componentRef = componentFactory.create(new DynamicDialogInjector(this.injector, map));
this.appRef.attachView(componentRef.hostView);
var domElem = componentRef.hostView.rootNodes[0];
document.body.appendChild(domElem);
this.dialogComponentRef = componentRef;
return dialogRef;
};
DialogService.prototype.removeDialogComponentFromBody = function () {
this.appRef.detachView(this.dialogComponentRef.hostView);
this.dialogComponentRef.destroy();
};
DialogService.ctorParameters = function () { return [
{ type: ComponentFactoryResolver },
{ type: ApplicationRef },
{ type: Injector }
]; };
DialogService = __decorate$2([
Injectable()
], DialogService);
return DialogService;
}());
/**
* Generated bundle index. Do not edit.
*/
export { DialogService, DynamicDialogComponent, DynamicDialogConfig, DynamicDialogInjector, DynamicDialogModule, DynamicDialogRef, DynamicDialogContent as ɵa };
//# sourceMappingURL=primeng-dynamicdialog.js.map