My service class, before calling a web service, needs to get a property called dataForUpdate from my state. Currently, I'm doing it like this:
constructor(public _store: Store < AppState > ,
  public _APIService: APIService) {
  const store$ = this._store.select('StateReducer');
  .../...
  let update = this.actions$.filter(action => action.type == UPDATE)
    .do((action) => this._store.dispatch({
      type: REDUCER_UPDATING,
      payload: action.payload
    })) **
    * GET STATE ** *= => .mergeMap(action => store$.map((state: AppState) => state.dataForUpdate).distinctUntilChanged(),
      (action, dataForUpdate) {
        return {
          type: action.type,
          payload: {
            employee: action.payload,
            dataForUpdate: dataForUpdate
          }
        };
      }) *
    AND CALL API *= => .mergeMap(action => this._APIService.updateEmployee(action.payload.employee, action.payload.dataForUpdate),
      (action, APIResult) => {
        return {
          type: REDUCER_UPDATED
        }
      })
    .share();
  .../...
  let all = Observable.merge(update, ....);
  all.subscribe((action: Action) => this._store.dispatch(action));
}
I'm using angular2-store-example (https://github.com/ngrx/angular2-store-example/blob/master/src/app/users/models/users.ts) as a guide to follow.
I'm wondering if a better (cleaner) way exists?
Live example: https://plnkr.co/edit/WRPfMzPolQsYNGzBUS1g?p=preview
 
     
     
     
     
     
     
     
     
     
     
     
     
    