当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript StateContext.dispatch方法代码示例

本文整理汇总了TypeScript中@ngxs/store.StateContext.dispatch方法的典型用法代码示例。如果您正苦于以下问题:TypeScript StateContext.dispatch方法的具体用法?TypeScript StateContext.dispatch怎么用?TypeScript StateContext.dispatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@ngxs/store.StateContext的用法示例。


在下文中一共展示了StateContext.dispatch方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: processUpdateEvent

 private processUpdateEvent(
   ctx: StateContext<SourceModel[]>,
   action: ObsDispatchEvent
 ) {
   const state = ctx.getState();
   switch (action.payload['update-type']) {
     case 'SwitchScenes':
       ctx.setState([...action.payload.sources]);
       ctx.dispatch(new GetSourceMuteState());
       break;
     case 'SceneItemVisibilityChanged':
       const newstate = state.map(x => {
         if (x.name === action.payload['item-name']) {
           x.render = action.payload['item-visible'];
         }
         return x;
       });
       ctx.setState([...newstate]);
       break;
     case 'SceneItemAdded':
     case 'SceneItemRemoved':
     case 'SourceOrderChanged':
       ctx.dispatch(new GetCurrentScene());
       break;
   }
 }
开发者ID:chgc,项目名称:stream-tools,代码行数:26,代码来源:source.state.ts

示例2: receiveEvent

 @Action(ObsDispatchEvent)
 receiveEvent(ctx: StateContext<SourceModel[]>, action: ObsDispatchEvent) {
   if (action.payload['update-type']) {
     this.processUpdateEvent(ctx, action);
     return;
   }
   const { id, actionType } = this.service.getActionType(action.payload);
   const state = ctx.getState();
   switch (actionType) {
     case 'GetSceneList':
       action.payload.scenes
         .filter(s => s.name === action.payload['current-scene'])
         .map(scene => ctx.setState([...scene.sources]));
       ctx.dispatch(new GetSourceMuteState());
       break;
     case 'GetCurrentScene':
       ctx.setState([...action.payload.sources]);
       ctx.dispatch(new GetSourceMuteState());
       break;
     case 'ToggleMute':
     case 'GetMute':
       const sources = state.map(source => {
         if (source.name === action.payload.name) {
           source.muted = action.payload.muted;
         }
         return source;
       });
       ctx.setState([...sources]);
       break;
   }
 }
开发者ID:chgc,项目名称:stream-tools,代码行数:31,代码来源:source.state.ts

示例3: catchError

 catchError((error: ApiResponse) => {
     if (error.message.length > 0 && error.message.match(/storage/i)) {
         this.notify.warning('Storage "' + payload + '" was not found.');
         ctx.dispatch(new Navigate(['/admin/storages']));
     } else {
         this.notify.error('Could not retrieve repositories ' + payload + '!');
         console.error('Could not retrieve repositories  for storage ' + payload + '!', error);
     }
     return of(error);
 }),
开发者ID:strongbox,项目名称:strongbox-web-ui,代码行数:10,代码来源:browse-storages.state.model.ts

示例4: processUpdateEvent

 private processUpdateEvent(
   ctx: StateContext<TransitionModel[]>,
   action: ObsDispatchEvent
 ) {
   const state = ctx.getState();
   switch (action.payload['update-type']) {
     case 'TransitionListChanged':
       ctx.dispatch(new TransitionLoad());
       break;
   }
 }
开发者ID:chgc,项目名称:stream-tools,代码行数:11,代码来源:transition.state.ts

示例5: hmrNgxsStoreBeforeOnDestroy

  public hmrNgxsStoreBeforeOnDestroy(): Partial<S> {
    let state: Partial<S> = {};
    const ctx: StateContext<S> = this.context.createStateContext();
    if (typeof this.ngAppModule.hmrNgxsStoreBeforeOnDestroy === 'function') {
      state = this.ngAppModule.hmrNgxsStoreBeforeOnDestroy(ctx);
    } else {
      state = ctx.getState();
    }

    ctx.dispatch(new HmrBeforeDestroyAction(state));
    return state;
  }
开发者ID:LucasFrecia,项目名称:store,代码行数:12,代码来源:hmr-lifecycle.ts

示例6: GetCaptionList

 .pipe(tap(() => ctx.dispatch(new GetCaptionList())));
开发者ID:chgc,项目名称:stream-tools,代码行数:1,代码来源:caption-items.state.ts

示例7: GetCustomCSS

 .subscribe(() => ctx.dispatch(new GetCustomCSS()));
开发者ID:chgc,项目名称:stream-tools,代码行数:1,代码来源:environment.state.ts

示例8: GetAreaPosition

 .subscribe(() => ctx.dispatch(new GetAreaPosition()));
开发者ID:chgc,项目名称:stream-tools,代码行数:1,代码来源:environment.state.ts


注:本文中的@ngxs/store.StateContext.dispatch方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。