UNPKG

ngx-easy-table

Version:
928 lines 92.2 kB
/** * @fileoverview added by tsickle * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc */ import * as tslib_1 from "tslib"; import { moveItemInArray } from '@angular/cdk/drag-drop'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, EventEmitter, HostListener, Input, Output, TemplateRef, ViewChild, } from '@angular/core'; import { API, Event } from '../..'; import { DefaultConfigService } from '../../services/config-service'; import { PaginationComponent } from '../pagination/pagination.component'; import { GroupRowsService } from '../../services/group-rows.service'; import { StyleService } from '../../services/style.service'; import { Subject } from 'rxjs'; import { CdkVirtualScrollViewport, ScrollDispatcher } from '@angular/cdk/scrolling'; import { filter, takeUntil, throttleTime } from 'rxjs/operators'; /** * @record */ function RowContextMenuPosition() { } if (false) { /** @type {?} */ RowContextMenuPosition.prototype.top; /** @type {?} */ RowContextMenuPosition.prototype.left; /** @type {?} */ RowContextMenuPosition.prototype.value; } var BaseComponent = /** @class */ (function () { function BaseComponent(cdr, scrollDispatcher, styleService) { var _this = this; this.cdr = cdr; this.scrollDispatcher = scrollDispatcher; this.styleService = styleService; this.unsubscribe = new Subject(); this.filterCount = -1; this.filteredCountSubject = new Subject(); this.tableClass = null; this.grouped = []; this.isSelected = false; this.page = 1; this.count = 0; this.sortState = new Map(); this.sortKey = null; this.rowContextMenuPosition = { top: null, left: null, value: null, }; this.sortBy = { key: '', order: 'asc', }; this.selectedDetailsTemplateRowId = new Set(); this.selectedCheckboxes = new Set(); this.loadingHeight = '30px'; this.id = 'table'; this.event = new EventEmitter(); this.subscription = this.filteredCountSubject .pipe(takeUntil(this.unsubscribe)) .subscribe((/** * @param {?} count * @return {?} */ function (count) { _this.filterCount = count; _this.cdr.detectChanges(); })); } /** * @param {?} targetElement * @return {?} */ BaseComponent.prototype.onContextMenuClick = /** * @param {?} targetElement * @return {?} */ function (targetElement) { if (this.contextMenu && !this.contextMenu.nativeElement.contains(targetElement)) { this.rowContextMenuPosition = { top: null, left: null, value: null, }; } }; /** * @return {?} */ BaseComponent.prototype.ngOnInit = /** * @return {?} */ function () { if (!this.columns) { console.error('[columns] property required!'); } if (this.configuration) { this.config = this.configuration; } else { this.config = DefaultConfigService.config; } this.limit = this.config.rows; if (this.groupRowsBy) { this.grouped = GroupRowsService.doGroupRows(this.data, this.groupRowsBy); } this.doDecodePersistedState(); }; /** * @return {?} */ BaseComponent.prototype.ngOnDestroy = /** * @return {?} */ function () { this.unsubscribe.next(); this.unsubscribe.complete(); }; /** * @return {?} */ BaseComponent.prototype.ngAfterViewInit = /** * @return {?} */ function () { var _this = this; /** @type {?} */ var throttleValue = this.config.infiniteScrollThrottleTime ? this.config.infiniteScrollThrottleTime : 200; this.scrollDispatcher.scrolled() .pipe(takeUntil(this.unsubscribe), throttleTime(throttleValue), filter((/** * @param {?} event * @return {?} */ function (event) { return !!event && _this.viewPort && _this.viewPort.getRenderedRange().end === _this.viewPort.getDataLength(); }))) .subscribe((/** * @return {?} */ function () { _this.emitEvent(Event.onInfiniteScrollEnd, null); })); }; /** * @param {?} changes * @return {?} */ BaseComponent.prototype.ngOnChanges = /** * @param {?} changes * @return {?} */ function (changes) { var configuration = changes.configuration, data = changes.data, pagination = changes.pagination, groupRowsBy = changes.groupRowsBy; this.toggleRowIndex = changes.toggleRowIndex; if (configuration && configuration.currentValue) { this.config = configuration.currentValue; } if (data && data.currentValue) { this.doApplyData(data); } if (pagination && pagination.currentValue) { var _a = (/** @type {?} */ (pagination.currentValue)), count = _a.count, limit = _a.limit, offset = _a.offset; this.count = count; this.limit = limit; this.page = offset; } if (groupRowsBy && groupRowsBy.currentValue) { this.grouped = GroupRowsService.doGroupRows(this.data, this.groupRowsBy); } if (this.toggleRowIndex && this.toggleRowIndex.currentValue) { /** @type {?} */ var row = this.toggleRowIndex.currentValue; this.collapseRow(row.index); } }; /** * @param {?} column * @return {?} */ BaseComponent.prototype.orderBy = /** * @param {?} column * @return {?} */ function (column) { if (typeof column.orderEnabled !== 'undefined' && !column.orderEnabled) { return; } this.sortKey = column.key; if (!this.config.orderEnabled || this.sortKey === '') { return; } this.setColumnOrder(this.sortKey); if (!this.config.orderEventOnly && !column.orderEventOnly) { this.sortBy.key = this.sortKey; this.sortBy.order = this.sortState.get(this.sortKey); } else { this.sortBy.key = ''; this.sortBy.order = ''; } if (!this.config.serverPagination) { this.data = tslib_1.__spread(this.data); this.sortBy = tslib_1.__assign({}, this.sortBy); } /** @type {?} */ var value = { key: this.sortKey, order: this.sortState.get(this.sortKey), }; this.emitEvent(Event.onOrder, value); }; /** * @param {?} $event * @param {?} row * @param {?} key * @param {?} colIndex * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.onClick = /** * @param {?} $event * @param {?} row * @param {?} key * @param {?} colIndex * @param {?} rowIndex * @return {?} */ function ($event, row, key, colIndex, rowIndex) { if (this.config.selectRow) { this.selectedRow = rowIndex; } if (this.config.selectCol && colIndex) { this.selectedCol = colIndex; } if (this.config.selectCell && colIndex) { this.selectedRow = rowIndex; this.selectedCol = colIndex; } if (this.config.clickEvent) { /** @type {?} */ var value = { event: $event, row: row, key: key, rowId: rowIndex, colId: colIndex, }; this.emitEvent(Event.onClick, value); } }; /** * @param {?} $event * @param {?} row * @param {?} key * @param {?} colIndex * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.onDoubleClick = /** * @param {?} $event * @param {?} row * @param {?} key * @param {?} colIndex * @param {?} rowIndex * @return {?} */ function ($event, row, key, colIndex, rowIndex) { /** @type {?} */ var value = { event: $event, row: row, key: key, rowId: rowIndex, colId: colIndex, }; this.emitEvent(Event.onDoubleClick, value); }; /** * @param {?} $event * @param {?} row * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.onCheckboxSelect = /** * @param {?} $event * @param {?} row * @param {?} rowIndex * @return {?} */ function ($event, row, rowIndex) { /** @type {?} */ var value = { event: $event, row: row, rowId: rowIndex, }; this.emitEvent(Event.onCheckboxSelect, value); }; /** * @param {?} $event * @param {?} row * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.onRadioSelect = /** * @param {?} $event * @param {?} row * @param {?} rowIndex * @return {?} */ function ($event, row, rowIndex) { /** @type {?} */ var value = { event: $event, row: row, rowId: rowIndex, }; this.emitEvent(Event.onRadioSelect, value); }; /** * @return {?} */ BaseComponent.prototype.onSelectAll = /** * @return {?} */ function () { this.isSelected = !this.isSelected; this.emitEvent(Event.onSelectAll, this.isSelected); }; /** * @param {?} $event * @return {?} */ BaseComponent.prototype.onSearch = /** * @param {?} $event * @return {?} */ function ($event) { if (!this.config.serverPagination) { this.term = $event; } this.emitEvent(Event.onSearch, $event); }; /** * @param {?} value * @return {?} */ BaseComponent.prototype.onGlobalSearch = /** * @param {?} value * @return {?} */ function (value) { if (!this.config.serverPagination) { this.globalSearchTerm = value; } this.emitEvent(Event.onGlobalSearch, value); }; /** * @param {?} pagination * @return {?} */ BaseComponent.prototype.onPagination = /** * @param {?} pagination * @return {?} */ function (pagination) { this.page = pagination.page; this.limit = pagination.limit; this.emitEvent(Event.onPagination, pagination); }; /** * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.toggleCheckbox = /** * @param {?} rowIndex * @return {?} */ function (rowIndex) { this.selectedCheckboxes.has(rowIndex) ? this.selectedCheckboxes.delete(rowIndex) : this.selectedCheckboxes.add(rowIndex); }; /** * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.collapseRow = /** * @param {?} rowIndex * @return {?} */ function (rowIndex) { if (this.selectedDetailsTemplateRowId.has(rowIndex)) { this.selectedDetailsTemplateRowId.delete(rowIndex); this.emitEvent(Event.onRowCollapsedHide, rowIndex); } else { this.selectedDetailsTemplateRowId.add(rowIndex); this.emitEvent(Event.onRowCollapsedShow, rowIndex); } }; /** * @private * @return {?} */ BaseComponent.prototype.doDecodePersistedState = /** * @private * @return {?} */ function () { if (!this.config.persistState) { return; } /** @type {?} */ var pagination = localStorage.getItem(Event.onPagination); /** @type {?} */ var sort = localStorage.getItem(Event.onOrder); /** @type {?} */ var search = localStorage.getItem(Event.onSearch); if (pagination) { this.onPagination(JSON.parse(pagination)); } if (sort) { var _a = JSON.parse(sort), key = _a.key, order = _a.order; this.bindApi({ type: API.sortBy, value: { column: key, order: order }, }); } if (search) { this.bindApi({ type: API.setInputValue, value: JSON.parse(search), }); } }; /** * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.isRowCollapsed = /** * @param {?} rowIndex * @return {?} */ function (rowIndex) { if (this.config.collapseAllRows) { return true; } return this.selectedDetailsTemplateRowId.has(rowIndex); }; Object.defineProperty(BaseComponent.prototype, "isLoading", { get: /** * @return {?} */ function () { /** @type {?} */ var table = (/** @type {?} */ (document.getElementById(this.id))); if (table && table.rows && table.rows.length > 3) { this.getLoadingHeight(table.rows); } return this.config.isLoading; }, enumerable: true, configurable: true }); /** * @param {?} rows * @return {?} */ BaseComponent.prototype.getLoadingHeight = /** * @param {?} rows * @return {?} */ function (rows) { /** @type {?} */ var searchEnabled = this.config.searchEnabled ? 1 : 0; /** @type {?} */ var headerEnabled = this.config.headerEnabled ? 1 : 0; /** @type {?} */ var borderTrHeight = 1; /** @type {?} */ var borderDivHeight = 2; this.loadingHeight = (rows.length - searchEnabled - headerEnabled) * (rows[3].offsetHeight - borderTrHeight) - borderDivHeight + 'px'; }; Object.defineProperty(BaseComponent.prototype, "arrowDefinition", { get: /** * @return {?} */ function () { return this.config.showDetailsArrow || typeof this.config.showDetailsArrow === 'undefined'; }, enumerable: true, configurable: true }); /** * @param {?} $event * @param {?} row * @param {?} key * @param {?} colIndex * @param {?} rowIndex * @return {?} */ BaseComponent.prototype.onRowContextMenu = /** * @param {?} $event * @param {?} row * @param {?} key * @param {?} colIndex * @param {?} rowIndex * @return {?} */ function ($event, row, key, colIndex, rowIndex) { if (!this.config.showContextMenu) { return; } $event.preventDefault(); /** @type {?} */ var value = { event: $event, row: row, key: key, rowId: rowIndex, colId: colIndex, }; this.rowContextMenuPosition = { top: $event.y - 10 + "px", left: $event.x - 10 + "px", value: value, }; this.emitEvent(Event.onRowContextMenu, value); }; /** * @private * @param {?} data * @return {?} */ BaseComponent.prototype.doApplyData = /** * @private * @param {?} data * @return {?} */ function (data) { /** @type {?} */ var order = this.columns.find((/** * @param {?} c * @return {?} */ function (c) { return !!c.orderBy; })); if (order) { this.sortState.set(this.sortKey, (order.orderBy === 'asc') ? 'desc' : 'asc'); this.orderBy(order); } else { this.data = tslib_1.__spread(data.currentValue); } }; /** * @param {?} event * @return {?} */ BaseComponent.prototype.onDrop = /** * @param {?} event * @return {?} */ function (event) { this.emitEvent(Event.onRowDrop, event); moveItemInArray(this.data, event.previousIndex, event.currentIndex); }; // DO NOT REMOVE. It is called from parent component. See src/app/demo/api-doc/api-doc.component.ts // DO NOT REMOVE. It is called from parent component. See src/app/demo/api-doc/api-doc.component.ts /** * @param {?} event * @return {?} */ BaseComponent.prototype.apiEvent = // DO NOT REMOVE. It is called from parent component. See src/app/demo/api-doc/api-doc.component.ts /** * @param {?} event * @return {?} */ function (event) { return this.bindApi(event); }; // tslint:disable:no-big-function cognitive-complexity // tslint:disable:no-big-function cognitive-complexity /** * @private * @param {?} event * @return {?} */ BaseComponent.prototype.bindApi = // tslint:disable:no-big-function cognitive-complexity /** * @private * @param {?} event * @return {?} */ function (event) { var _this = this; switch (event.type) { case API.rowContextMenuClicked: this.rowContextMenuPosition = { top: null, left: null, value: null, }; break; case API.toolPanelClicked: // TODO break; case API.toggleRowIndex: this.collapseRow(event.value); break; case API.toggleCheckbox: this.toggleCheckbox(event.value); break; case API.setInputValue: if (this.config.searchEnabled) { event.value.forEach((/** * @param {?} input * @return {?} */ function (input) { /** @type {?} */ var element = ((/** @type {?} */ (document.getElementById("search_" + input.key)))); if (!element) { console.error("Column '" + input.key + "' not available in the DOM. Have you misspelled a name?"); } else { element.value = input.value; } })); } this.onSearch(event.value); this.cdr.detectChanges(); break; case API.onGlobalSearch: this.onGlobalSearch(event.value); this.cdr.detectChanges(); break; case API.setRowClass: if (Array.isArray(event.value)) { event.value.forEach((/** * @param {?} val * @return {?} */ function (val) { return _this.styleService.setRowClass(val); })); break; } this.styleService.setRowClass(event.value); this.cdr.detectChanges(); break; case API.setCellClass: if (Array.isArray(event.value)) { event.value.forEach((/** * @param {?} val * @return {?} */ function (val) { return _this.styleService.setCellClass(val); })); break; } this.styleService.setCellClass(event.value); break; case API.setRowStyle: if (Array.isArray(event.value)) { event.value.forEach((/** * @param {?} val * @return {?} */ function (val) { return _this.styleService.setRowStyle(val); })); break; } this.styleService.setRowStyle(event.value); break; case API.setCellStyle: if (Array.isArray(event.value)) { event.value.forEach((/** * @param {?} val * @return {?} */ function (val) { return _this.styleService.setCellStyle(val); })); break; } this.styleService.setCellStyle(event.value); break; case API.setTableClass: this.tableClass = event.value; this.cdr.detectChanges(); break; case API.getPaginationTotalItems: return this.paginationComponent.paginationDirective.getTotalItems(); case API.getPaginationCurrentPage: return this.paginationComponent.paginationDirective.getCurrent(); case API.getPaginationLastPage: return this.paginationComponent.paginationDirective.getLastPage(); case API.getNumberOfRowsPerPage: return this.paginationComponent.paginationDirective.isLastPage() ? (this.paginationComponent.paginationDirective.getTotalItems() % this.limit) : this.limit; case API.setPaginationCurrentPage: this.paginationComponent.paginationDirective.setCurrent(event.value); break; case API.setPaginationRange: this.paginationComponent.ranges = event.value; break; case API.setPaginationPreviousLabel: this.paginationComponent.previousLabel = event.value; break; case API.setPaginationNextLabel: this.paginationComponent.nextLabel = event.value; break; case API.setPaginationDisplayLimit: this.paginationComponent.changeLimit(event.value, true); break; case API.sortBy: /** @type {?} */ var column = { title: '', key: event.value.column, orderBy: event.value.order }; this.orderBy(column); this.cdr.detectChanges(); break; default: break; } }; /** * @private * @param {?} key * @return {?} */ BaseComponent.prototype.setColumnOrder = /** * @private * @param {?} key * @return {?} */ function (key) { switch (this.sortState.get(key)) { case '': case undefined: this.sortState.set(key, 'desc'); break; case 'asc': this.config.threeWaySort ? this.sortState.set(key, '') : this.sortState.set(key, 'desc'); break; case 'desc': this.sortState.set(key, 'asc'); break; } if (this.sortState.size > 1) { /** @type {?} */ var temp = this.sortState.get(key); this.sortState.clear(); this.sortState.set(key, temp); } }; /** * @param {?} event * @param {?} value * @return {?} */ BaseComponent.prototype.emitEvent = /** * @param {?} event * @param {?} value * @return {?} */ function (event, value) { this.event.emit({ event: event, value: value }); if (this.config.persistState) { localStorage.setItem(event, JSON.stringify(value)); } if (this.config.logger) { // tslint:disable-next-line:no-console console.log({ event: event, value: value }); } }; BaseComponent.decorators = [ { type: Component, args: [{ selector: 'ngx-table', providers: [ DefaultConfigService, GroupRowsService, StyleService, ], template: "<div class=\"ngx-container\">\n <table [id]=\"id\"\n [ngClass]=\"(tableClass === null || tableClass === '') ? 'ngx-table' : tableClass\"\n [class.ngx-table__table--tiny]=\"config.tableLayout.style === 'tiny'\"\n [class.ngx-table__table--normal]=\"config.tableLayout.style === 'normal'\"\n [class.ngx-table__table--big]=\"config.tableLayout.style === 'big'\"\n [class.ngx-table__table--borderless]=\"config.tableLayout.borderless\"\n [class.ngx-table__table--dark]=\"config.tableLayout.theme === 'dark'\"\n [class.ngx-table__table--hoverable]=\"config.tableLayout.hover\"\n [class.ngx-table__table--striped]=\"config.tableLayout.striped\"\n [class.ngx-table__horizontal-scroll]=\"config.horizontalScroll && !isLoading\">\n <thead\n [class.ngx-infinite-scroll-viewport-thead]=\"config.infiniteScroll\"\n table-thead\n [config]=\"config\"\n [sortKey]=\"sortKey\"\n [sortState]=\"sortState\"\n [selectAllTemplate]=\"selectAllTemplate\"\n [filtersTemplate]=\"filtersTemplate\"\n [additionalActionsTemplate]=\"additionalActionsTemplate\"\n [columns]=\"columns\"\n (selectAll)=\"onSelectAll()\"\n (filter)=\"onSearch($event)\"\n (order)=\"orderBy($event)\"\n (event)=\"emitEvent($event.event, $event.value)\"\n >\n </thead>\n <tbody *ngIf=\"data && !isLoading && !config.rowReorder\">\n <ng-container *ngIf=\"rowTemplate\">\n <ul class=\"ngx-table__table-row-context-menu\"\n [ngStyle]=\"{'position': 'absolute', 'top': rowContextMenuPosition.top, 'left': rowContextMenuPosition.left }\"\n *ngIf=\"rowContextMenuPosition.top\">\n <ng-container\n [ngTemplateOutlet]=\"rowContextMenu\"\n [ngTemplateOutletContext]=\"{ $implicit: rowContextMenuPosition.value}\">\n </ng-container>\n </ul>\n <ng-container *ngIf=\"!config.infiniteScroll\">\n <ng-container *ngFor=\"let row of data | sort:sortBy | search:term:filteredCountSubject | global:globalSearchTerm:filteredCountSubject | paginate: { itemsPerPage: limit, currentPage: page, totalItems: count, id: id };\n let rowIndex = index\">\n <tr\n (click)=\"onClick($event, row, '', null, rowIndex)\"\n #contextMenu\n (contextmenu)=\"onRowContextMenu($event, row, '', null, rowIndex)\"\n (dblclick)=\"onDoubleClick($event, row, '', null, rowIndex)\"\n [class.ngx-table__table-row--selected]=\"rowIndex === selectedRow && !config.selectCell\">\n <ng-container\n [ngTemplateOutlet]=\"rowTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, index: rowIndex }\">\n </ng-container>\n <td *ngIf=\"config.detailsTemplate\">\n <span class=\"ngx-icon\"\n *ngIf=\"arrowDefinition\"\n [ngClass]=\"isRowCollapsed(rowIndex) ? 'ngx-icon-arrow-down' : 'ngx-icon-arrow-right'\"\n (click)=\"collapseRow(rowIndex)\">\n </span>\n </td>\n </tr>\n <tr\n *ngIf=\"(config.detailsTemplate && selectedDetailsTemplateRowId.has(rowIndex)) || config.collapseAllRows\">\n <td [attr.colspan]=\"columns.length + 1\">\n <ng-container\n [ngTemplateOutlet]=\"detailsTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, index: rowIndex }\">\n </ng-container>\n </td>\n </tr>\n </ng-container>\n </ng-container>\n <cdk-virtual-scroll-viewport\n itemSize=\"50\"\n *ngIf=\"config.infiniteScroll\"\n class=\"ngx-infinite-scroll-viewport\">\n <ng-container *cdkVirtualFor=\"let row of data | sort:sortBy | search:term:filteredCountSubject | global:globalSearchTerm:filteredCountSubject;\n let rowIndex = index\">\n <tr\n (click)=\"onClick($event, row, '', null, rowIndex)\"\n #contextMenu\n (contextmenu)=\"onRowContextMenu($event, row, '', null, rowIndex)\"\n (dblclick)=\"onDoubleClick($event, row, '', null, rowIndex)\"\n [class.ngx-table__table-row--selected]=\"rowIndex === selectedRow && !config.selectCell\">\n <ng-container\n [ngTemplateOutlet]=\"rowTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, index: rowIndex }\">\n </ng-container>\n <td *ngIf=\"config.detailsTemplate\">\n <span class=\"ngx-icon\"\n *ngIf=\"arrowDefinition\"\n [ngClass]=\"isRowCollapsed(rowIndex) ? 'ngx-icon-arrow-down' : 'ngx-icon-arrow-right'\"\n (click)=\"collapseRow(rowIndex)\">\n </span>\n </td>\n </tr>\n <tr\n *ngIf=\"(config.detailsTemplate && selectedDetailsTemplateRowId.has(rowIndex)) || config.collapseAllRows\">\n <td [attr.colspan]=\"columns.length + 1\">\n <ng-container\n [ngTemplateOutlet]=\"detailsTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, index: rowIndex }\">\n </ng-container>\n </td>\n </tr>\n </ng-container>\n </cdk-virtual-scroll-viewport>\n </ng-container>\n <ng-container *ngIf=\"!rowTemplate && !config.groupRows\">\n <ul class=\"ngx-table__table-row-context-menu\"\n [ngStyle]=\"{'position': 'absolute', 'top': rowContextMenuPosition.top, 'left': rowContextMenuPosition.left }\"\n *ngIf=\"rowContextMenuPosition.top\">\n <ng-container\n [ngTemplateOutlet]=\"rowContextMenu\"\n [ngTemplateOutletContext]=\"{ $implicit: rowContextMenuPosition.value}\">\n </ng-container>\n </ul>\n <ng-container *ngIf=\"!config.infiniteScroll\">\n <ng-container\n *ngFor=\"let row of data | sort:sortBy | search:term:filteredCountSubject | global:globalSearchTerm:filteredCountSubject | paginate: { itemsPerPage: limit, currentPage: page, totalItems: count, id: id };\n let rowIndex = index\">\n <tr [class.ngx-table__table-row--selected]=\"rowIndex === selectedRow && !config.selectCell\">\n <td *ngIf=\"config.checkboxes\">\n <label class=\"ngx-form-checkbox\">\n <input type=\"checkbox\"\n id=\"checkbox-{{rowIndex}}\"\n [checked]=\"isSelected || selectedCheckboxes.has(rowIndex)\"\n (change)=\"onCheckboxSelect($event, row, rowIndex)\">\n <em class=\"ngx-form-icon\"></em>\n </label>\n </td>\n <td *ngIf=\"config.radio\">\n <label>\n <input type=\"radio\"\n id=\"radio-{{rowIndex}}\"\n name=\"radio\"\n (change)=\"onRadioSelect($event, row, rowIndex)\">\n </label>\n </td>\n <ng-container *ngFor=\"let column of columns; let colIndex = index\">\n <td (click)=\"onClick($event, row, column.key, colIndex, rowIndex)\"\n #contextMenu\n (contextmenu)=\"onRowContextMenu($event, row, column.key, colIndex, rowIndex)\"\n (dblclick)=\"onDoubleClick($event, row, column.key, colIndex, rowIndex)\"\n [class.pinned-left]=\"column.pinned\"\n [ngClass]=\"column.cssClass ? column.cssClass.name : ''\"\n [style.left]=\"styleService.pinnedWidth(column.pinned, colIndex)\"\n [class.ngx-table__table-col--selected]=\"colIndex === selectedCol && !config.selectCell\"\n [class.ngx-table__table-cell--selected]=\"colIndex === selectedCol && rowIndex === selectedRow && !config.selectCol && !config.selectRow\"\n >\n <div *ngIf=\"!column.cellTemplate\">{{ row | render:column.key }}</div>\n <ng-container\n *ngIf=\"column.cellTemplate\"\n [ngTemplateOutlet]=\"column.cellTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, rowIndex: rowIndex }\">\n </ng-container>\n </td>\n </ng-container>\n <td *ngIf=\"config.additionalActions || config.detailsTemplate\">\n <span class=\"ngx-icon\"\n *ngIf=\"arrowDefinition\"\n [ngClass]=\"isRowCollapsed(rowIndex) ? 'ngx-icon-arrow-down' : 'ngx-icon-arrow-right'\"\n (click)=\"collapseRow(rowIndex)\">\n </span>\n </td>\n </tr>\n <tr\n *ngIf=\"(config.detailsTemplate && selectedDetailsTemplateRowId.has(rowIndex)) || config.collapseAllRows\">\n <td *ngIf=\"config.checkboxes || config.radio\"></td>\n <td [attr.colspan]=\"columns.length + 1\">\n <ng-container\n [ngTemplateOutlet]=\"detailsTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, index: rowIndex }\">\n </ng-container>\n </td>\n </tr>\n </ng-container>\n </ng-container>\n <!-- infinite scroll -->\n <cdk-virtual-scroll-viewport\n itemSize=\"50\"\n *ngIf=\"config.infiniteScroll\"\n class=\"ngx-infinite-scroll-viewport\">\n <ng-container\n *cdkVirtualFor=\"let row of data | sort:sortBy | search:term:filteredCountSubject | global:globalSearchTerm:filteredCountSubject;\n let rowIndex = index\">\n <tr [class.ngx-table__table-row--selected]=\"rowIndex === selectedRow && !config.selectCell\">\n <td *ngIf=\"config.checkboxes\">\n <label class=\"ngx-form-checkbox\">\n <input type=\"checkbox\"\n id=\"checkbox-infinite-scroll-{{rowIndex}}\"\n [checked]=\"isSelected || selectedCheckboxes.has(rowIndex)\"\n (change)=\"onCheckboxSelect($event, row, rowIndex)\">\n <em class=\"ngx-form-icon\"></em>\n </label>\n </td>\n <td *ngIf=\"config.radio\">\n <label>\n <input type=\"radio\"\n id=\"radio-infinite-scroll-{{rowIndex}}\"\n name=\"radio\"\n (change)=\"onRadioSelect($event, row, rowIndex)\">\n </label>\n </td>\n <ng-container *ngFor=\"let column of columns; let colIndex = index\">\n <td (click)=\"onClick($event, row, column.key, colIndex, rowIndex)\"\n #contextMenu\n (contextmenu)=\"onRowContextMenu($event, row, column.key, colIndex, rowIndex)\"\n (dblclick)=\"onDoubleClick($event, row, column.key, colIndex, rowIndex)\"\n [class.pinned-left]=\"column.pinned\"\n [ngClass]=\"column.cssClass ? column.cssClass.name : ''\"\n [style.left]=\"styleService.pinnedWidth(column.pinned, colIndex)\"\n [class.ngx-table__table-col--selected]=\"colIndex === selectedCol && !config.selectCell\"\n [class.ngx-table__table-cell--selected]=\"colIndex === selectedCol && rowIndex === selectedRow && !config.selectCol && !config.selectRow\"\n >\n <div *ngIf=\"!column.cellTemplate\">{{ row | render:column.key }}</div>\n <ng-container\n *ngIf=\"column.cellTemplate\"\n [ngTemplateOutlet]=\"column.cellTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, rowIndex: rowIndex }\">\n </ng-container>\n </td>\n </ng-container>\n <td *ngIf=\"config.additionalActions || config.detailsTemplate\">\n <span class=\"ngx-icon\"\n *ngIf=\"arrowDefinition\"\n [ngClass]=\"isRowCollapsed(rowIndex) ? 'ngx-icon-arrow-down' : 'ngx-icon-arrow-right'\"\n (click)=\"collapseRow(rowIndex)\">\n </span>\n </td>\n </tr>\n <tr\n *ngIf=\"(config.detailsTemplate && selectedDetailsTemplateRowId.has(rowIndex)) || config.collapseAllRows\">\n <td *ngIf=\"config.checkboxes || config.radio\"></td>\n <td [attr.colspan]=\"columns.length + 1\">\n <ng-container\n [ngTemplateOutlet]=\"detailsTemplate\"\n [ngTemplateOutletContext]=\"{ $implicit: row, index: rowIndex }\">\n </ng-container>\n </td>\n </tr>\n </ng-container>\n </cdk-virtual-scroll-viewport>\n </ng-container>\n <ng-container *ngIf=\"!rowTemplate && config.groupRows\">\n <ng-container\n *ngFor=\"let group of grouped | sort:sortBy:config | search:term:filteredCountSubject:config | global:globalSearchTerm:filteredCountSubject | paginate: { itemsPerPage: limit, currentPage: page, totalItems: count, id: id };\n let rowIndex = index\">\n <tr>\n <ng-container *ngIf=\"!groupRowsHeaderTemplate\">\n <td [attr.colspan]=\"columns.length\">\n <div>{{group[0][groupRowsBy]}} ({{group.length}})</div>\n </td>\n </ng-container>\n <ng-container\n *ngIf=\"groupRowsHeaderTemplate\"\n [ngTemplateOutlet]=\"groupRowsHeaderTemplate\"\n [ngTemplateOutletContext]=\"{\n total: group.length,\n key: groupRowsBy,\n value: group[0] ? group[0][groupRowsBy] : '',\n group: group,\n index: rowIndex\n }\">\n </ng-container>\n <td>\n <span class=\"ngx-icon\"\n *ngIf=\"arrowDefinition\"\n [ngClass]=\"isRowCollapsed(rowIndex) ? 'ngx-icon-arrow-down' : 'ngx-icon-arrow-right'\"\n (click)=\"collapseRow(rowIndex)\">\n </span>\n </td>\n </tr>\n <ng-container *ngIf=\"selectedDetailsTemplateRowId.has(rowIndex)\">\n <tr *ngFor=\"let row of group\">\n <td *ngFor=\"let column of columns\">\n {{ row | render:column.key }}\n <!-- TODO allow users to add groupRowsTemplateRef -->\n </td>\n <td></td>\n </tr>\n </ng-container>\n </ng-container>\n </ng-container>\n </tbody>\n <tbody *ngIf=\"data && !config.isLoading && config.rowReorder\"\n class=\"ngx-draggable-row-area\"\n cdkDropList\n (cdkDropListDropped)=\"onDrop($event)\">\n <ng-container *ngIf=\"!rowTemplate && !config.groupRows\">\n <ng-container\n *ngFor=\"let row of data | sort:sortBy | search:term:filteredCountSubject | global:globalSearchTerm:filteredCountSubject | paginate: { itemsPerPage: limit, currentPage: page, totalItems: count, id: id };\n let rowIndex = index\">\n <tr class=\"ngx-draggable-row\" cdkDrag cdkDragLockAxis=\"y\">\n <td *ngIf=\"config.checkboxes\">\n <label class=\"ngx-form-checkbox\">\n <input type=\"checkbox\"\n id=\"checkbox-draggable-{{rowIndex}}\"\n [checked]=\"isSelected || selectedCheckboxes.has(rowIndex)\"\n (change)=\"onCheckboxSelect($event, row, rowIndex)\">\n <em class=\"ngx-form-icon\"></em>\n </label>\n </td>\n <td *ngIf=\"config.radio\">\n <label>\n <input type=\"radio\"\n id=\"radio-draggable-{{rowIndex}}\"\n name=\"radio\"\n (change)=\"onRadioSelect($event, row, rowIndex)\">\n </label>\n </td>\n <ng-container *ngFor=\"let column of columns; let colIndex = index\">\n <td (click)=\"onClick($event, row, column.key, colIndex, rowIndex)\"\n (dblclick)=\"onDoubleClick($event, row, column.key, colIndex, rowIndex)\"\n [class.ngx-table__table-col--selected]=\"colIndex === selectedCol && !config.selectCell\"\n [class.ngx-table__table-cell--selected]=\"colIndex === selectedCol && rowIndex === selectedRow && !config.selectCol && !config.selectRow\"\n >\n <div>{{ row | render:column.key }}</div>\n </td>\n </ng-container>\n </tr>\n </ng-container>\n </ng-container>\n </tbody>\n <tbody *ngIf=\"filterCount === 0\">\n <tr class=\"ngx-table__body-empty\">\n <ng-container\n *ngIf=\"noResultsTemplate\"\n [ngTemplateOutlet]=\"noResultsTemplate\">\n </ng-container>\n <td [attr.colspan]=\"columns && columns.length + 1\" *ngIf=\"!noResultsTemplate\">\n <div class=\"ngx-table__table-no-results\">\n No results\n </div>\n </td>\n </tr>\n </tbody>\n <tbody *ngIf=\"isLoading\">\n <tr class=\"ngx-table__body-loading\">\n <ng-container\n *ngIf=\"loadingTemplate\"\n [ngTemplateOutlet]=\"loadingTemplate\">\n </ng-container>\n <td [attr.colspan]=\"columns && columns.length + 1\" *ngIf=\"!loadingTemplate\">\n <div [style.height]=\"loadingHeight\"\n class=\"ngx-table__table-loader-wrapper\">\n <div class=\"ngx-table__table-loader\"></div>\n </div>\n </td>\n </tr>\n </tbody>\n <tfoot *ngIf=\"summaryTemplate\">\n <tr>\n <ng-container\n [ngTemplateOutlet]=\"summaryTemplate\"\n [ngTemplateOutletContext]=\"{ total: data.length, limit: limit, page: page }\">\n </ng-container>\n </tr>\n </tfoot>\n </table>\n <pagination\n [attr.id]=\"'pagination' + id\"\n [id]=\"id\"\n #paginationComponent\n [config]=\"config\"\n [pagination]=\"pagination\"\n (updateRange)=\"onPagination($event)\">\n </pagination>\n</div>\n", changeDetection: ChangeDetectionStrategy.OnPush }] } ]; /** @nocollapse */ BaseComponent.ctorParameters = function () { return [ { type: ChangeDetectorRef }, { type: ScrollDispatcher }, { type: StyleService } ]; }; BaseComponent.propDecorators = { configuration: [{ type: Input }], data: [{ type: Input }], pagination: [{ type: Input }], groupRowsBy: [{ type: Input }], id: [{ type: Input }], toggleRowIndex: [{ type: Input }], detailsTemplate: [{ type: Input }], summaryTemplate: [{ type: Input }], groupRowsHeaderTemplate: [{ type: Input }], filtersTemplate: [{ type: Input }], selectAllTemplate: [{ type: Input }], noResultsTemplate: [{ type: Input }], loadingTemplate: [{ type: Input }], additionalActionsTemplate: [{ type: Input }], rowContextMenu: [{ type: Input }], columns: [{ type: Input }], event: [{ type: Output }], rowTemplate: [{ type: ContentChild, args: [TemplateRef, { static: true },] }], paginationComponent: [{ type: ViewChild, args: ['paginationComponent', { static: false },] }], contextMenu: [{ type: ViewChild, args: ['contextMenu', { static: false },] }], viewPort: [{ type: ViewChild, args: [CdkVirtualScrollViewport, { static: false },] }], onContextMenuClick: [{ type: HostListener, args: ['document:click', ['$event.target'],] }] }; return BaseComponent; }()); export { BaseComponent }; if (false) { /** * @type {?} * @private */ BaseComponent.prototype.unsubscribe; /** @type {?} */ BaseComponent.prototype.selectedRow; /** @type {?} */ BaseComponent.prototype.selectedCol; /** @type {?} */ BaseComponent.prototype.term; /** @type {?} */ BaseComponent.prototype.filterCount; /** @type {?} */ BaseComponent.prototype.filteredCountSubject; /** @type {?} */ BaseComponent.prototype.subscription; /** @type {?} */ BaseComponent.prototype.tableClass; /** @type {?} */ BaseComponent.prototype.globalSearchTerm; /** @type {?} */ BaseComponent.prototype.grouped; /** @type {?} */ BaseComponent.prototype.isSelected; /** @type {?} */ BaseComponent.prototype.page; /** @type {?} */ BaseComponent.prototype.count; /** @type {?} */ BaseComponent.prototype.sortState; /** @type {?} */ BaseComponent.prototype.sortKey; /** @type {?} */ BaseComponent.prototype.rowContextMenuPosition; /** @type {?} */ BaseComponent.prototype.limit; /** @type {?} */ BaseComponent.prototype.sortBy; /** @type {?} */ BaseComponent.prototype.selectedDetailsTemplateRowId; /** @type {?} */ BaseComponent.prototype.selectedCheckboxes; /** @type {?} */ BaseComponent.prototype.loadingHeight; /** @type {?} */ BaseComponent.prototype.config; /** @type {?} */ BaseComponent.prototype.configuration; /** @type {?} */ BaseComponent.prototype.data; /** @type {?} */ BaseComponent.prototype.pagination; /** @type {?} */ BaseComponent.prototype.groupRowsBy; /** @type {?} */ BaseComponent.prototype.id; /** @type {?} */ BaseComponent.prototype.toggleRowIndex; /** @type {?} */ BaseComponent.prototype.detailsTemplate; /** @type {?} */ BaseComponent.prototype.summaryTemplate; /** @type {?} */ BaseComponent.prototype.groupRowsHeaderTemplate; /** @type {?} */ BaseComponent.prototype.filtersTemplate; /** @type {?} */ BaseComponent.prototype.selectAllTemplate; /** @type {?} */ BaseComponent.prototype.noResultsTemplate; /** @type {?} */ BaseComponent.prototype.loadingTemplate; /** @type {?} */ BaseComponent.prototype.additionalActionsTemplate; /** @type {?} */ BaseComponent.prototype.rowContextMenu; /** @type {?} */ BaseComponent.prototype.columns; /** @type {?} */ BaseComponent.prototype.event; /** @type {?} */ BaseComponent.prototype.rowTemplate; /** * @type {?} * @private */ BaseComponent.prototype.paginationComponent; /** @type {?} */ BaseComponent.prototype.contextMenu; /** @type {?} */ BaseComponent.prototype.viewPort; /** * @type {?} * @private */ BaseComponent.prototype.cdr; /** * @type {?} * @private */ BaseComponent.prototype.scrollDispatcher; /** @type {?} */ BaseComponent.prototype.styleService; } //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9uZ3gtZWFzeS10YWJsZS8iLCJzb3VyY2VzIjpbImxpYi9jb21wb25lbnRzL2Jhc2UvYmFzZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQWUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdEUsT0FBTyxFQUVMLHVCQUF1QixFQUN2QixpQkFBaUIsRUFDakIsU0FBUyxFQUNULFlBQVksRUFDWixZQUFZLEVBQ1osWUFBWSxFQUNaLEtBQUssRUFFRyxNQUFNLEVBRWQsV0FBVyxFQUNYLFNBQVMsR0FDVixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsR0FBRyxFQUE0QixLQUFLLEVBQWMsTUFBTSxPQUFPLENBQUM7QUFDekUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDckUsT0FBTyxFQUFFLG1CQUFtQixFQUFtQixNQUFNLG9DQUFvQyxDQUFDO0FBQzFGLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsT0FBTyxFQUFnQixNQUFNLE1BQU0sQ0FBQztBQUM3QyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNwRixPQUFPLEVBQUUsTUFBTSxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7OztBQUlqRSxxQ0FJQzs7O0lBSEMscUNBQW1COztJQUNuQixzQ0FBb0I7O0lBQ3BCLHVDQUFrQjs7QUFHcEI7SUEwRUUsdUJBQ21CLEdBQXNCLEVBQ3RCLGdCQUFrQyxFQUNuQyxZQUEwQjtRQUg1QyxpQkFhQztRQVprQixRQUFHLEdBQUgsR0FBRyxDQUFtQjtRQUN0QixxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO1FBQ25DLGlCQUFZLEdBQVosWUFBWSxDQUFjO1FBbEVwQyxnQkFBVyxHQUFHLElBQUksT0FBTyxFQUFRLENBQUM7UUFJbkMsZ0JBQVcsR0FBRyxDQUFDLENBQUMsQ0FBQztRQUNqQix5QkFBb0IsR0FBRyxJQUFJLE9BQU8sRUFBVSxDQUFDO1FBRTdDLGVBQVUsR0FBa0IsSUFBSSxDQUFDO1FBRWpDLFlBQU8sR0FBUSxFQUFFLENBQUM7UUFDbEIsZUFBVSxHQUFHLEtBQUssQ0FBQztRQUNuQixTQUFJLEdBQUcsQ0FBQyxDQUFDO1FBQ1QsVUFBSyxHQUFHLENBQUMsQ0FBQztRQUNWLGNBQVMsR0FBRyxJQUFJLEdBQUcsRUFBRSxDQUFDO1FBQ3RCLFlBQU8sR0FBa0IsSUFBSSxDQUFDO1FBQzlCLDJCQUFzQixHQUEyQjtZQUN0RCxHQUFHLEVBQUUsSUFBSTtZQUNULElBQUksRUFBRSxJQUFJO1lBQ1YsS0FBSyxFQUFFLElBQUk7U0FDWixDQUFDO1FBRUssV0FBTSxHQUF3QztZQUNuRCxHQUFHLEVBQUUsRUFBRTtZQUNQLEtBQUssRUFBRSxLQUFLO1NBQ2IsQ0FBQztRQUNLLGlDQUE0QixHQUFHLElBQUksR0FBRyxFQUFVLENBQUM7UUFDakQsdUJBQWtCLEdBQUcsSUFBSSxHQUFHLEVBQVUsQ0FBQztRQUN2QyxrQkFBYSxHQUFHLE1BQU0sQ0FBQztRQU9yQixPQUFFLEdBQUcsT0FBTyxDQUFDO1FBWUgsVUFBSyxHQUFHLElBQUksWUFBWSxFQUFpQyxDQUFDO1FBc0IzRSxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxvQkFBb0I7YUFDMUMsSUFBSSxDQUNILFNBQVMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQzVCO2FBQ0EsU0FBUzs7OztRQUFDLFVBQUMsS0FBSztZQUNmLEtBQUksQ0FBQyxXQUFXLEdBQUcsS0FBSyxDQUFDO1lBQ3pCLEtBQUksQ0FBQyxHQUFHLENBQUMsYUFBYSxFQUFFLENBQUM7UUFDM0IsQ0FBQyxFQUFDLENBQUM7SUFDUCxDQUFDOzs7OztJQXZCTSwwQ0FBa0I7Ozs7SUFEekIsVUFDMEIsYUFBa0I7UUFDMUMsSUFBSSxJQUFJLENBQUMsV0FBVyxJQUFJLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLGFBQWEsQ0FBQyxFQUFFO1lBQy9FLElBQUksQ0FBQyxzQkFBc0IsR0FBRztnQkFDNUIsR0FBRyxFQUFFLElBQUk7Z0JBQ1QsSUFBSSxFQUFFLElBQUk7Z0JBQ1YsS0FBSyxFQUFFLElBQUk7YUFDWixDQUFDO1NBQ0g7SUFDSCxDQUFDOzs7O0lBaUJELGdDQUFROzs7SUFBUjtRQUNFLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxFQUFFO1lBQ2pCLE9BQU8sQ0FBQyxLQUFLLENBQUMsOEJBQThCLENBQUMsQ0FBQztTQUMvQztRQUNELElBQUksSUFBSSxDQUFDLGFBQWEsRUFBRTtZQUN0QixJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQyxhQUF