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 142 143 144 145 146 147 148 149 150 | 3x 3x 3x 3x 3x 40x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 22x 30x 93x 93x 44x 49x 1x 48x 24x 24x 1x 23x 1x 22x 6x 6x 3x 3x 40x | import {
ChangeDetectionStrategy,
ChangeDetectorRef,
Component,
Input,
OnDestroy,
ViewEncapsulation
} from '@angular/core';
import { Router } from '@angular/router';
import { AgGridModule } from 'ag-grid-angular';
import { AllCommunityModule, ColDef, ModuleRegistry } from 'ag-grid-community';
import { DateTime } from 'luxon';
import { autorun, IReactionDisposer } from 'mobx';
import { HasChanges } from '../../guard/pending-changes.guard';
import { Ext } from '../../model/ext';
import { Page } from '../../model/page';
import { Ref } from '../../model/ref';
import { gridTemplate } from '../../mods/org/grid';
import { AdminService } from '../../service/admin.service';
import { Store } from '../../store/store';
import { LoadingComponent } from '../loading/loading.component';
import { PageControlsComponent } from '../page-controls/page-controls.component';
import { GridCellComponent } from './grid-cell/grid-cell.component';
@Component({
selector: 'app-grid',
templateUrl: './grid.component.html',
styleUrl: './grid.component.scss',
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
host: { 'class': 'grid ext' },
imports: [
AgGridModule,
PageControlsComponent,
LoadingComponent,
],
})
export class GridComponent implements OnDestroy, HasChanges {
private customTypes = new Set<string>(['url', 'tag', 'tags', 'sources', 'image', 'lens', 'markdown', 'embed']);
private autoHeightTypes = new Set<string>(['tags', 'sources', 'image', 'lens', 'markdown', 'embed']);
private disposers: IReactionDisposer[] = [];
@Input()
tag = '';
@Input()
ext?: Ext;
@Input()
pageControls = true;
@Input()
emptyMessage = 'No results found';
defaultCols: ColDef[] = this.admin.getTemplate('grid')?.defaults?.columnDefs || gridTemplate.defaults.columnDefs;
private _page?: Page<Ref>;
private _cols = 0;
constructor(
public store: Store,
private admin: AdminService,
private router: Router,
private cd: ChangeDetectorRef,
) {
ModuleRegistry.registerModules([ AllCommunityModule ]);
this.disposers.push(autorun(() => {
// Access the observable to subscribe
this.store.darkTheme;
this.cd.markForCheck();
}));
}
saveChanges() {
return true;
}
ngOnDestroy() {
for (const dispose of this.disposers) dispose();
this.disposers.length = 0;
}
get columnDefs(): ColDef[] {
return this.applyFormatters(this.ext?.config?.columnDefs || this.defaultCols);
}
applyFormatters(cols: ColDef[]): ColDef[] {
return cols.map(col => {
const type = col.type as string | undefined;
if (type && this.customTypes.has(type)) {
return {
...col,
cellRenderer: col.cellRenderer || GridCellComponent,
autoHeight: col.autoHeight ?? this.autoHeightTypes.has(type),
wrapText: col.wrapText ?? this.autoHeightTypes.has(type),
};
}
if (type === 'date') {
return { ...col, filter: col.filter || 'agDateColumnFilter', valueFormatter: params => this.formatDate(params.value, DateTime.DATE_SHORT) };
}
if (type === 'dateTime') {
return { ...col, filter: col.filter || 'agDateColumnFilter', valueFormatter: params => this.formatDate(params.value, DateTime.DATETIME_SHORT) };
}
if (type === 'dateString') {
return { ...col, filter: col.filter || 'agDateColumnFilter', valueFormatter: params => this.formatDateString(params.value, DateTime.DATE_SHORT) };
}
if (type === 'dateTimeString') {
return { ...col, filter: col.filter || 'agDateColumnFilter', valueFormatter: params => this.formatDateString(params.value, DateTime.DATETIME_SHORT) };
}
return col;
});
}
formatDate(value: unknown, format: Intl.DateTimeFormatOptions = DateTime.DATETIME_SHORT): string {
return DateTime.isDateTime(value) ? value.toLocaleString(format) : '';
}
formatDateString(value: unknown, format: Intl.DateTimeFormatOptions = DateTime.DATETIME_SHORT): string {
if (typeof value !== 'string') return '';
const dt = DateTime.fromISO(value);
return dt.isValid ? dt.toLocaleString(format) : '';
}
get page(): Page<Ref> | undefined {
return this._page;
}
@Input()
set page(value: Page<Ref> | undefined) {
this._page = value;
if (this._page) {
if (this._page.page.number > 0 && this._page.page.number >= this._page.page.totalPages) {
this.router.navigate([], {
queryParams: {
pageNumber: this._page.page.totalPages - 1
},
queryParamsHandling: 'merge',
});
}
}
}
@Input()
set cols(value: number | undefined) {
this._cols = value || 0;
}
get cols() {
if (this._cols) return this._cols;
return this.ext?.config?.defaultCols;
}
}
|