CodeSequence/store-saga

cyclic dependency

abdulhaq-e opened this issue · 1 comments

Hi

I like the idea of bound action creator (term found in redux guide). Rather than sending actions as plain objects, a function is used to create the action:

function addTodo(text) {
  return {
    type: ADD_TODO,
    text
  }
}

Furthermore, a bound action creator creates and dispatches the action:

const boundAddTodo = (text) => dispatch(addTodo(text))

Trying to use this with store-saga results in a the following error:

Cannot instantiate cyclic dependency! (Token @ngrx/store Saga Effect -> AuthActions -> Store -> StoreBackend -> Token ngrx/store/resolved-post-middleware)

AuthActions is what I want to inject, my actions are all defined there as functions that return Observables and a subscriber then dispatches the action. Dispatching requires Store to be injected in AuthActions and hence the cyclic dependency.

Is there a way to circumvent this? I got the idea of an injectable Actions class from the few ngrx/store examples around. Although none of them had the class injected in a saga effect

I figured out things myself. I thought the saga function will only create the action. It appears that it dispatches the action as well.