【TS 演化史 您所在的位置:网站首页 js文件和jsx文件 【TS 演化史

【TS 演化史

#【TS 演化史 | 来源: 网络整理| 查看: 265

作者:Marius Schulz 译者:前端小智 来源:https://mariusschulz.com/

各文件的JSX工厂

TypeScript 2.8允许咱们在每个文件的基础上指定JSX工厂名。在早期版本,只能通过--jsxFactory编译器选项指定JSX工厂名。此设置适用于整个项目中的每个JSX文件。现在,咱们还可以通过在文件的开头添加一个特殊的@jsx注释来覆盖项目范围的--jsxFactory设置。

假设咱们要使用Preact渲染字符串 "Hello World!" 并放入容器中。 Preact 使用h函数来创建 JSX 元素。 咱们可以在.tsx文件的开头添加特殊的/ ** @jsx h */注释(也称为“pragma”):

有了/** @jsx h */编译指示后,编译器将为上述文件生成以下 JS 代码:

/** @jsx h */ import { h, render } from "preact"; render( h("h1", null, "Hello World!"), document.getElementById("app") );

下面是用来编译代码的tsconfig.json配置文件:

{ "compilerOptions": { "target": "es5", "module": "es2015", "moduleResolution": "node", "jsx": "react", "strict": true } }

请注意,如果您使用/** ... */块注释语法,则编译器仅识别编译指示。 如果使用// ...单行注释语法,则不会更改JSX出厂设置。

什么是JSX工厂

JSX不是 ECMAScript 标准的一部分;也就是说,它本身不是有效的 JS。因此,包含JSX的脚本或模块不能直接在浏览器中运行。与带有类型注释的文件一样,JSX 文件首先需要编译成纯 JS 文件。--jsxFactory选项告诉 TypeScript 编译器应该如何编译JSX元素。

注意 Hello World!如何转换为 h("h1", null, "Hello World!")。 Preact 使用函数h创建虚拟 DOM 元素,这就是为什么咱们将h指定为JSX工厂名称的原因。 我们还需要从preact包中导入h,以便它在模块中可用。

指定每个文件和每个项目的JSX工厂

那么,什么时候需要在每个文件的基础上指定JSX工厂呢?如果咱们在项目中只将JSX与单个 JS库一起使用,则不需要对每个文件进行配置。在这种情况下,更容易在tsconfig中更改--jsxFactory选项。这样它就可以应用于项目中的所有JSX文件:

{ "compilerOptions": { "target": "es5", "module": "es2015", "moduleResolution": "node", "jsx": "react", "jsxFactory": "h", "strict": true } }

默认情况下,使用--jsx react选项时,--jsxFactory选项设置为React.createElement。 因此,如果咱们使用的是 React,则完全不需要指定--jsxFactory选项,也不必添加/ ** @jsx ... * /编译指示。

如果在同一项目中将多个JS库与JSX一起使用,则JSX工厂的按文件配置很有用。 例如,咱们可能想将Vue组件添加到主要用 eact 编写的Web应用程序中。 / ** @jsx ... * / 编译指示允许咱们为这些文件指定不同的 JSX 工厂,而不必具有多个tsconfig.json文件。

有条件类型

TypeScript 2.8 引入了有条件类型,这是类型系统的强大而令人兴奋的补充。 有条件类型使咱们可以表达非均匀类型映射,即,根据条件而不同的类型转换。

有条件的类型会以一个条件表达式进行类型关系检测,从而在两种类型中选择其一:

T extends U ? X : Y

上面的类型意思是,若T能够赋值给U,那么类型是X,否则为Y。

下面是一个在 TypeScript 的lib.es5.d.ts类型定义文件中预定义的有条件类型的例子

/** * Exclude null and undefined from T */ type NonNullable = T extends null | undefined ? never : T;

如果类型T可赋值给类型null或类型undefined,则NonNullable类型为never类型;否则它将保留类型 T。never类型是 TypeScript 的底层类型,表示从未出现的值的类型。

分布式有条件类型

那么,为什么e 条件类型和never类型的组合是有用的呢?它有效地允许咱们从联合类型中删除组成类型。如果有条件类型里待检查的类型是naked type parameter,那么它也被称为“分布式有条件类型”。 分布式有条件类型在实例化时会自动分发成联合类型。 例如,实例化T extends U ? X : Y,T的类型为A | B | C,会被解析为(A extends U ? X : Y) | (B extends U ? X : Y) | (C extends U ? X : Y)。

这个描述相当抽象,咱们来看一个具体的例子。咱们定义一个EmailAddress类型别名,它表示四种不同类型的联合,包括null和undefined类型

