Refactor dynamic column generation code

pull/4/head
Max 4 years ago
parent 75cb28aa97
commit 62dcc610a1

@ -49,19 +49,19 @@
<!-- Other Columns --> <!-- Other Columns -->
<ng-container <ng-container
*ngFor="let column of dataColumns" *ngFor="let column of columnInfo"
[matColumnDef]="column" [matColumnDef]="column.name"
[sticky]="isStickyColumn(column)" [sticky]="isStickyColumn(column.name)"
> >
<!-- add cdkDrag to make columns draggable--> <!-- add cdkDrag to make columns draggable-->
<th mat-header-cell *matHeaderCellDef mat-sort-header> <th mat-header-cell *matHeaderCellDef mat-sort-header>
{{ getHeader(column) }} {{ getHeader(column.name) }}
</th> </th>
<td mat-cell *matCellDef="let element"> <td mat-cell *matCellDef="let element">
<app-cell <app-cell
[editable]="element.isLockedByMe && !isReadonly(column)" [editable]="element.isLockedByMe && !isReadonly(column.name)"
[(value)]="element[column]" [(value)]="element[column.name]"
[inputType]="getType(column, element)" [inputType]="getType(column.name)"
></app-cell> ></app-cell>
</td> </td>
</ng-container> </ng-container>

