datum-focus
Version:
Data shape, model, metadata, JSON, JSON Schema, GraphQL, MongoDB query and aggregations, iterator generators
46 lines (38 loc) • 1.19 kB
text/typescript
// https://2ality.com/2020/01/enum-pattern.html
export class Enumify {
//#################### Static
static enumKeys: Array<string>;
static enumValues: Array<Enumify>;
static closeEnum() {
const enumKeys: Array<string> = [];
const enumValues: Array<Enumify> = [];
// Traverse the enum entries
for (const [key, value] of Object.entries(this)) {
enumKeys.push(key);
value.enumKey = key;
value.enumOrdinal = enumValues.length;
enumValues.push(value);
}
// Important: only add more static properties *after* processing the enum entries
this.enumKeys = enumKeys;
this.enumValues = enumValues;
// TODO: prevent instantiation now. Freeze `this`?
}
/** Use case: parsing enum values */
static enumValueOf(str: string): undefined | Enumify {
const index = this.enumKeys.indexOf(str);
if (index >= 0) {
return this.enumValues[index];
}
return undefined;
}
static [Symbol.iterator]() {
return this.enumValues[Symbol.iterator]();
}
//#################### Instance
enumKey!: string;
enumOrdinal!: number;
toString() {
return this.constructor.name + '.' + this.enumKey;
}
}