當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ObservableMap.set方法代碼示例

本文整理匯總了TypeScript中mobx.ObservableMap.set方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ObservableMap.set方法的具體用法?TypeScript ObservableMap.set怎麽用?TypeScript ObservableMap.set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mobx.ObservableMap的用法示例。


在下文中一共展示了ObservableMap.set方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: addDependent

 @action
 addDependent(dependent: INode): void {
    if (this.dependsOn(dependent)) {
       this.throwCircRefError(`${dependent.id}'s formula references ${this.id}, but ${this.id} depends on ${dependent.id}`);
    }
    this._dependents.set(dependent.id, dependent);
 }
開發者ID:trevorhanus,項目名稱:reMath,代碼行數:7,代碼來源:Node.ts

示例2: addProvider

 @action
 addProvider(provider: INode): void {
    if (this.providesFor(provider)) {
       this.throwCircRefError(`${this.id}'s formula references ${provider.id}, but ${provider.id} depends on ${this.id}`);
    }
    this._providers.set(provider.id, provider);
 }
開發者ID:trevorhanus,項目名稱:reMath,代碼行數:7,代碼來源:Node.ts

示例3: it

    it('mobx reacts when a previously not set key is set', () => {
        const map: ObservableMap<string> = observable.map<string>();
        map.set('b', 'value b');

        let view;
        const renderA = sinon.spy(() => {
            view = map.get('a');
        });
        autorun(renderA);
        expect(view).to.be.undefined;
        expect(renderA.callCount).to.equal(1);

        map.set('c', 'value c');
        expect(renderA.callCount).to.equal(1);

        map.set('a', 'value a');
        expect(view).to.equal('value a');
        expect(renderA.callCount).to.equal(2);
    });
開發者ID:trevorhanus,項目名稱:reMath,代碼行數:19,代碼來源:Integration_1.test.ts

示例4: it

 it("builds the data for the volcano plot graph with the correct values", ()=>{
     const map_genesets_selected_volcano = new ObservableMap<boolean>();
     map_genesets_selected_volcano.set("AKT_UP.V1_DN", true);
     const graphData = getVolcanoPlotData(genesets, map_genesets_selected_volcano);
     assert.deepEqual(
         graphData, 
         [{
             x: 0.1986,
             y: -(Math.log(genesets[0].representativePvalue)/Math.log(10)),
             fill: "tomato"
         },
         {
             x: 0.3945,
             y: -(Math.log(genesets[1].representativePvalue)/Math.log(10)),
             fill: "3786C2"
         }]
     );
 });
開發者ID:agarwalrounak,項目名稱:cbioportal-frontend,代碼行數:18,代碼來源:GenesetsSelectorStore.spec.ts

示例5: __addError

 @action
 __addError(error: IError): void {
     this._errors.set(ErrorType[error.type], error);
 }
開發者ID:trevorhanus,項目名稱:reMath,代碼行數:4,代碼來源:ErrorContainer.ts

示例6: addCell

 @action
 addCell(state: CellState): Cell {
    const newCell = new Cell(this, state);
    this._cells.set(newCell.id, newCell);
    return newCell;
 }
開發者ID:trevorhanus,項目名稱:reMath,代碼行數:6,代碼來源:Remath.ts


注:本文中的mobx.ObservableMap.set方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。