@ -9,39 +9,88 @@ import { filter } from 'graphql-anywhere';
import { import {
CargoBikeFieldsMutableFragmentDoc, CargoBikeFieldsMutableFragmentDoc,
CargoBikeUpdateInput, CargoBikeUpdateInput,
GetCargoBikesDocument
} from 'src/generated/graphql'; } from 'src/generated/graphql';
import { SchemaService } from 'src/app/services/schema.service'; import { SchemaService } from 'src/app/services/schema.service';
import { logArrayInColumnInfoForm } from 'src/app/helperFunctions/logArrayInColumnInfoForm';
@Component({ @Component({
selector: 'app-bikes', selector: 'app-bikes',
templateUrl: './bikes.component.html', templateUrl: './bikes.component.html',
styleUrls: ['./bikes.component.scss'], styleUrls: ['./bikes.component.scss'],
}) })
export class BikesComponent { export class BikesComponent {
/** this array defines the columns and headers of the table and the order they are displayed */
columnInfo = [ columnInfo = [
{ name: 'name', header: 'Name', sticky: true }, { name: 'name', header: 'Name', sticky: true },
{ name: 'id', header: 'ID', readonly: true }, { name: 'id', header: 'ID', readonly: true },
{ name: 'group', header: 'Gruppe'}, { name: 'group', header: 'Gruppe' },
]; { name: 'modelName', header: 'Modelname' },
{ name: 'insuranceData.billing', header: '' },
// properties that wont be shown in the table { name: 'insuranceData.hasFixedRate', header: '' },
blacklistedColumns = [ { name: 'insuranceData.name', header: '' },
'__typename', { name: 'insuranceData.benefactor', header: '' },
'isLocked', { name: 'insuranceData.noPnP', header: '' },
'isLockedByMe', { name: 'insuranceData.maintenanceResponsible', header: '' },
'lockedBy', { name: 'insuranceData.maintenanceBenefactor', header: '' },
'lockedUntil', { name: 'insuranceData.maintenanceAgreement', header: '' },
{ name: 'insuranceData.fixedRate', header: '' },
{ name: 'insuranceData.projectAllowance', header: '' },
{ name: 'insuranceData.notes', header: '' },
{ name: 'dimensionsAndLoad.bikeLength', header: '' },
{ name: 'dimensionsAndLoad.bikeWeight', header: '' },
{ name: 'dimensionsAndLoad.bikeHeight', header: '' },
{ name: 'dimensionsAndLoad.bikeWidth', header: '' },
{ name: 'dimensionsAndLoad.boxHeight', header: '' },
{ name: 'dimensionsAndLoad.boxLength', header: '' },
{ name: 'dimensionsAndLoad.boxWidth', header: '' },
{ name: 'dimensionsAndLoad.hasCoverBox', header: '' },
{ name: 'dimensionsAndLoad.lockable', header: '' },
{ name: 'dimensionsAndLoad.maxWeightBox', header: '' },
{ name: 'dimensionsAndLoad.maxWeightLuggageRack', header: '' },
{ name: 'dimensionsAndLoad.maxWeightTotal', header: '' },
{ name: 'numberOfChildren', header: '' },
{ name: 'numberOfWheels', header: '' },
{ name: 'forCargo', header: '' },
{ name: 'forChildren', header: '' },
{ name: 'security.frameNumber', header: '' },
{ name: 'security.adfcCoding', header: '' },
{ name: 'security.keyNumberAXAChain', header: '' },
{ name: 'security.keyNumberFrameLock', header: '' },
{ name: 'security.policeCoding', header: '' },
{ name: 'technicalEquipment.bicycleShift', header: '' },
{ name: 'technicalEquipment.isEBike', header: '' },
{ name: 'technicalEquipment.hasLightSystem', header: '' },
{ name: 'technicalEquipment.specialFeatures', header: '' },
{ name: 'stickerBikeNameState', header: '' },
{ name: 'note', header: '' },
{ name: 'taxes.costCenter', header: '' },
{ name: 'taxes.organisationArea', header: '' },
{ name: 'provider.id', header: '' },
{ name: 'provider.formName', header: '' },
{ name: 'provider.privatePerson.id', header: '' },
{ name: 'provider.privatePerson.person.id', header: '' },
{ name: 'provider.privatePerson.person.name', header: '' },
{ name: 'provider.privatePerson.person.firstName', header: '' },
{
name: 'provider.privatePerson.person.contactInformation.email',
header: '',
},
{ name: 'lendingStation.id', header: '' },
{ name: 'lendingStation.name', header: '' },
{ name: 'lendingStation.address.number', header: '' },
{ name: 'lendingStation.address.street', header: '' },
{ name: 'lendingStation.address.zip', header: '' },
]; ];
dataColumns: string[] = [];
additionalColumnsFront: string[] = ['select']; additionalColumnsFront: string[] = ['select'];
additionalColumnsBack: string[] = ['buttons']; additionalColumnsBack: string[] = ['buttons'];
displayedColumns: string[] = []; displayedColumns: string[] = [];
loadingRowIds: string[] = []; loadingRowIds: string[] = [];
data = [] as Array<any>; /** data source of the table */
data = [] as Array<any>;
selection = new SelectionModel<CargoBikeResult>(true, []); selection = new SelectionModel<CargoBikeResult>(true, []);
reloadingTable = false; reloadingTable = false;
@ -53,6 +102,9 @@ export class BikesComponent {
private bikesService: BikesService, private bikesService: BikesService,
private schemaService: SchemaService private schemaService: SchemaService
) { ) {
this.columnInfo.forEach((column) =>
this.displayedColumns.push(column.name)
);
this.displayedColumns.unshift(this.additionalColumnsFront[0]); this.displayedColumns.unshift(this.additionalColumnsFront[0]);
this.displayedColumns.push(this.additionalColumnsBack[0]); this.displayedColumns.push(this.additionalColumnsBack[0]);
@ -60,40 +112,11 @@ export class BikesComponent {
this.loadingRowIds = rowIds; this.loadingRowIds = rowIds;
}); });
bikesService.bikes.subscribe((bikes) => { bikesService.bikes.subscribe((newTableDataSource) => {
this.reloadingTable = false; this.reloadingTable = false;
this.data = [];
this.data = bikes; for (const row of newTableDataSource) {
this.data.push(flatten(row));
if (this.data[0]) {
this.displayedColumns = [];
this.dataColumns = [];
for (const index in this.data) {
this.data[index] = flatten(this.data[index]);
}
for (const prop in this.data[0]) {
if (!this.blacklistedColumns.includes(prop) && !prop.includes('__')) {
this.dataColumns.push(prop);
}
}
// sort, so the displayedColumns array is in the same order as the columnInfo
this.dataColumns.sort((columnA, columnB) => {
const indexA = this.columnInfo.findIndex((c) => c.name === columnA);
const indexB = this.columnInfo.findIndex((c) => c.name === columnB);
if (indexA === -1) {
return 1;
} else if (indexB === -1) {
return -1;
} else {
return indexA - indexB;
}
});
this.displayedColumns.push(...this.dataColumns);
this.displayedColumns.unshift(...this.additionalColumnsFront);
this.displayedColumns.push(...this.additionalColumnsBack);
} }
}); });
bikesService.loadBikes(); bikesService.loadBikes();
@ -107,8 +130,6 @@ export class BikesComponent {
} }
} }
}, this.relockingDuration); }, this.relockingDuration);
console.log(GetCargoBikesDocument);
} }
ngOnDestroy() { ngOnDestroy() {
@ -122,10 +143,11 @@ export class BikesComponent {
); );
} }
getType(propertyName: string, row) { getType(propertyName: string) {
// console.log(propertyName, this.schemaService.getPropertyTypeFromSchema("CargoBike", propertyName)) // console.log(propertyName, this.schemaService.getPropertyTypeFromSchema("CargoBike", propertyName))
return ( return this.schemaService.getPropertyTypeFromSchema(
this.schemaService.getPropertyTypeFromSchema('CargoBike', propertyName) 'CargoBike',
propertyName
); );
} }

Loading…
Cancel
Save