typia
Version:
Superfast runtime validators with only one line
115 lines (108 loc) • 3.38 kB
text/typescript
import ts from "typescript";
import { StatementFactory } from "../../factories/StatementFactory";
import { TypeFactory } from "../../factories/TypeFactory";
import { IProgrammerProps } from "../../transformers/IProgrammerProps";
import { ITypiaContext } from "../../transformers/ITypiaContext";
import { FeatureProgrammer } from "../FeatureProgrammer";
import { IsProgrammer } from "../IsProgrammer";
import { FunctionProgrammer } from "../helpers/FunctionProgrammer";
import { HttpQueryProgrammer } from "./HttpQueryProgrammer";
export namespace HttpIsQueryProgrammer {
export interface IProps extends IProgrammerProps {
allowOptional?: boolean;
}
export const decompose = (props: {
context: ITypiaContext;
functor: FunctionProgrammer;
type: ts.Type;
name: string | undefined;
allowOptional: boolean;
}): FeatureProgrammer.IDecomposed => {
const is: FeatureProgrammer.IDecomposed = IsProgrammer.decompose({
...props,
context: {
...props.context,
options: {
...props.context.options,
functional: false,
numeric: true,
},
},
config: {
equals: false,
},
});
const decode: FeatureProgrammer.IDecomposed =
HttpQueryProgrammer.decompose(props);
return {
functions: {
...is.functions,
...decode.functions,
},
statements: [
...is.statements,
...decode.statements,
StatementFactory.constant({
name: "__is",
value: is.arrow,
}),
StatementFactory.constant({
name: "__decode",
value: decode.arrow,
}),
],
arrow: ts.factory.createArrowFunction(
undefined,
undefined,
decode.arrow.parameters,
ts.factory.createUnionTypeNode([
decode.arrow.type ?? TypeFactory.keyword("any"),
ts.factory.createTypeReferenceNode("null"),
]),
undefined,
ts.factory.createBlock(
[
StatementFactory.constant({
name: "value",
value: ts.factory.createCallExpression(
ts.factory.createIdentifier("__decode"),
undefined,
[ts.factory.createIdentifier("input")],
),
}),
ts.factory.createIfStatement(
ts.factory.createPrefixUnaryExpression(
ts.SyntaxKind.ExclamationToken,
ts.factory.createCallExpression(
ts.factory.createIdentifier("__is"),
undefined,
[ts.factory.createIdentifier("value")],
),
),
ts.factory.createReturnStatement(ts.factory.createNull()),
),
ts.factory.createReturnStatement(
ts.factory.createIdentifier("value"),
),
],
true,
),
),
};
};
export const write = (props: IProps): ts.CallExpression => {
const functor: FunctionProgrammer = new FunctionProgrammer(
props.modulo.getText(),
);
const result: FeatureProgrammer.IDecomposed = decompose({
...props,
functor,
allowOptional: !!props.allowOptional,
});
return FeatureProgrammer.writeDecomposed({
modulo: props.modulo,
functor,
result,
});
};
}