| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- "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 tooltip_1 = require("../tooltip/tooltip");
- var shared_1 = require("../common/shared");
- var idx = 0;
- var TabViewNav = /** @class */ (function () {
- function TabViewNav() {
- this.orientation = 'top';
- this.onTabClick = new core_1.EventEmitter();
- this.onTabCloseClick = new core_1.EventEmitter();
- }
- TabViewNav.prototype.getDefaultHeaderClass = function (tab) {
- var styleClass = 'ui-state-default ui-corner-' + this.orientation;
- if (tab.headerStyleClass) {
- styleClass = styleClass + " " + tab.headerStyleClass;
- }
- return styleClass;
- };
- TabViewNav.prototype.clickTab = function (event, tab) {
- this.onTabClick.emit({
- originalEvent: event,
- tab: tab
- });
- };
- TabViewNav.prototype.clickClose = function (event, tab) {
- this.onTabCloseClick.emit({
- originalEvent: event,
- tab: tab
- });
- };
- __decorate([
- core_1.Input(),
- __metadata("design:type", Array)
- ], TabViewNav.prototype, "tabs", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabViewNav.prototype, "orientation", void 0);
- __decorate([
- core_1.Output(),
- __metadata("design:type", core_1.EventEmitter)
- ], TabViewNav.prototype, "onTabClick", void 0);
- __decorate([
- core_1.Output(),
- __metadata("design:type", core_1.EventEmitter)
- ], TabViewNav.prototype, "onTabCloseClick", void 0);
- TabViewNav = __decorate([
- core_1.Component({
- selector: '[p-tabViewNav]',
- host: {
- '[class.ui-tabview-nav]': 'true',
- '[class.ui-helper-reset]': 'true',
- '[class.ui-helper-clearfix]': 'true',
- '[class.ui-widget-header]': 'true',
- '[class.ui-corner-all]': 'true'
- },
- template: "\n <ng-template ngFor let-tab [ngForOf]=\"tabs\">\n <li [class]=\"getDefaultHeaderClass(tab)\" [ngStyle]=\"tab.headerStyle\" role=\"presentation\"\n [ngClass]=\"{'ui-tabview-selected ui-state-active': tab.selected, 'ui-state-disabled': tab.disabled}\"\n (click)=\"clickTab($event,tab)\" *ngIf=\"!tab.closed\" tabindex=\"0\" (keydown.enter)=\"clickTab($event,tab)\">\n <a [attr.id]=\"tab.id + '-label'\" role=\"tab\" [attr.aria-selected]=\"tab.selected\" [attr.aria-controls]=\"tab.id\" [pTooltip]=\"tab.tooltip\" [tooltipPosition]=\"tab.tooltipPosition\" [positionStyle]=\"tab.tooltipPositionStyle\" [tooltipStyleClass]=\"tab.tooltipStyleClass\">\n <ng-container *ngIf=\"!tab.headerTemplate\" >\n <span class=\"ui-tabview-left-icon\" [ngClass]=\"tab.leftIcon\" *ngIf=\"tab.leftIcon\"></span>\n <span class=\"ui-tabview-title\">{{tab.header}}</span>\n <span class=\"ui-tabview-right-icon\" [ngClass]=\"tab.rightIcon\" *ngIf=\"tab.rightIcon\"></span>\n </ng-container>\n <ng-container *ngIf=\"tab.headerTemplate\">\n <ng-container *ngTemplateOutlet=\"tab.headerTemplate\"></ng-container>\n </ng-container>\n </a>\n <span *ngIf=\"tab.closable\" class=\"ui-tabview-close pi pi-times\" (click)=\"clickClose($event,tab)\"></span>\n </li>\n </ng-template>\n ",
- })
- ], TabViewNav);
- return TabViewNav;
- }());
- exports.TabViewNav = TabViewNav;
- var TabPanel = /** @class */ (function () {
- function TabPanel(viewContainer) {
- this.viewContainer = viewContainer;
- this.cache = true;
- this.tooltipPosition = 'top';
- this.tooltipPositionStyle = 'absolute';
- this.id = "ui-tabpanel-" + idx++;
- }
- TabPanel.prototype.ngAfterContentInit = function () {
- var _this = this;
- this.templates.forEach(function (item) {
- switch (item.getType()) {
- case 'header':
- _this.headerTemplate = item.template;
- break;
- case 'content':
- _this.contentTemplate = item.template;
- break;
- default:
- _this.contentTemplate = item.template;
- break;
- }
- });
- };
- Object.defineProperty(TabPanel.prototype, "selected", {
- get: function () {
- return this._selected;
- },
- set: function (val) {
- this._selected = val;
- this.loaded = true;
- },
- enumerable: true,
- configurable: true
- });
- TabPanel.prototype.ngOnDestroy = function () {
- this.view = null;
- };
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "header", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Boolean)
- ], TabPanel.prototype, "disabled", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Boolean)
- ], TabPanel.prototype, "closable", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Object)
- ], TabPanel.prototype, "headerStyle", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "headerStyleClass", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "leftIcon", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "rightIcon", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Boolean)
- ], TabPanel.prototype, "cache", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Object)
- ], TabPanel.prototype, "tooltip", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "tooltipPosition", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "tooltipPositionStyle", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabPanel.prototype, "tooltipStyleClass", void 0);
- __decorate([
- core_1.ContentChildren(shared_1.PrimeTemplate),
- __metadata("design:type", core_1.QueryList)
- ], TabPanel.prototype, "templates", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Boolean),
- __metadata("design:paramtypes", [Boolean])
- ], TabPanel.prototype, "selected", null);
- TabPanel = __decorate([
- core_1.Component({
- selector: 'p-tabPanel',
- template: "\n <div [attr.id]=\"id\" class=\"ui-tabview-panel ui-widget-content\" [ngClass]=\"{'ui-helper-hidden': !selected}\"\n role=\"tabpanel\" [attr.aria-hidden]=\"!selected\" [attr.aria-labelledby]=\"id + '-label'\" *ngIf=\"!closed\">\n <ng-content></ng-content>\n <ng-container *ngIf=\"contentTemplate && (cache ? loaded : selected)\">\n <ng-container *ngTemplateOutlet=\"contentTemplate\"></ng-container>\n </ng-container>\n </div>\n "
- }),
- __metadata("design:paramtypes", [core_1.ViewContainerRef])
- ], TabPanel);
- return TabPanel;
- }());
- exports.TabPanel = TabPanel;
- var TabView = /** @class */ (function () {
- function TabView(el) {
- this.el = el;
- this.orientation = 'top';
- this.onChange = new core_1.EventEmitter();
- this.onClose = new core_1.EventEmitter();
- this.activeIndexChange = new core_1.EventEmitter();
- }
- TabView.prototype.ngAfterContentInit = function () {
- var _this = this;
- this.initTabs();
- this.tabPanels.changes.subscribe(function (_) {
- _this.initTabs();
- });
- };
- TabView.prototype.initTabs = function () {
- this.tabs = this.tabPanels.toArray();
- var selectedTab = this.findSelectedTab();
- if (!selectedTab && this.tabs.length) {
- if (this.activeIndex != null && this.tabs.length > this.activeIndex)
- this.tabs[this.activeIndex].selected = true;
- else
- this.tabs[0].selected = true;
- }
- };
- TabView.prototype.open = function (event, tab) {
- if (tab.disabled) {
- if (event) {
- event.preventDefault();
- }
- return;
- }
- if (!tab.selected) {
- var selectedTab = this.findSelectedTab();
- if (selectedTab) {
- selectedTab.selected = false;
- }
- tab.selected = true;
- var selectedTabIndex = this.findTabIndex(tab);
- this.preventActiveIndexPropagation = true;
- this.activeIndexChange.emit(selectedTabIndex);
- this.onChange.emit({ originalEvent: event, index: selectedTabIndex });
- }
- if (event) {
- event.preventDefault();
- }
- };
- TabView.prototype.close = function (event, tab) {
- var _this = this;
- if (this.controlClose) {
- this.onClose.emit({
- originalEvent: event,
- index: this.findTabIndex(tab),
- close: function () {
- _this.closeTab(tab);
- }
- });
- }
- else {
- this.closeTab(tab);
- this.onClose.emit({
- originalEvent: event,
- index: this.findTabIndex(tab)
- });
- }
- event.stopPropagation();
- };
- TabView.prototype.closeTab = function (tab) {
- if (tab.disabled) {
- return;
- }
- if (tab.selected) {
- tab.selected = false;
- for (var i = 0; i < this.tabs.length; i++) {
- var tabPanel = this.tabs[i];
- if (!tabPanel.closed && !tab.disabled) {
- tabPanel.selected = true;
- break;
- }
- }
- }
- tab.closed = true;
- };
- TabView.prototype.findSelectedTab = function () {
- for (var i = 0; i < this.tabs.length; i++) {
- if (this.tabs[i].selected) {
- return this.tabs[i];
- }
- }
- return null;
- };
- TabView.prototype.findTabIndex = function (tab) {
- var index = -1;
- for (var i = 0; i < this.tabs.length; i++) {
- if (this.tabs[i] == tab) {
- index = i;
- break;
- }
- }
- return index;
- };
- TabView.prototype.getBlockableElement = function () {
- return this.el.nativeElement.children[0];
- };
- Object.defineProperty(TabView.prototype, "activeIndex", {
- get: function () {
- return this._activeIndex;
- },
- set: function (val) {
- this._activeIndex = val;
- if (this.preventActiveIndexPropagation) {
- this.preventActiveIndexPropagation = false;
- return;
- }
- if (this.tabs && this.tabs.length && this._activeIndex != null && this.tabs.length > this._activeIndex) {
- this.findSelectedTab().selected = false;
- this.tabs[this._activeIndex].selected = true;
- }
- },
- enumerable: true,
- configurable: true
- });
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabView.prototype, "orientation", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Object)
- ], TabView.prototype, "style", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", String)
- ], TabView.prototype, "styleClass", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Boolean)
- ], TabView.prototype, "controlClose", void 0);
- __decorate([
- core_1.ContentChildren(TabPanel),
- __metadata("design:type", core_1.QueryList)
- ], TabView.prototype, "tabPanels", void 0);
- __decorate([
- core_1.Output(),
- __metadata("design:type", core_1.EventEmitter)
- ], TabView.prototype, "onChange", void 0);
- __decorate([
- core_1.Output(),
- __metadata("design:type", core_1.EventEmitter)
- ], TabView.prototype, "onClose", void 0);
- __decorate([
- core_1.Output(),
- __metadata("design:type", core_1.EventEmitter)
- ], TabView.prototype, "activeIndexChange", void 0);
- __decorate([
- core_1.Input(),
- __metadata("design:type", Number),
- __metadata("design:paramtypes", [Number])
- ], TabView.prototype, "activeIndex", null);
- TabView = __decorate([
- core_1.Component({
- selector: 'p-tabView',
- template: "\n <div [ngClass]=\"'ui-tabview ui-widget ui-widget-content ui-corner-all ui-tabview-' + orientation\" [ngStyle]=\"style\" [class]=\"styleClass\">\n <ul p-tabViewNav role=\"tablist\" *ngIf=\"orientation!='bottom'\" [tabs]=\"tabs\" [orientation]=\"orientation\"\n (onTabClick)=\"open($event.originalEvent, $event.tab)\" (onTabCloseClick)=\"close($event.originalEvent, $event.tab)\"></ul>\n <div class=\"ui-tabview-panels\">\n <ng-content></ng-content>\n </div>\n <ul p-tabViewNav role=\"tablist\" *ngIf=\"orientation=='bottom'\" [tabs]=\"tabs\" [orientation]=\"orientation\"\n (onTabClick)=\"open($event.originalEvent, $event.tab)\" (onTabCloseClick)=\"close($event.originalEvent, $event.tab)\"></ul>\n </div>\n ",
- }),
- __metadata("design:paramtypes", [core_1.ElementRef])
- ], TabView);
- return TabView;
- }());
- exports.TabView = TabView;
- var TabViewModule = /** @class */ (function () {
- function TabViewModule() {
- }
- TabViewModule = __decorate([
- core_1.NgModule({
- imports: [common_1.CommonModule, shared_1.SharedModule, tooltip_1.TooltipModule],
- exports: [TabView, TabPanel, TabViewNav, shared_1.SharedModule],
- declarations: [TabView, TabPanel, TabViewNav]
- })
- ], TabViewModule);
- return TabViewModule;
- }());
- exports.TabViewModule = TabViewModule;
- //# sourceMappingURL=tabview.js.map
|