CLI 插件
warning 警告 本章仅适用于代码优先方法。
TypeScript 的元数据反射系统存在一些限制,使得无法确定类的属性组成,也无法识别给定属性是可选的还是必需的。然而,其中一些约束可以在编译时解决。Nest 提供了一个插件来增强 TypeScript 编译过程,从而减少所需的样板代码量。
info 提示 此插件是可选启用的。如果您愿意,可以手动声明所有装饰器,或者仅在需要的地方声明特定的装饰器。
概述
GraphQL 插件将自动:
- 为所有输入对象、对象类型和参数类的属性添加
@Field 注解,除非使用了 @HideField
- 根据问号设置
nullable 属性(例如,name?: string 将设置 nullable: true)
- 根据类型设置
type 属性(也支持数组)
- 根据注释生成属性的描述(如果
introspectComments 设置为 true)
请注意,您的文件名必须具有以下后缀之一才能被插件分析:['.input.ts', '.args.ts', '.entity.ts', '.model.ts'](例如,author.entity.ts)。如果您使用不同的后缀,可以通过指定 typeFileNameSuffix 选项来调整插件行为(见下文)。
根据我们目前所学的内容,您必须复制大量代码才能让包知道您的类型应如何在 GraphQL 中声明。例如,您可以如下定义一个简单的 Author 类:
@ObjectType()
export class Author {
@Field(type => ID)
id: number;
@Field({ nullable: true })
firstName?: string;
@Field({ nullable: true })
lastName?: string;
@Field(type => [Post])
posts: Post[];
}
虽然对于中型项目来说这不是一个重大问题,但一旦您拥有大量类,它就会变得冗长且难以维护。
通过启用 GraphQL 插件,上述类定义可以简单地声明为:
@ObjectType()
export class Author {
@Field(type => ID)
id: number;
firstName?: string;
lastName?: string;
posts: Post[];
}
该插件基于抽象语法树自动添加适当的装饰器。因此,您不必再为散布在代码中的 @Field 装饰器而烦恼。
info 提示 插件将自动生成任何缺失的 GraphQL 属性,但如果您需要覆盖它们,只需通过 @Field() 显式设置即可。
注释内省
启用注释内省功能后,CLI 插件将根据注释为字段生成描述。
例如,给定一个示例 roles 属性:
/**
* A list of user's roles
*/
@Field(() => [String], {
description: `A list of user's roles`
})
roles: string[];
您必须重复描述值。启用 introspectComments 后,CLI 插件可以提取这些注释并自动为属性提供描述。现在,上述字段可以简单地声明如下:
/**
* A list of user's roles
*/
roles: string[];
使用 CLI 插件
要启用插件,请打开 nest-cli.json(如果您使用 Nest CLI)并添加以下 plugins 配置:
{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"plugins": ["@nestjs/graphql"]
}
}
您可以使用 options 属性来自定义插件的行为。
{
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"plugins": [
{
"name": "@nestjs/graphql",
"options": {
"typeFileNameSuffix": [".input.ts", ".args.ts"],
"introspectComments": true
}
}
]
}
}
options 属性必须满足以下接口:
export interface PluginOptions {
typeFileNameSuffix?: string[];
introspectComments?: boolean;
}
如果您不使用 CLI,而是使用自定义的 webpack 配置,可以将此插件与 ts-loader 结合使用:
getCustomTransformers: (program: any) => ({
before: [require('@nestjs/graphql/plugin').before({}, program)]
}),
SWC 构建器
对于标准设置(非 monorepo),要在 SWC 构建器中使用 CLI 插件,您需要启用类型检查,如 here 所述。
$ nest start -b swc --type-check
对于 monorepo 设置,请遵循 here 中的说明。
$ npx ts-node src/generate-metadata.ts
# OR npx ts-node apps/{YOUR_APP}/src/generate-metadata.ts
现在,必须通过 GraphQLModule 方法加载序列化的元数据文件,如下所示:
import metadata from './metadata.js'; // <-- file auto-generated by the "PluginMetadataGenerator"
GraphQLModule.forRoot<...>({
..., // other options
metadata,
}),
与 ts-jest 集成(e2e 测试)
在启用此插件运行 e2e 测试时,您可能会遇到编译 schema 的问题。例如,最常见的错误之一是:
Object type <name> must define one or more fields.
这是因为 jest 配置没有在任何地方导入 @nestjs/graphql/plugin 插件。
要解决此问题,请在您的 e2e 测试目录中创建以下文件:
const transformer = require('@nestjs/graphql/plugin');
module.exports.name = 'nestjs-graphql-transformer';
// you should change the version number anytime you change the configuration below - otherwise, jest will not detect changes
module.exports.version = 1;
module.exports.factory = (cs) => {
return transformer.before(
{
// @nestjs/graphql/plugin options (can be empty)
},
cs.program, // "cs.tsCompiler.program" for older versions of Jest (<= v27)
);
};
完成此操作后,在您的 jest 配置文件中导入 AST 转换器。默认情况下(在入门应用程序中),e2e 测试配置文件位于 test 文件夹下,名为 jest-e2e.json。
{
... // other configuration
"globals": {
"ts-jest": {
"astTransformers": {
"before": ["<path to the file created above>"]
}
}
}
}
如果您使用 jest@^29,则使用下面的代码片段,因为之前的方法已被弃用。
{
... // other configuration
"transform": {
"^.+\\.(t|j)s$": [
"ts-jest",
{
"astTransformers": {
"before": ["<path to the file created above>"]
}
}
]
}
}