2019-06-04 23:01:51 +08:00
|
|
|
export function enumValues<E>(e: any): E[] {
|
|
|
|
const values = Object.values(e);
|
|
|
|
const numberValues = values.filter(v => typeof v === 'number');
|
|
|
|
|
|
|
|
if (numberValues.length) {
|
|
|
|
return numberValues as any as E[];
|
|
|
|
} else {
|
|
|
|
return values as any as E[];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function enumNames(e: any): string[] {
|
|
|
|
return Object.keys(e).filter(k => typeof (e as any)[k] === 'string');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Map with a guaranteed value per enum key.
|
|
|
|
*/
|
|
|
|
export class EnumMap<K, V> {
|
|
|
|
private keys: K[];
|
|
|
|
private values = new Map<K, V>();
|
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
constructor(enum_: any, initialValue: (key: K) => V) {
|
2019-06-04 23:01:51 +08:00
|
|
|
this.keys = enumValues(enum_);
|
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
for (const key of this.keys) {
|
|
|
|
this.values.set(key, initialValue(key));
|
2019-06-04 23:01:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get(key: K): V {
|
|
|
|
return this.values.get(key)!;
|
|
|
|
}
|
|
|
|
}
|