@intlayer/core
Version:
Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.
79 lines • 2.48 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var updateNodeChildren_exports = {};
__export(updateNodeChildren_exports, {
updateNodeChildren: () => updateNodeChildren
});
module.exports = __toCommonJS(updateNodeChildren_exports);
var import_types = require('../types/index.cjs');
const updateNodeChildren = (section, newChildren) => {
if (typeof section === "string") {
return newChildren;
}
if (typeof section === "number") {
return newChildren;
}
if (typeof section === "boolean") {
return newChildren;
}
if (typeof section?.nodeType === "string") {
const typedNode = section;
const content = typedNode[typedNode.nodeType];
if (typedNode.nodeType === import_types.NodeType.Translation || typedNode.nodeType === import_types.NodeType.Enumeration || typedNode.nodeType === import_types.NodeType.Condition) {
const newContent = Object.entries(content).reduce(
(acc, [key]) => ({
...acc,
[key]: newChildren
}),
{}
);
return {
...typedNode,
[typedNode.nodeType]: newContent
};
}
if (typedNode.nodeType === import_types.NodeType.Nested) {
return typedNode;
}
return {
...typedNode,
[typedNode.nodeType]: newChildren
};
}
if (!section || typeof section !== "object") {
return newChildren;
}
if (Array.isArray(section)) {
return section.map(() => newChildren);
}
return Object.entries(
section
).reduce(
(acc, [key]) => ({
...acc,
[key]: newChildren
}),
{}
);
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
updateNodeChildren
});
//# sourceMappingURL=updateNodeChildren.cjs.map