microsoft / microsoft/TypeScript
Literal Comparison for Conditional Types
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- Go
- Star
- 111k
- Fork
- 14.3k
- Merge trung bình
- 2 ngày 4 giờ
- Pull request đã merge (30 ngày)
- 132
Mô tả
Search Terms
compare type to value literal, conditional type literals, type is literal, complex schemas
Suggestion
The ability to compare a type against an example of that type, for use in complex type aliases and interfaces.
Use Cases
When designing a complex schema for an object, the actual fields contained by the object can branch in many different ways.
Of course, it's possible to approach the problem by using nullable types for fields that are not present in all cases. This results in a readable type in the error inspection window, but lots of unnecessarily defensive code that would have been solved by a fully typed schema.
It's also possible to create a discriminated union consisting of every branch--but what if you have a lot of branches? It becomes undesirably repetitive and the error inspection window is a wall of text.
Examples
Take for example, the type of a Pipeline:
type Action = 'Data Selection' | 'Data Cleanup' | 'Train' | 'Store' | 'Deploy'
type Status = 'running' | 'finished' | 'error'
type PipelineStep = {
name: Action
status: Status
tags: Array<string>
// `never` actually always results in a type check error right now
message: PipelineStep['status'] is 'Error' ? string : never
path: PipelineStep['name'] is 'Data Selection' | 'Store' ? string : never
trainingID: PipelineStep['name'] is 'Train' ? string : never
endpoint: PipelineStep['name'] is 'Deploy' ? string : never
}
Contrasted with the current syntax and discriminated unions:
type PipelineStep = {
name: Action
status: Exclude<Status, 'Error'>
tags: Array<String>
} | {
name: Action
status: 'Error'
tags: Array<string>
message: string
} | // I give up
The number of branches is multiplicative in nature. In this case, the most complex schema could have a maximum of 6 (Actions) x 3 (Status) possible branches.
After optimization, it becomes:
type StepStatus = {
status: Exclude<Status, 'Error'>
} | {
status: 'Error'
message: string
}
type DataSelectionStep = {
name: 'Data Selection'
path: string
}
type TrainingStep = {
name: 'Training'
trainingID: string
}
type StoreStep = {
name: 'Store'
path: string
}
type DeployStep = {
name: 'Deploy'
endpoint: string
}
type PipelineStep = (DataSelectionStep | TrainingStep | StoreStep | DeployStep | {
name: Exclude<Action, 'Training' | 'Data Selection' | 'Store' | 'Deploy'>
}) & StepStatus & {
tags: Array<String>
}
which isn't really much better...
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Không có tệp, bài kiểm thử hoặc điểm vào nào được nêu tên. Hãy bắt đầu bằng cách xem xét khu vực trình kiểm tra kiểu của TypeScript phụ trách các kiểu có điều kiện và so sánh đề xuất với hành vi hiện có của các union phân biệt; có thể xem là hoàn tất khi có một cú pháp được hỗ trợ để so sánh kiểu với literal, xử lý được các ví dụ mà không thay đổi JavaScript được sinh ra.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- typescript
- Lĩnh vực
- compilers
- Loại issue
- Tính năng
- Độ khó
- 5/5
- Thời gian dự kiến
- Hơn một tuần
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Khá rõ ràng
- Mức phù hợp với người mới
- 25/100