Questions tagged [redux-devtools]

Redux DevTools is a live-editing time travel environment for [tag:redux]. Not to be confused with [tag:redux-devtools-extension] for Chrome and Firefox. Redux DevTools must be integrated into your project.

Redux DevTools is a live-editing time travel environment for . Not to be confused with for Chrome and Firefox. Redux DevTools must be integrated into your project.

Resources

117 questions
0
votes
0 answers

e:Reducer reacting to an action it doesn't listen to

I have an action FETCH_HABITS_SUCCESS that's called with the right data: but it affects a reducer that isn't listening to it: Dates reducer doesn't listen to FETCH_HABIT_SUCCESS. The data shown in the diff from the previous image should be the one…
mezod
  • 2,313
  • 3
  • 21
  • 31
0
votes
1 answer

Redux Dev Tools: Respond to state.json import in app UI

I've been wondering about the import feature of the Redux Dev Tools. Correct my logic if it's faulty. I'm working on a multi-step, form-heavy app UI, which serializes its state into Redux. It's inefficient to attempt to reproduce bugs by going…
Kevin Suttle
  • 8,358
  • 3
  • 33
  • 37
0
votes
0 answers

Redux Dev Tool not reflecting state change and actions

Redux dev tools extension showing only the initial state and init action and not reflecting dispatched actions and state changes done through code. Whereas if I use the dispatcher in the extension then it shows the action and state changes. I have…
0
votes
0 answers

Using redux-devtools action replay in angular?

I have this scenario: I open redux-devtools. Click on a link on the page. The link leads me to a second page that starts a redux effect that will return another action that when "reduced" will change the state with the information needed for the…
Hristo Kolev
  • 1,486
  • 1
  • 16
  • 33
0
votes
0 answers

Redux devtools won't catch specific actions

I'm loading it like that: const store = createStore( AppReducer, composeEnhancers(applyMiddleware(createDebounce(), thunkMiddleware, websocketMiddleware)), ); I've got the following action: export const toggleCardLayersMenu = (index,…
galah92
  • 3,621
  • 2
  • 29
  • 55
0
votes
0 answers

How to know if Redux Devtool window is already opened

We have hot reload turned on for our application, at times the statement of opening Redux Devtool gets triggered. When it happens, the DevTool steals the focus. This can get annoying when developer is in the middle of writing and saving code, and…
Tianzhen Lin
  • 2,404
  • 1
  • 19
  • 19
0
votes
1 answer

Redux devtools statePersist refreshing

When I want to use the statePresist tool (the debug session) I put a query string at the end like this: http://localhost:3000/#/?debug_session=tal and if I play with the state, and then refresh, I lose my query string (?debug_session=tal is…
Tal Gvili
  • 299
  • 1
  • 4
  • 15
0
votes
1 answer

Redux DevTools Time Travel fails to update UI correctly (only when reverting actions)

I am in the early development stage of a React+Redux game and have followed Redux best practices: pure reducer, presentational/container component separation, using getState() only in Reducer (as opposed to in action creator) etc. The app seems to…
Saba Ahang
  • 578
  • 9
  • 24
0
votes
1 answer

Conditional load redux devServer

I would like to add redux devTools to the store only if the local server is up. Because this is an async operation I end up with an 'incomplete' store. The async function which checks if the server is there: export async function…
Mike
  • 91
  • 2
  • 8
0
votes
1 answer

material-ui components such as DropDownMenu stop working when using redux-devtools + hot reloading

I have been using redux and redux dev-tools for about a week now and I'm loving it. I'm a big fan of Material Design and so I thought I should give material-ui a try. It was all good until I used components other than buttons such as…
Mido
  • 504
  • 2
  • 6
  • 18
0
votes
1 answer

How to revert side-effects when disabling an action in Redux logger?

Assume that an action creator (or a middleware) has a side-effect of starting a service: service.start(). The disable-action feature of redux-devtools reverts the state changes due to that specific action. How do we make sure that the side-effects…
Panagiotis Panagi
  • 9,927
  • 7
  • 55
  • 103
-1
votes
1 answer

VS code - search for function reference within specific function- macOS

is there any quick way in vs code to search for method1 referenced inside method2? I am trying to see if using remote-redux-devtools is useful for my project, and we are using next js which does server side calls via getInitialProps so I am trying…
devdropper87
  • 4,025
  • 11
  • 44
  • 70
1 2 3 4 5 6 7
8