代码之家  ›  专栏  ›  技术社区  ›  Jhecht

根据值向界面添加键?

  •  1
  • Jhecht  · 技术社区  · 4 年前

    脚本

    我在这里的场景是,我有两个类,第一个是一个粗略的ObservableStore类,另一个基类可以传递一些ObservableStores值。

    class ObservableStore<T> {
      update(value: (current: T) => T): void;
      subscribe(fn: (current: T) => void): void;
    }
    
    class OtherClass<Props extends {} = {}> {
      constructor(private props: Props) {
        for(let [key, value] of Object.entries(props)) {
          if(value instanceof ObservableStore) value.subscribe($data => this[`$${key}`] = $data);
        }
      }
    }
    
    const someInstance = new OtherClass({ someStore: new ObservableStore<string[]>([]) });
    

    提问

    是否有任何方法可以使用类型来添加 $someStore 值到 this.props ,还是目前不可能?

    0 回复  |  直到 4 年前
        1
  •  0
  •   ABOS    4 年前

    一种方法是

    class ObservableStore<T> {
        constructor(arg: T[]) {
            // ...
        }
        update(value: (current: T) => T): void { }
        subscribe(fn: (current: T) => void): void { }
    }
    
    type Props<T> = Record<string, ObservableStore<T>>;
    
    class OtherClass<T> {
        constructor(private props: Props<T> = {}) {
            for (let [key, value] of Object.entries(props)) {
                // has to cast `this` for dynamic properties here, perhaps there is another workaround 
                if (value instanceof ObservableStore) value.subscribe($data => (this as unknown as Record<string, T>)[key] = $data);
            }
        }
    }
    
    const someInstance = new OtherClass<string[]>({ someStore: new ObservableStore<string[]>([]) });