package.initializers.utils.utils.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
import _typeof from "@babel/runtime/helpers/typeof";
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
import i18n from "i18next";
var getter = function getter(key) {
return function () {
return i18n.t("taxonomyDefaultLabels.".concat(key));
};
};
export var replaceNullValuesWithGetter = function replaceNullValuesWithGetter(inputObject) {
var parentKey = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
var result = {};
for (var _i = 0, _Object$entries = Object.entries(inputObject); _i < _Object$entries.length; _i++) {
var _Object$entries$_i = _slicedToArray(_Object$entries[_i], 2),
key = _Object$entries$_i[0],
value = _Object$entries$_i[1];
var transKey = parentKey ? "".concat(parentKey, ".").concat(key) : key;
if (value === null) {
Object.defineProperty(result, key, {
get: getter(transKey)
});
} else if (_typeof(value) === "object") {
result[key] = replaceNullValuesWithGetter(value, transKey);
} else {
result[key] = value;
}
}
return result;
};
//# sourceMappingURL=utils.js.map