type EmailAddress = string | string[] | null | undefined;

现在,咱们将NonNullable类型应用于EmailAddress,并逐步解析结果类型:

type NonNullableEmailAddress = NonNullable;

咱们首先用别名的联合类型替换EmailAddress:

type NonNullableEmailAddress = NonNullable< | string | string[] | null | undefined >;

这就是有条件类型的分配特性发挥作用的地方。NonNullable类型应用于联合类型,这相当于将有条件类型应用于联合类型中的所有类型:

type NonNullableEmailAddress = | NonNullable | NonNullable | NonNullable | NonNullable;

现在,咱们可以在任何地方通过其定​​义替换NonNullable:

type NonNullableEmailAddress = | (string extends null | undefined ? never : string) | (string[] extends null | undefined ? never : string[]) | (null extends null | undefined ? never : null) | (undefined extends null | undefined ? never : undefined);

接下来,咱们必须解析这四种有条件类型。string和string[]都不能赋值给 null | undefined,这就是前两种类型选择string和string[]的原因。null和undefined都可以赋值给null | undefined,这就是为什么后两种类型都选择never:

type NonNullableEmailAddress = | string | string[] | never | never;

因为never是每个类型的子类型,所以可以从联合类型中省略它:

type NonNullableEmailAddress = string | string[];

这就是我们期望的类型。

使用有条件类型的映射类型

现在让咱们看一个更复杂的例子,它将映射类型与条件类型组合在一起。这里,我们定义了一个类型,它从一个类型中提取所有不可为空的属性键

type NonNullablePropertyKeys = { [P in keyof T]: null extends T[P] ? never : P }[keyof T];

这种类型乍一看似乎相当神秘。再一次,将通过查看一个具体的示例并逐步解析得到的类型来尝试揭开它的神秘面纱。

假设咱们有一个User类型,想要使用NonNullablePropertyKeys类型来找出哪些属性是不可空的:

type User = { name: string; email: string | null; }; type NonNullableUserPropertyKeys = NonNullablePropertyKeys;

下面是咱们如何解析NonNullablePropertyKeys。首先,咱们将User类型作为T类型参数的类型参数提供:

type NonNullableUserPropertyKeys = { [P in keyof User]: null extends User[P] ? never : P }[keyof User];

其次,咱们在映射类型中解析keyof User。User类型有两个属性,name和email,因此咱们最终得到一个带有“name”和“email”字符串字面量类型的联合类型:

type NonNullableUserPropertyKeys = { [P in "name" | "email"]: null extends User[P] ? never : P }[keyof User];

接下来,我们将在映射中展开P in...,并将P类型替换为“name”和“email”

type NonNullableUserPropertyKeys = { name: null extends User["name"] ? never : "name"; email: null extends User["email"] ? never : "email"; }[keyof User];

然后,通过查找User中的name和email属性的类型,咱们可以继续并解析索引访问类型User["name"]和User["email"]:

type NonNullableUserPropertyKeys = { name: null extends string ? never : "name"; email: null extends string | null ? never : "email"; }[keyof User];

现在是应用条件类型的时候了。null不扩string,但它确实扩展了string | null,因此咱们分别以“name”和never类型结束:

type NonNullableUserPropertyKeys = { name: "name"; email: never; }[keyof User];

现在咱们已经完成了映射类型和条件类型,再一次,咱们将解析keyof Use:

type NonNullableUserPropertyKeys = { name: "name"; email: never; }["name" | "email"];

咱们现在有一个索引访问类型,它查找name和email属性的类型。TypeScript 通过逐个查找每个类型并创建联合类型来解决这个问题:

type NonNullableUserPropertyKeys = | { name: "name"; email: never }["name"] | { name: "name"; email: never }["email"];

现在,咱们可以在两个对象类型中查找name和email属性。name属性的类型是“name”,而email属性的类型是“never”:

type NonNullableUserPropertyKeys = | "name" | never;

和前面一样,咱们可以通过清除never类型来简化生成的联合类型:

type NonNullableUserPropertyKeys = "name";

User类型中唯一不可为空的属性键是“name”。

咱们进一步研究这个示例,并定义一个类型来提取给定类型的所有不可空属性。我们可以将Pick 类型用于lib.es5.d.ts中预定义的类型:

/** * From T, pick a set of properties * whose keys are in the union K */ type Pick = { [P in K]: T[P]; };

咱们可以结合NonNullablePropertyKeys类型和Pick来定义NonNullableProperties,这是咱们要查找的类型:

