Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | 112x 75x 75x 75x 1x 4x 5x 2x 1x 9x 2x 1x 2x 2x 7x 2x 6x 1x 8x 2x 11x 10x 3x 2x 5x 3x 1x 10x 5x 4x 4x 1x 5x 3x 2x | import { IGridEditable } from '../zd-grid-editable';
import { ISupportsToolbar } from './interfaces';
export class TekGridController {
private grid!: IGridEditable & ISupportsToolbar;
public openToolbar = true;
public constructor(grid: IGridEditable & ISupportsToolbar) {
this.grid = grid;
this.openToolbar = this.grid.toolbarOpened;
}
public get gridTitle() {
return this.grid.title;
}
public get showAddButton() {
return this.grid.addButton;
}
public get showDeleteButton() {
return this.grid.deleteButton !== 'none';
}
public get showFilterButton() {
return this.grid.filterButton;
}
public get showModalFilterProps() {
return this.grid.modalFilterProps;
}
public get showSearchInput() {
return this.grid.showSearch;
}
public get showToolbar() {
return this.openToolbar;
}
public set showToolbar(value: boolean) {
this.openToolbar = value;
}
public get toolbarClass(): string {
return !this.openToolbar ? 'is-rotated' : '';
}
public get tooltipName() {
return !this.openToolbar ? 'TEKGRID_SHOW' : 'TEKGRID_HIDE';
}
public get showReloadButton() {
return this.grid.showReload;
}
public get showDivider2() {
return (
this.showReloadButton &&
(this.showLayoutOptionsButton ||
this.showColumnsButton ||
this.showActionsButton ||
this.showExportButton ||
this.showSearchInput)
);
}
public get showColumnsButton() {
return this.grid.columnsButton;
}
public get columnsButtonIgnore() {
return this.grid.columnsButtonIgnore;
}
public get showLayoutOptionsButton() {
return this.grid.showLayoutOptions;
}
public get showDivider1() {
return (
(this.showAddButton || this.showDeleteButton) &&
(this.showReloadButton ||
this.showLayoutOptionsButton ||
this.showColumnsButton ||
this.showActionsButton ||
this.showExportButton ||
this.showSearchInput)
);
}
public get showActionsButton() {
return this.grid.actions.length > 0;
}
public get showExportButton() {
return this.grid.showExport;
}
public get showActionAndExportButton() {
return (
(this.showLayoutOptionsButton || this.showColumnsButton) &&
(this.showActionsButton || this.showExportButton || this.showSearchInput)
);
}
public get showDivider3() {
return (this.showActionsButton || this.showExportButton) && this.showSearchInput;
}
public get isEditing() {
return this.grid.editing;
}
public get showEditButtons() {
return this.isEditing && this.grid.showEditButtons;
}
public get isNotEditing() {
return !this.isEditing;
}
public get disableDeleteButton() {
if (this.grid.deleteButton === 'selection') {
if (this.grid.selectAllPages) {
const { allSelected, except } = this.grid.selectionState;
return (allSelected && except.length === this.grid.datasource.total) || (!allSelected && except.length === 0);
}
return this.grid.selectedRows.length === 0;
}
if (this.grid.deleteButton === 'currentRow') {
return !this.grid.datasource.currentRow[this.grid.datasource.uniqueKey];
}
return false;
}
}
|