typia
Version:
Superfast runtime validators with only one line
106 lines (99 loc) • 3.23 kB
text/typescript
import ts from "typescript";
import { IdentifierFactory } from "../../factories/IdentifierFactory";
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 { NotationGeneralProgrammer } from "./NotationGeneralProgrammer";
export namespace NotationIsGeneralProgrammer {
export interface IProps extends IProgrammerProps {
rename: (str: string) => string;
}
export const decompose = (props: {
rename: (str: string) => string;
context: ITypiaContext;
functor: FunctionProgrammer;
type: ts.Type;
name: string | undefined;
}): FeatureProgrammer.IDecomposed => {
const is: FeatureProgrammer.IDecomposed = IsProgrammer.decompose({
...props,
config: {
equals: false,
},
});
const notation: FeatureProgrammer.IDecomposed =
NotationGeneralProgrammer.decompose({
...props,
validated: true,
});
return {
functions: {
...is.functions,
...notation.functions,
},
statements: [
...is.statements,
...notation.statements,
StatementFactory.constant({
name: "__is",
value: is.arrow,
}),
StatementFactory.constant({
name: "__notation",
value: notation.arrow,
}),
],
arrow: ts.factory.createArrowFunction(
undefined,
undefined,
[IdentifierFactory.parameter("input", TypeFactory.keyword("any"))],
ts.factory.createUnionTypeNode([
notation.arrow.type ?? TypeFactory.keyword("any"),
ts.factory.createTypeReferenceNode("null"),
]),
undefined,
ts.factory.createBlock(
[
ts.factory.createIfStatement(
ts.factory.createPrefixUnaryExpression(
ts.SyntaxKind.ExclamationToken,
ts.factory.createCallExpression(
ts.factory.createIdentifier("__is"),
undefined,
[ts.factory.createIdentifier("input")],
),
),
ts.factory.createReturnStatement(ts.factory.createNull()),
),
ts.factory.createReturnStatement(
ts.factory.createCallExpression(
ts.factory.createIdentifier("__notation"),
undefined,
[ts.factory.createIdentifier("input")],
),
),
],
true,
),
),
};
};
export const write = (props: IProps): ts.CallExpression => {
const functor: FunctionProgrammer = new FunctionProgrammer(
props.modulo.getText(),
);
const result: FeatureProgrammer.IDecomposed = decompose({
...props,
functor,
});
return FeatureProgrammer.writeDecomposed({
modulo: props.modulo,
functor,
result,
});
};
}