microsoft / microsoft/TypeScript
Dynamic Super Types
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.3k
- Ø Merge
- 2 T. 4 Std.
- Gemergte PRs (30 T.)
- 132
Beschreibung
Now, that #11929 is PR landed. I would really love to have some syntax to specify an arbitrary super type of T. This can be especially helpful in creating strongly typed ORM database frameworks.
Proposal
If K is constrained to be a key of T i.e K extends keyof T. Then the syntax:
{ ...K: ...T[K] }
Means spread the keys K and values of T in {}.
Example
Here is an example usage of an envisioned ORM framework:
interface IUser {
id: string;
name: string;
email: string;
createdAt: string;
updatedAt: string;
password: string;
// ...
}
interface Options<T, K extends keyof T> {
attributes: T[K][];
}
interface Model<IInstance> {
findOne<K extends keyof IInstance>(options: Options<IInstance, K>): { ...K: ...IInstance[K] };
}
declare namespace DbContext {
define<T>(): Model<T>;
}
const Users = DbContext.define<IUser>({
id: { type: DbContext.STRING(50), allowNull: false },
// ...
});
const user = Users.findOne({
attributes: ['id', 'email', 'name'],
where: {
id: 1,
}
});
user.id // no error
user.email // no error
user.name // no error
user.password // error
user.createdAt // error
user.updatedAt // error
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne mit der vorgeschlagenen Syntax { ...K: ...T[K] } und dem ORM-Beispiel, um den beabsichtigten Ergebnistyp zu verstehen. Das Issue nennt keine Implementierungsdateien, Einstiegspunkte oder Tests; recherchiere daher zunächst die Bereiche des Typsystems und des Parsers, bevor du die Semantik definierst und Tests für das demonstrierte Verhalten ausgewählter Attribute hinzufügst.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- typescript
- Bereich
- compilers
- Issue-Typ
- Feature
- Schwierigkeit
- 5/5
- Geschätzter Aufwand
- Über eine Woche
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 25/100