microsoft / microsoft/TypeScript
Index signature alternative
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.4k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
Search Terms
- Index signature alternative
- Index signature
Suggestion
An alternative of Index signature would be beneficial when you want to enforce, that all properties of an object must follow given pattern, without the need of [key: string | number]: T1.
My suggestion is to enable the use of ? for index signatures to mark them as type guards only.
type posParams = {
[name?: string]: UrlSegment;
};
Use Cases
Whenever there is a need for an object with unknown keys, but known value types this would come in handy. A lot of people trying to implement some sort of callback that requires the index signature fails.The enormous number of results if one googles Index signature is missing in type confirms this
I personally tend to confront this problem regularly when working with frameworks..
Examples
For this example, I will use Angular, but this is applicable to any typescript code.
type UrlMatchResult = {
consumed: UrlSegment[];
posParams?: {
[name?: string]: UrlSegment;
};
};
When one would be to implement it with only specific posParams it would only check for the type of the object keys and values.
export interface IUrlParameters {
baseFolder: UrlSegment;
currentFolder?: UrlSegment;
}
export function folderMatcher(segments: UrlSegment[]): UrlMatchResult {
const posParams: IUrlParameters = {
currentFolder: segments[0],
};
return {
consumed: segments,
posParams,
}
}
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.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
この issue では、既知のプロパティ値をチェックするためのオプションのインデックスシグネチャ構文を提案しており、UrlSegment と Angular を使用した例が示されています。実装ファイル、エントリポイント、テストは指定されていません。まず、TypeScript のインデックスシグネチャの型チェックと parser のテストを探してください。完了条件は、設計上の決定に到達し、受け入れた動作をテストでカバーすることです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100