2022-09-05 23:57:11 +03:00
|
|
|
"use strict";
|
2022-11-30 23:44:23 +03:00
|
|
|
/**
|
|
|
|
* Property helper functions.
|
|
|
|
*
|
2022-12-03 05:27:06 +03:00
|
|
|
* @_subsection api/utils:Properties [about-properties]
|
2022-11-30 23:44:23 +03:00
|
|
|
*/
|
2022-09-05 23:57:11 +03:00
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2022-11-30 23:44:23 +03:00
|
|
|
exports.defineProperties = exports.resolveProperties = void 0;
|
|
|
|
function checkType(value, type, name) {
|
2022-09-05 23:57:11 +03:00
|
|
|
const types = type.split("|").map(t => t.trim());
|
|
|
|
for (let i = 0; i < types.length; i++) {
|
|
|
|
switch (type) {
|
|
|
|
case "any":
|
|
|
|
return;
|
2022-11-30 23:44:23 +03:00
|
|
|
case "bigint":
|
2022-09-05 23:57:11 +03:00
|
|
|
case "boolean":
|
|
|
|
case "number":
|
|
|
|
case "string":
|
|
|
|
if (typeof (value) === type) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-11-30 23:44:23 +03:00
|
|
|
const error = new Error(`invalid value for type ${type}`);
|
|
|
|
error.code = "INVALID_ARGUMENT";
|
|
|
|
error.argument = `value.${name}`;
|
|
|
|
error.value = value;
|
|
|
|
throw error;
|
|
|
|
}
|
2022-12-03 05:27:06 +03:00
|
|
|
/**
|
|
|
|
* Resolves to a new object that is a copy of %%value%%, but with all
|
|
|
|
* values resolved.
|
|
|
|
*/
|
|
|
|
async function resolveProperties(value) {
|
|
|
|
const keys = Object.keys(value);
|
|
|
|
const results = await Promise.all(keys.map((k) => Promise.resolve(value[k])));
|
|
|
|
return results.reduce((accum, v, index) => {
|
|
|
|
accum[keys[index]] = v;
|
|
|
|
return accum;
|
|
|
|
}, {});
|
|
|
|
}
|
|
|
|
exports.resolveProperties = resolveProperties;
|
2022-11-30 23:44:23 +03:00
|
|
|
/**
|
|
|
|
* Assigns the %%values%% to %%target%% as read-only values.
|
|
|
|
*
|
|
|
|
* It %%types%% is specified, the values are checked.
|
|
|
|
*/
|
|
|
|
function defineProperties(target, values, types) {
|
2022-09-05 23:57:11 +03:00
|
|
|
for (let key in values) {
|
|
|
|
let value = values[key];
|
2022-11-30 23:44:23 +03:00
|
|
|
const type = (types ? types[key] : null);
|
|
|
|
if (type) {
|
|
|
|
checkType(value, type, key);
|
2022-09-05 23:57:11 +03:00
|
|
|
}
|
|
|
|
Object.defineProperty(target, key, { enumerable: true, value, writable: false });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.defineProperties = defineProperties;
|
|
|
|
//# sourceMappingURL=properties.js.map
|