generic nosql data editor

This commit is contained in:
Jan Prochazka
2024-08-21 13:10:28 +02:00
parent 95f580d51c
commit a51bd70e80
4 changed files with 20 additions and 4 deletions

View File

@@ -66,6 +66,10 @@ function getDisplayColumn(basePath, columnName, display: CollectionGridDisplay)
filterBehaviour: display?.driver?.getFilterBehaviour(null, standardFilterBehaviours) ?? mongoFilterBehaviour, filterBehaviour: display?.driver?.getFilterBehaviour(null, standardFilterBehaviours) ?? mongoFilterBehaviour,
pureName: display.collection?.pureName, pureName: display.collection?.pureName,
schemaName: display.collection?.schemaName, schemaName: display.collection?.schemaName,
isPartitionKey: !!display?.collection?.partitionKey?.find(x => x.columnName == uniqueName),
isClusterKey: !!display?.collection?.clusterKey?.find(x => x.columnName == uniqueName),
isUniqueKey: !!display?.collection?.uniqueKey?.find(x => x.columnName == uniqueName),
}; };
} }
@@ -105,10 +109,10 @@ export class CollectionGridDisplay extends GridDisplay {
this.columns = analyseCollectionDisplayColumns([...(loadedRows || []), ...changedDocs, ...insertedDocs], this); this.columns = analyseCollectionDisplayColumns([...(loadedRows || []), ...changedDocs, ...insertedDocs], this);
this.filterable = true; this.filterable = true;
this.sortable = true; this.sortable = true;
this.editable = !readOnly; this.editable = !readOnly && collection.uniqueKey?.length > 0;
this.supportsReload = true; this.supportsReload = true;
this.isDynamicStructure = true; this.isDynamicStructure = true;
this.changeSetKeyFields = ['_id']; this.changeSetKeyFields = collection.uniqueKey?.map(x => x.columnName);
this.baseCollection = collection; this.baseCollection = collection;
} }
} }

View File

@@ -28,6 +28,12 @@ export interface DisplayColumn {
notNull?: boolean; notNull?: boolean;
autoIncrement?: boolean; autoIncrement?: boolean;
isPrimaryKey?: boolean; isPrimaryKey?: boolean;
// NoSQL specific
isPartitionKey?: boolean;
isClusterKey?: boolean;
isUniqueKey?: boolean;
foreignKey?: ForeignKeyInfo; foreignKey?: ForeignKeyInfo;
isForeignKeyUnique?: boolean; isForeignKeyUnique?: boolean;
isExpandable?: boolean; isExpandable?: boolean;

View File

@@ -559,7 +559,7 @@
for (const column of display.columns) { for (const column of display.columns) {
if (column.uniquePath.length > 1) continue; if (column.uniquePath.length > 1) continue;
if (column.autoIncrement) continue; if (column.autoIncrement) continue;
if (column.columnName == '_id' && isDynamicStructure) continue; if (column.isClusterKey) continue;
grider.setCellValue(rowIndex, column.uniqueName, grider.getRowData(index)[column.uniqueName]); grider.setCellValue(rowIndex, column.uniqueName, grider.getRowData(index)[column.uniqueName]);
} }
@@ -959,7 +959,9 @@
export async function mergeSelectionIntoMirror({ fullRows, mergeMode = 'merge' }) { export async function mergeSelectionIntoMirror({ fullRows, mergeMode = 'merge' }) {
const file = display.baseTableOrSimilar?.pureName; const file = display.baseTableOrSimilar?.pureName;
const mergeKey = display.baseCollection ? ['_id'] : display.baseTable?.primaryKey.columns.map(x => x.columnName); const mergeKey = display.baseCollection
? display.baseCollection?.uniqueKey?.map(x => x.columnName)
: display.baseTable?.primaryKey.columns.map(x => x.columnName);
const cells = cellsToRegularCells(selectedCells); const cells = cellsToRegularCells(selectedCells);
const rowIndexes = _.sortBy(_.uniq(cells.map(x => x[0]))); const rowIndexes = _.sortBy(_.uniq(cells.map(x => x[0])));

View File

@@ -35,10 +35,14 @@ class Analyser extends DatabaseAnalyser {
pureName: x.name, pureName: x.name,
tableRowCount: stats[index]?.count, tableRowCount: stats[index]?.count,
uniqueKey: [{ columnName: '_id' }], uniqueKey: [{ columnName: '_id' }],
partitionKey: [{ columnName: '_id' }],
clusterKey: [{ columnName: '_id' }],
})), })),
...views.map((x, index) => ({ ...views.map((x, index) => ({
pureName: x.name, pureName: x.name,
uniqueKey: [{ columnName: '_id' }], uniqueKey: [{ columnName: '_id' }],
partitionKey: [{ columnName: '_id' }],
clusterKey: [{ columnName: '_id' }],
})), })),
], ],
}); });