dilswer
Version:
Blazingly fast data validation library with TypeScript integration.
79 lines (77 loc) • 3.05 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
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 __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
// src/data-types/types/dict.ts
var dict_exports = {};
__export(dict_exports, {
DictType: () => DictType
});
module.exports = __toCommonJS(dict_exports);
var import_base_type = require("../base-type.js");
var import_generate_standard_schema = require("../generate-standard-schema.js");
var import_union = require("./union.js");
var import_validation_error = require("../../validation-algorithms/validation-error/validation-error.js");
var DictType = class extends import_base_type.BaseType {
constructor(dict) {
super();
__publicField(this, "dict", dict);
__publicField(this, "kind", "dictionary");
__publicField(this, "union");
this.union = new import_union.UnionType(this.dict);
Object.freeze(this.dict);
Object.freeze(this);
}
/** @internal */
_acceptVisitor(visitor, depth = 1) {
const children = [];
for (let i = 0; i < this.dict.length; i++) {
children.push(this.dict[i]._acceptVisitor(visitor, depth + 1));
}
return visitor.visit(this, children, depth);
}
get ["~standard"]() {
return (0, import_generate_standard_schema.getStandardSchemaProps)(this);
}
["~validate"](path, value) {
if (typeof value !== "object" || value === null || Array.isArray(value)) {
throw new import_validation_error.ValidationError(path, this, value, "not an object");
}
const keys = Object.keys(value);
for (let index = 0; index < keys.length; index++) {
const key = keys[index];
this.union["~validate"](path.concat(key), value[key]);
}
}
["~matches"](value) {
if (typeof value !== "object" || value === null || Array.isArray(value)) {
return false;
}
const keys = Object.keys(value);
for (let index = 0; index < keys.length; index++) {
const key = keys[index];
const match = this.union["~matches"](value[key]);
if (!match) return false;
}
return true;
}
toString() {
return `DictSchema[ ${this.union.toString()} ]`;
}
};