当前位置:  开发笔记 > 编程语言 > 正文

如何在ngrx/Store reducer中使用其他Angular2服务?

如何解决《如何在ngrx/Storereducer中使用其他Angular2服务?》经验,为你挑选了1个好方法。

ngrx/Store和reducer都是新手.基本上,我有这个减速器:

import {StoreData, INITIAL_STORE_DATA} from "../store-data";
import {Action} from "@ngrx/store";
import {
  USER_THREADS_LOADED_ACTION, UserThreadsLoadedAction, SEND_NEW_MESSAGE_ACTION,
  SendNewMessageAction
} from "../actions";
import * as _ from "lodash";
import {Message} from "../../shared-vh/model/message";
import {ThreadsService} from "../../shared-vh/services/threads.service";

export function storeData(state: StoreData = INITIAL_STORE_DATA, action: Action): StoreData {


  switch (action.type) {

    case SEND_NEW_MESSAGE_ACTION:
      return handleSendNewMessageAction(state, action);

    default:
      return state
  }
}

function handleSendNewMessageAction(state:StoreData, action:SendNewMessageAction): StoreData {

  const newStoreData = _.cloneDeep(state);

  const currentThread = newStoreData.threads[action.payload.threadId];

  const newMessage: Message = {
    text: action.payload.text,
    threadId: action.payload.threadId,
    timestamp: new Date().getTime(),
    participantId: action.payload.participantId,
    id: [need a function from this service: ThreadsService]
  }

  currentThread.messageIds.push(newMessage.id);

  newStoreData.messages[newMessage.id] = newMessage;

  return newStoreData;
}

问题出在reducer函数中,我不知道如何注入我在不同文件中创建的可注入服务并使用其中的函数.id部分 - 我需要使用像this.threadService.generateID()这样的函数生成firebase推送ID ...

但由于这是一个函数,我没有使用DI的构造函数,我不知道如何在threadService中获取函数!



1> cartant..:

没有为减压器注入服务的机制.减速器应该是纯粹的功能.

相反,您应该使用ngrx/effects- 这是实现动作副作用的机制.效果侦听特定操作,执行一些副作用,然后(可选)发出进一步的操作.

通常,您会将操作拆分为三个:请求; 成功的反应; 和错误响应.例如,您可以使用:

SEND_NEW_MESSAGE_REQ_ACTION
SEND_NEW_MESSAGE_RES_ACTION
SEND_NEW_MESSAGE_ERR_ACTION

你的效果看起来像这样:

import { Injectable } from "@angular/core";
import { Actions, Effect, toPayload } from "@ngrx/effects";
import { Action } from "@ngrx/store";
import { Observable } from "rxjs/Observable";
import "rxjs/add/operator/map";

@Injectable()
export class ThreadEffects {

  constructor(
    private actions: Actions,
    private service: ThreadsService
  ) {}

  @Effect()
  sendNewMessage(): Observable {

    return this.actions
      .ofType(SEND_NEW_MESSAGE_REQ_ACTION)
      .map(toPayload)
      .map(payload => {
        try {
          return {
              type: SEND_NEW_MESSAGE_RES_ACTION,
              payload: {
                  id: service.someFunction(),
                  // ...
              }
          };
        } catch (error) {
          return {
              type: SEND_NEW_MESSAGE_ERR_ACTION
              payload: {
                error: error.toString(),
                // ...
              }
          };
        }
      });
  }
}

而不是与服务交互,您的reducer将是一个纯函数,只需要处理SEND_NEW_MESSAGE_RES_ACTIONSEND_NEW_MESSAGE_ERR_ACTION执行适当的成功或错误有效负载.

效果是基于可观察的,因此合并同步,基于承诺或基于可观察的服务是直截了当的.

有一些影响的ngrx/example-app.

关于您在评论中的查询:

.map(toPayload)只是为了方便.toPayload是一个ngrx存在的函数,因此它可以传递.map给提取动作payload,这就是全部.

调用基于可观察的服务是直截了当的.通常,你会做这样的事情:

import { Observable } from "rxjs/Observable";
import "rxjs/add/observable/of";
import "rxjs/add/operator/catch";
import "rxjs/add/operator/map";
import "rxjs/add/operator/switchMap";

@Effect()
sendNewMessage(): Observable {

  return this.actions
    .ofType(SEND_NEW_MESSAGE_REQ_ACTION)
    .map(toPayload)
    .switchMap(payload => service.someFunctionReturningObservable(payload)
      .map(result => {
        type: SEND_NEW_MESSAGE_RES_ACTION,
        payload: {
          id: result.id,
          // ...
        }
      })
      .catch(error => Observable.of({
        type: SEND_NEW_MESSAGE_ERR_ACTION
        payload: {
          error: error.toString(),
          // ...
        }
      }))
    );
}

此外,效果可以声明为返回的函数Observable或类型的属性Observable.如果您正在查看其他示例,则可能会遇到两种形式.


是的,差不多.如果它是同步的,你可以在第一个片段中的`map`内的任何地方进行服务调用 - 你将有效负载映射到结果动作.
推荐阅读
mylvfamily
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有