summaryrefslogtreecommitdiffhomepage
path: root/app/lib/enum.js
blob: a27bd3743925d54f9d1736798fd1be03c761a2ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
 * Enum
 * @exports
 * @class Enum
 */
export default class Enum {

  /**
   * Creates an instance of EnumBase.
   * 
   * @param {...string} ... - enum keys
   * @memberOf Enum
   */
  constructor() {
    const keys = [...arguments];

    for(const key of keys) {
      Object.defineProperty(this, key, {
        enumerable: true,
        value: key,
        writable: false
      });
    }

    Object.defineProperty(this, 'allKeys', {
      enumerable: false,
      value: keys,
      writable: false
    });

    Object.freeze(this);
  }

  /**
   * Check if key is registered in this enum
   * 
   * @param {string} key 
   * @returns {bool}
   * 
   * @memberOf Enum
   */
  isValid(key) { 
    return this.allKeys.includes(key); 
  }
}