UNPKG

@matatbread/typia

Version:

Superfast runtime validators with only one line

84 lines (81 loc) 3.67 kB
import ts from 'typescript'; import { IdentifierFactory } from '../../factories/IdentifierFactory.mjs'; import { StatementFactory } from '../../factories/StatementFactory.mjs'; import { TypeFactory } from '../../factories/TypeFactory.mjs'; import { FeatureProgrammer } from '../FeatureProgrammer.mjs'; import { ValidateProgrammer } from '../ValidateProgrammer.mjs'; import { FunctionProgrammer } from '../helpers/FunctionProgrammer.mjs'; import { JsonStringifyProgrammer } from './JsonStringifyProgrammer.mjs'; var JsonValidateStringifyProgrammer; (function (JsonValidateStringifyProgrammer) { JsonValidateStringifyProgrammer.decompose = (props) => { const validate = ValidateProgrammer.decompose({ ...props, context: { ...props.context, options: { ...props.context.options, functional: false, numeric: true, }, }, config: { equals: false, }, }); const stringify = JsonStringifyProgrammer.decompose({ ...props, validated: true, }); return { functions: { ...validate.functions, ...stringify.functions, }, statements: [ ...validate.statements, ...stringify.statements, StatementFactory.constant({ name: "__validate", value: validate.arrow, }), StatementFactory.constant({ name: "__stringify", value: stringify.arrow, }), ], arrow: ts.factory.createArrowFunction(undefined, undefined, [IdentifierFactory.parameter("input", TypeFactory.keyword("any"))], props.context.importer.type({ file: "typia", name: "IValidation", arguments: [ stringify.arrow.type ?? ts.factory.createTypeReferenceNode("string"), ], }), undefined, ts.factory.createBlock([ StatementFactory.constant({ name: "result", value: ts.factory.createAsExpression(ts.factory.createCallExpression(ts.factory.createIdentifier("__validate"), undefined, [ts.factory.createIdentifier("input")]), TypeFactory.keyword("any")), }), ts.factory.createIfStatement(ts.factory.createIdentifier("result.success"), ts.factory.createExpressionStatement(ts.factory.createBinaryExpression(ts.factory.createIdentifier("result.data"), ts.SyntaxKind.EqualsToken, ts.factory.createCallExpression(ts.factory.createIdentifier("__stringify"), undefined, [ts.factory.createIdentifier("input")])))), ts.factory.createReturnStatement(ts.factory.createIdentifier("result")), ])), }; }; JsonValidateStringifyProgrammer.write = (props) => { const functor = new FunctionProgrammer(props.modulo.getText()); const result = JsonValidateStringifyProgrammer.decompose({ context: props.context, modulo: props.modulo, functor, type: props.type, name: props.name, }); return FeatureProgrammer.writeDecomposed({ modulo: props.modulo, functor, result, }); }; })(JsonValidateStringifyProgrammer || (JsonValidateStringifyProgrammer = {})); export { JsonValidateStringifyProgrammer }; //# sourceMappingURL=JsonValidateStringifyProgrammer.mjs.map