Questions tagged [redux-observable]

redux-observable is a redux middleware for performing side effects (epics) using RxJS.

redux-observable is a redux middleware for performing side effects (epics) using RxJS.

Developer documentation and resources:

683 questions
0
votes
1 answer

redux-observable not exported createEpicMiddleware

I am using redux-observable in Ionic2 rc0 and getting below error, any idea? Error: Module /Volumes/data/test/node_modules/redux-observable/lib/index.js does not export createEpicMiddleware (imported by /Volumes/data/test/.tmp/store/index.js)
Kamran Qadri
  • 144
  • 6
-1
votes
3 answers

Getting data with HTTP get in Angular returns undefined for all fields of my model

I have a simple model declared in angular as an interface. I am trying to get some data by calling the Get method of the HttpClient as this: where the field this.plugs is an array of Plug elements. This data I am trying to display in a table in my…
Raducu Mihai
  • 313
  • 4
  • 14
-1
votes
1 answer

How to implement promise type scenario using rxjs and redux observable?

I have a scenario where after saving form data, user will see a notification in react component. I don't want to save the data in redux store. How to do this using redux observable and react?
-1
votes
1 answer

TypeError: Cannot read property 'pipe' of undefined in Redux-Observable

I have an issue from redux-observable. While debug I can see the api work successfully but redux-observable can't work ... i don't know how to fix ... i try to replace action and it's ok but when i replace old action I get an error…
Steve Huynh
  • 11
  • 1
  • 7
-1
votes
2 answers

state.getState() is not a function while updating to redux 4

Currently i am working on migration from angular 5 to 6. While updating to redux 4 i am getting error as store.getState() is not a funtion export interface IAppState { source1: IEmployee[], source2: IEmployee[], } export type FSAction =…
vikas biradar
  • 238
  • 1
  • 3
  • 12
-1
votes
1 answer

redux-observables chain simple epics

From this issues thread > https://github.com/redux-observable/redux-observable/issues/33#issuecomment-342399904 I've extracted this helper: const forkEpic = (epicFactory, ...actions) => { const input$ = Observable.of(...actions); const…
slothy
  • 363
  • 1
  • 3
  • 13
-2
votes
1 answer

Use timer with RxJS

I would like to make a request to an endpoint every 10 seconds and stop the request and the timer when a redux action (POLLING_STOP) comes in. I am using react, redux, redux-observable, rxjs6.4.0. I took the code from…
-3
votes
4 answers

Javascript property is defined, but returns undefined

I have this JSON object: { "type": "SIGN_IN", "credentials": { "id": "mt@ft.cc", "password": "jhkl" } } When I log obj.cedentials, it shows the same object (as obj); { "type": "SIGN_IN", "credentials": { "id": "mt@ft.cc", …
Mohamed
  • 1,251
  • 3
  • 15
  • 36
1 2 3
45
46