TypeScript
Enums
Sök…
Hur man får alla enumvärden
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 med uttryckliga värden
Som standard enum
alla enum
till siffror. Låt oss säga om du har något liknande
enum MimeType {
JPEG,
PNG,
PDF
}
det verkliga värdet bakom t.ex. MimeType.PDF
är 2
.
Men en del av tiden är det viktigt att enumet löser en annan typ. Exempelvis får du värdet från backend / frontend / ett annat system som definitivt är en sträng. Detta kan vara ont, men lyckligtvis finns det den här metoden:
enum MimeType {
JPEG = <any>'image/jpeg',
PNG = <any>'image/png',
PDF = <any>'application/pdf'
}
Detta löser MimeType.PDF
till application/pdf
.
Sedan TypeScript 2.4 är det möjligt att deklarera stränginums :
enum MimeType {
JPEG = 'image/jpeg',
PNG = 'image/png',
PDF = 'application/pdf',
}
Du kan uttryckligen ange numeriska värden med samma metod
enum MyType {
Value = 3,
ValueEx = 30,
ValueEx2 = 300
}
Fancier-typer fungerar också, eftersom icke-const-enums är verkliga objekt under körning, till exempel
enum FancyType {
OneArr = <any>[1],
TwoArr = <any>[2, 2],
ThreeArr = <any>[3, 3, 3]
}
blir
var FancyType;
(function (FancyType) {
FancyType[FancyType["OneArr"] = [1]] = "OneArr";
FancyType[FancyType["TwoArr"] = [2, 2]] = "TwoArr";
FancyType[FancyType["ThreeArr"] = [3, 3, 3]] = "ThreeArr";
})(FancyType || (FancyType = {}));
Anpassad enum-implementering: sträcker sig för enums
Ibland krävs det att implementera Enum på egen hand. Det finns t.ex. inget tydligt sätt att utöka andra enums. Anpassad implementering tillåter detta:
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');
Utöka enums utan anpassad enum-implementering
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));