extract parition key
This commit is contained in:
parent
24860a6842
commit
0774ad4561
|
@ -85,20 +85,61 @@ export const queryPagesUntilContentPresent = async (
|
||||||
};
|
};
|
||||||
|
|
||||||
/* eslint-disable @typescript-eslint/no-explicit-any */
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||||
export const extractPartitionKeyValues = (
|
// export const extractPartitionKeyValues = (
|
||||||
documentContent: any,
|
// documentContent: any,
|
||||||
partitionKeyDefinition: PartitionKeyDefinition,
|
// partitionKeyDefinition: PartitionKeyDefinition,
|
||||||
): PartitionKey[] => {
|
// ): PartitionKey[] => {
|
||||||
if (!partitionKeyDefinition.paths || partitionKeyDefinition.paths.length === 0) {
|
// if (!partitionKeyDefinition.paths || partitionKeyDefinition.paths.length === 0) {
|
||||||
return undefined;
|
// return undefined;
|
||||||
|
// }
|
||||||
|
|
||||||
|
// const partitionKeyValues: PartitionKey[] = [];
|
||||||
|
// partitionKeyDefinition.paths.forEach((partitionKeyPath: string) => {
|
||||||
|
// const partitionKeyPathWithoutSlash: string = partitionKeyPath.substring(1);
|
||||||
|
// // if (documentContent[partitionKeyPathWithoutSlash]) {
|
||||||
|
// // partitionKeyValues.push(documentContent[partitionKeyPathWithoutSlash]);
|
||||||
|
// // }
|
||||||
|
|
||||||
|
// const partitionKeyPathParts: string[] = partitionKeyPathWithoutSlash.split("/");
|
||||||
|
// let partitionKeyValue: any = documentContent;
|
||||||
|
|
||||||
|
// for(let partitionKeyPathPartIndex in partitionKeyPathParts) {
|
||||||
|
// const partitionKeyPathPart: string = partitionKeyPathParts[partitionKeyPathPartIndex];
|
||||||
|
// if (!(partitionKeyPathPart in documentContent)) {
|
||||||
|
// partitionKeyValue = {};
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// partitionKeyValue = partitionKeyValue[partitionKeyPathPart];
|
||||||
|
// }
|
||||||
|
|
||||||
|
// partitionKeyValues.push(partitionKeyValue);
|
||||||
|
// });
|
||||||
|
// return partitionKeyValues;
|
||||||
|
// };
|
||||||
|
|
||||||
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||||
|
export const extractPartitionKeyValues = (document: any, partitionKeyDefinition: PartitionKeyDefinition): PartitionKey[] => {
|
||||||
|
if (partitionKeyDefinition && partitionKeyDefinition.paths && partitionKeyDefinition.paths.length > 0) {
|
||||||
|
var partitionKey: any = [];
|
||||||
|
partitionKeyDefinition.paths.forEach(function (path) {
|
||||||
|
path = path.substring(1);
|
||||||
|
const pathParts: string[] = path.split("/");
|
||||||
|
|
||||||
|
var obj = document;
|
||||||
|
for (var i = 0; i < pathParts.length; ++i) {
|
||||||
|
if (!((typeof obj === "object") && (pathParts[i] in obj))) {
|
||||||
|
obj = {};
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
obj = obj[pathParts[i]];
|
||||||
|
}
|
||||||
|
|
||||||
|
partitionKey.push(obj);
|
||||||
|
});
|
||||||
|
|
||||||
|
return partitionKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
const partitionKeyValues: PartitionKey[] = [];
|
return undefined;
|
||||||
partitionKeyDefinition.paths.forEach((partitionKeyPath: string) => {
|
}
|
||||||
const partitionKeyPathWithoutSlash: string = partitionKeyPath.substring(1);
|
|
||||||
if (documentContent[partitionKeyPathWithoutSlash]) {
|
|
||||||
partitionKeyValues.push(documentContent[partitionKeyPathWithoutSlash]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return partitionKeyValues;
|
|
||||||
};
|
|
||||||
|
|
Loading…
Reference in New Issue