TypeScript
enums
Zoeken…
Hoe alle enumwaarden te krijgen
enum SomeEnum { A, B }
let enumValues:Array<string>= [];
for(let value in SomeEnum) {
if(typeof SomeEnum[value] === 'number') {
enumValues.push(value);
}
}
enumValues.forEach(v=> console.log(v))
//A
//B
Enums met expliciete waarden
Standaard worden alle enum
omgezet in getallen. Laten we zeggen als je zoiets hebt
enum MimeType {
JPEG,
PNG,
PDF
}
de echte waarde achter bijvoorbeeld MimeType.PDF
is 2
.
Maar soms is het belangrijk om het opsommingsteken naar een ander type te laten oplossen. U ontvangt bijvoorbeeld de waarde van backend / frontend / een ander systeem dat absoluut een string is. Dit kan lastig zijn, maar gelukkig is er deze methode:
enum MimeType {
JPEG = <any>'image/jpeg',
PNG = <any>'image/png',
PDF = <any>'application/pdf'
}
Hiermee wordt de MimeType.PDF
opgelost in application/pdf
.
Sinds TypeScript 2.4 is het mogelijk om string-enums te declareren:
enum MimeType {
JPEG = 'image/jpeg',
PNG = 'image/png',
PDF = 'application/pdf',
}
U kunt expliciet numerieke waarden opgeven met dezelfde methode
enum MyType {
Value = 3,
ValueEx = 30,
ValueEx2 = 300
}
Liefhebbertypen werken ook, omdat niet-const enums echte objecten zijn, bijvoorbeeld tijdens runtime
enum FancyType {
OneArr = <any>[1],
TwoArr = <any>[2, 2],
ThreeArr = <any>[3, 3, 3]
}
wordt
var FancyType;
(function (FancyType) {
FancyType[FancyType["OneArr"] = [1]] = "OneArr";
FancyType[FancyType["TwoArr"] = [2, 2]] = "TwoArr";
FancyType[FancyType["ThreeArr"] = [3, 3, 3]] = "ThreeArr";
})(FancyType || (FancyType = {}));
Aangepaste enum-implementatie: verlengt voor enums
Soms is het vereist om Enum zelf te implementeren. Er is bijvoorbeeld geen duidelijke manier om andere enums uit te breiden. Aangepaste implementatie maakt dit mogelijk:
class Enum {
constructor(protected value: string) {}
public toString() {
return String(this.value);
}
public is(value: Enum | string) {
return this.value = value.toString();
}
}
class SourceEnum extends Enum {
public static value1 = new SourceEnum('value1');
public static value2 = new SourceEnum('value2');
}
class TestEnum extends SourceEnum {
public static value3 = new TestEnum('value3');
public static value4 = new TestEnum('value4');
}
function check(test: TestEnum) {
return test === TestEnum.value2;
}
let value1 = TestEnum.value1;
console.log(value1 + 'hello');
console.log(value1.toString() === 'value1');
console.log(value1.is('value1'));
console.log(!TestEnum.value3.is(TestEnum.value3));
console.log(check(TestEnum.value2));
// this works but perhaps your TSLint would complain
// attention! does not work with ===
// use .is() instead
console.log(TestEnum.value1 == <any>'value1');
Enums uitbreiden zonder aangepaste enum-implementatie
enum SourceEnum {
value1 = <any>'value1',
value2 = <any>'value2'
}
enum AdditionToSourceEnum {
value3 = <any>'value3',
value4 = <any>'value4'
}
// we need this type for TypeScript to resolve the types correctly
type TestEnumType = SourceEnum | AdditionToSourceEnum;
// and we need this value "instance" to use values
let TestEnum = Object.assign({}, SourceEnum, AdditionToSourceEnum);
// also works fine the TypeScript 2 feature
// let TestEnum = { ...SourceEnum, ...AdditionToSourceEnum };
function check(test: TestEnumType) {
return test === TestEnum.value2;
}
console.log(TestEnum.value1);
console.log(TestEnum.value2 === <any>'value2');
console.log(check(TestEnum.value2));
console.log(check(TestEnum.value3));