Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
292 views
in Technique[技术] by (71.8m points)

types - Search predefined instances of Typescript class

This is a complement of this question

Lets say i have this class:

export class PizzaSize {
  static readonly SMALL  = new PizzaSize('SMALL', 'A small pizza');
  static readonly MEDIUM = new PizzaSize('MEDIUM', 'A medium pizza');
  static readonly LARGE  = new PizzaSize('LARGE', 'A large pizza');

  // private to disallow creating other instances of this type
  private constructor(private readonly key: string, public readonly value: any) {
  }

  toString() {
    return this.key;
  }
}

I can access the values of the properties by doing this:

console.log(PizzaSize.MEDIUM); 
console.log(PizzaSize.MEDIUM.value); 

But i need a function that i pass the value, and it returns me the corresponding instance of the class

Example:

searchInstancesOfClass('A small pizza');

I want it to return me the SMALL instance;

How can i do this?

question from:https://stackoverflow.com/questions/65944878/search-predefined-instances-of-typescript-class

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

It should be a simple matter putting all the objects that you want to search through into an array, and then searching in that array.

  static searchInstancesOfClass(value: string): PizzaSize | undefined {
    const staticPizzas = [
      this.SMALL,
      this.MEDIUM,
      this.LARGE,
    ]
    return staticPizzas.find(pizza => pizza.value === value)
  }

Playground


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...