2020-10-25 08:31:00 +00:00
|
|
|
import _ from 'lodash';
|
2020-11-16 20:59:08 +00:00
|
|
|
import { EngineDriver, ViewInfo, ColumnInfo } from 'dbgate-types';
|
2020-10-25 08:31:00 +00:00
|
|
|
import { GridDisplay, ChangeCacheFunc, ChangeConfigFunc } from './GridDisplay';
|
|
|
|
import { GridConfig, GridCache } from './GridConfig';
|
|
|
|
import { FreeTableModel } from './FreeTableModel';
|
|
|
|
|
|
|
|
export class FreeTableGridDisplay extends GridDisplay {
|
|
|
|
constructor(
|
|
|
|
public model: FreeTableModel,
|
|
|
|
config: GridConfig,
|
|
|
|
setConfig: ChangeConfigFunc,
|
|
|
|
cache: GridCache,
|
|
|
|
setCache: ChangeCacheFunc
|
|
|
|
) {
|
|
|
|
super(config, setConfig, cache, setCache);
|
|
|
|
this.columns = this.getDisplayColumns(model);
|
2020-10-28 17:42:02 +00:00
|
|
|
this.filterable = false;
|
|
|
|
this.sortable = false;
|
2020-10-25 08:31:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getDisplayColumns(model: FreeTableModel) {
|
|
|
|
return (
|
|
|
|
model?.structure?.columns
|
|
|
|
?.map((col) => this.getDisplayColumn(col))
|
|
|
|
?.map((col) => ({
|
|
|
|
...col,
|
|
|
|
isChecked: this.isColumnChecked(col),
|
|
|
|
})) || []
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
getDisplayColumn( col: ColumnInfo) {
|
|
|
|
const uniquePath = [col.columnName];
|
|
|
|
const uniqueName = uniquePath.join('.');
|
|
|
|
return {
|
|
|
|
...col,
|
|
|
|
pureName: 'data',
|
|
|
|
schemaName: '',
|
|
|
|
headerText: col.columnName,
|
|
|
|
uniqueName,
|
|
|
|
uniquePath,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|