You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
4.0 KiB
JavaScript
106 lines
4.0 KiB
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 BlockUI = /** @class */ (function () {
|
|
function BlockUI(el) {
|
|
this.el = el;
|
|
this.autoZIndex = true;
|
|
this.baseZIndex = 0;
|
|
}
|
|
Object.defineProperty(BlockUI.prototype, "blocked", {
|
|
get: function () {
|
|
return this._blocked;
|
|
},
|
|
set: function (val) {
|
|
this._blocked = val;
|
|
if (this.mask.nativeElement) {
|
|
if (this._blocked)
|
|
this.block();
|
|
else
|
|
this.unblock();
|
|
}
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
});
|
|
BlockUI.prototype.ngAfterViewInit = function () {
|
|
if (this.target && !this.target.getBlockableElement) {
|
|
throw 'Target of BlockUI must implement BlockableUI interface';
|
|
}
|
|
};
|
|
BlockUI.prototype.block = function () {
|
|
if (this.target) {
|
|
this.target.getBlockableElement().appendChild(this.mask.nativeElement);
|
|
var style = this.target.style || {};
|
|
style.position = 'relative';
|
|
this.target.style = style;
|
|
}
|
|
else {
|
|
document.body.appendChild(this.mask.nativeElement);
|
|
}
|
|
if (this.autoZIndex) {
|
|
this.mask.nativeElement.style.zIndex = String(this.baseZIndex + (++domhandler_1.DomHandler.zindex));
|
|
}
|
|
};
|
|
BlockUI.prototype.unblock = function () {
|
|
this.el.nativeElement.appendChild(this.mask.nativeElement);
|
|
};
|
|
BlockUI.prototype.ngOnDestroy = function () {
|
|
this.unblock();
|
|
};
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Object)
|
|
], BlockUI.prototype, "target", void 0);
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Boolean)
|
|
], BlockUI.prototype, "autoZIndex", void 0);
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Number)
|
|
], BlockUI.prototype, "baseZIndex", void 0);
|
|
__decorate([
|
|
core_1.ViewChild('mask'),
|
|
__metadata("design:type", core_1.ElementRef)
|
|
], BlockUI.prototype, "mask", void 0);
|
|
__decorate([
|
|
core_1.Input(),
|
|
__metadata("design:type", Boolean),
|
|
__metadata("design:paramtypes", [Boolean])
|
|
], BlockUI.prototype, "blocked", null);
|
|
BlockUI = __decorate([
|
|
core_1.Component({
|
|
selector: 'p-blockUI',
|
|
template: "\n <div #mask class=\"ui-blockui ui-widget-overlay\" [ngClass]=\"{'ui-blockui-document':!target}\" [ngStyle]=\"{display: blocked ? 'block' : 'none'}\">\n <ng-content></ng-content>\n </div>\n "
|
|
}),
|
|
__metadata("design:paramtypes", [core_1.ElementRef])
|
|
], BlockUI);
|
|
return BlockUI;
|
|
}());
|
|
exports.BlockUI = BlockUI;
|
|
var BlockUIModule = /** @class */ (function () {
|
|
function BlockUIModule() {
|
|
}
|
|
BlockUIModule = __decorate([
|
|
core_1.NgModule({
|
|
imports: [common_1.CommonModule],
|
|
exports: [BlockUI],
|
|
declarations: [BlockUI]
|
|
})
|
|
], BlockUIModule);
|
|
return BlockUIModule;
|
|
}());
|
|
exports.BlockUIModule = BlockUIModule;
|
|
//# sourceMappingURL=blockui.js.map
|