@intlayer/core
Version:
Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.
42 lines • 1.58 kB
JavaScript
import { NodeType } from "../types/index.mjs";
const renameContentNodeByKeyPath = (dictionaryContent, newKey, keyPath) => {
let currentValue = dictionaryContent;
let parentValue = null;
let lastKey = null;
for (const keyObj of keyPath) {
parentValue = currentValue;
if (keyObj.type === NodeType.Object || keyObj.type === NodeType.Array) {
lastKey = keyObj.key;
currentValue = currentValue[keyObj.key];
}
if (keyObj.type === NodeType.Translation || keyObj.type === NodeType.Enumeration || keyObj.type === NodeType.Condition) {
lastKey = keyObj.type;
currentValue = currentValue[keyObj.type][keyObj.key];
}
if (keyObj.type === NodeType.Markdown || keyObj.type === NodeType.ReactNode || keyObj.type === NodeType.Insertion || keyObj.type === NodeType.File) {
lastKey = keyObj.type;
currentValue = currentValue[keyObj.type];
}
}
if (parentValue && lastKey !== null) {
if (Array.isArray(parentValue)) {
parentValue[lastKey] = currentValue;
} else {
const newParentValue = {};
for (const key of Object.keys(parentValue)) {
if (key === lastKey && typeof newKey !== "undefined") {
newParentValue[newKey] = currentValue;
} else {
newParentValue[key] = parentValue[key];
}
}
Object.keys(parentValue).forEach((key) => delete parentValue[key]);
Object.assign(parentValue, newParentValue);
}
}
return dictionaryContent;
};
export {
renameContentNodeByKeyPath
};
//# sourceMappingURL=renameContentNodeByKeyPath.mjs.map