type NonNullableProperties = Pick; type NonNullableUserProperties = NonNullableProperties; // { name: string }

实际上,这是咱们期望的类型:在User类型中,只有name属性不可空。

有条件类型中的类型推断

有条件类型支持的另一个有用特性是使用新的infer关键字推断类型变量。在有条件类型的extends子句中,可以使用新的infer关键字来推断类型变量,从而有效地执行类型上的模式匹配

type First = T extends [infer U, ...unknown[]] ? U : never; type SomeTupleType = [string, number, boolean]; type FirstElementType = First; // string

注意,推断的类型变量(在本例中为U)只能在条件类型的true分支中使用。

TypeScript 一个长期存在的特性要求是能够提取给定函数的返回类型。下面是ReturnType类型的简化版本,该类型是在lib.es5.d.ts中预定义的。它使用infer关键字来推断函数类型的返回类型:

type ReturnType = T extends (...args: any[]) => infer R ? R : any; type A = ReturnType string>; // string type B = ReturnType () => any[]>; // () => any[] type C = ReturnType; // number type D = ReturnType; // boolean

注意,咱们必须使用typeof来获得Math.random()和Array.isArray()方法的返回类型。咱们需要传递类型作为类型参数T的参数,而不是值;这就是为什么ReturnType和ReturnType是不正确的。

预定义的有条件类型

TypeScript 2.8 在lib.d.ts里增加了一些预定义的有条件类型:

Exclude -- 从T中剔除可以赋值给U的类型。 Extract -- 提取T中可以赋值给U的类型。 NonNullable -- 从T中剔除null和undefined。 ReturnType -- 获取函数返回值类型。 InstanceType -- 获取构造函数类型的实例类型。 Exclude

Exclude 从T中剔除可以赋值给U的类型。

定义:

/** * Exclude from T those types that are assignable to U */ type Exclude = T extends U ? never : T;

事例:

type A = Exclude; // string type B = Exclude void) | null, Function>; // null type C = Exclude; // 400 type D = Exclude; // number Extract

通过Extract 类型,提取T中可以赋值给U的类型。

定义:

/** * Extract from T those types that are assignable to U */ type Extract = T extends U ? T : never;

事例:

type A = Extract; // string[] type B = Extract void) | null, Function>; // () => void type C = Extract; // 200 type D = Extract; // never NonNullable

咱们上面使用了NonNullable类型,该类型从T中过滤出null和undefined类型。

定义:

/** * Exclude null and undefined from T */ type NonNullable = T extends null | undefined ? never : T;

事例:

type A = NonNullable; // boolean type B = NonNullable; // number type C = NonNullable; // string type D = NonNullable; // never

注意,空类型D是如何由never表示的。

ReturnType

ReturnType 获取函数返回值类型。

定义:

/** * Obtain the return type of a function type */ type ReturnType any> = T extends (...args: any[]) => infer R ? R : any;

事例:

type A = ReturnType string>; // string type B = ReturnType () => any[]>; // () => any[] type C = ReturnType; // number type D = ReturnType; // boolean Parameters

Parameters 获取构造函数类型的实例类型。

定义:

/** * Obtain the parameters of a function type in a tuple */ type Parameters any> = T extends (...args: infer P) => any ? P : never;

注意,Parameters类型在结构上与ReturnType类型几乎相同。 主要区别在于infer关键字的位置。

事例:

type A = Parameters void>; // [] type B = Parameters; // [any] type C = Parameters; // [string, (number | undefined)?] type D = Parameters; // number[]

Array.isArray() 方法恰好需要一个任意类型的参数。 这就是为什么将B类型解析为[any],即具有一个元素的元组的原因。 另一方面,Math.max() 方法期望任意多个数值参数(而不是单个数组参数);因此,类型D被解析为number[](而不是[number []])。

InstanceType

InstanceType类型提取构造函数类型的返回类型,它相当于构造函数的ReturnType。

定义

/** * Obtain the return type of a constructor function type */ type InstanceType any> = T extends new (...args: any[]) => infer R ? R : any;

再次注意InstanceType 类型在结构上与ReturnType 和ConstructorParameters 类型非常相似。

事例:

type A = InstanceType; // Error type B = InstanceType; // Function type C = InstanceType; // RegExp

代码部署后可能存在的BUG没法实时知道,事后为了解决这些BUG,花了大量的时间进行log 调试,这边顺便给大家推荐一个好用的BUG监控工具 Fundebug。

原文: https://mariusschulz.com/blog... https://mariusschulz.com/blog... https://mariusschulz.com/blog...



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有