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
1 answer

Redux DevTools showing incorrect history

I've encountered an issue with Redux DevTools where it displays history unrelated to my application. I initially suspected that this might be due to the inspect window being open, but my investigations proved otherwise. Even when no user actions…
0
votes
1 answer

Redux DevTools clear actions history browser plugin

With the Redux DevTools browser plugin, in the "Actions" pane on the left, I am only interested in the new actions that happen after I do something. All of the previous actions are verbose clutter. Is there a way I can clear the Actions?
Andrew Koper
  • 6,481
  • 6
  • 42
  • 50
0
votes
1 answer

How to create a redux store actionSanitizer when using PayloadActions?

I am trying to create an actionSanitizer to be used with devTools when configuring a store for redux. The problem is that stores are slices created with createSlice and there the reducers are defined as createSlice({ name: 'Something', …
zaplec
  • 1,681
  • 4
  • 23
  • 51
0
votes
1 answer

How to slice parts of an array if the array has to many elements in NGXS Devtools?

I have an array in my state with around 1500 elements. I realized that the Angular application is lagging if I dont disable the NGXS Devtools because of the large array. Now I want to either dont show the array or just show a part of it with slice.…
Invader
  • 141
  • 6
0
votes
1 answer

react-redux: make a non-serializable data to serializable to prevent error

I'm using redux-toolkit: "react-redux": "^8.0.2", "redux": "^4.2.0" and I want to dispatch an action that passes an html element refrence as payload: dispatch(open({ele:…
Ali Shefaee
  • 327
  • 3
  • 12
0
votes
1 answer

how to debug ngrx effects?

i am using tap operator in multiple places in the effect. but some how i am not seeing the console logs in the browser. here is my effect. getAccountDetails$ = createEffect(() => { return this.actions$.pipe( ofType(getAccountDetails), …
sravan ganji
  • 4,774
  • 3
  • 25
  • 37
0
votes
2 answers

NgRx Angular App not working with Redux DevTools

So I'm following this tutorial to get familiar with ngRx Entity, and for some reason my redux dev tools isn't 'lighting up' to indicate that it's in an app that is using redux, and the data I want to show up in the dev tools isn't showing up. The…
0
votes
2 answers

Redux devtool extenstion : How to Add Features property to enable/disable actions?

I have a React/redux application and I'm using redux-devtools-extension, I want to be able to manage features of my extenstion like this : composeWithDevTools({ features: { pause: true, // start/pause recording of dispatched actions …
Tania12
  • 323
  • 2
  • 16
0
votes
1 answer

How would I add stack tracing to my current Redux Devtools setup?

Here is my current redux store assignment: import { composeWithDevTools } from 'redux-devtools-extension'; import { createStore, applyMiddleware } from 'redux'; import { PersistGate } from 'redux-persist/integration/react'; import reduxThunk from…
Carl Edwards
  • 13,826
  • 11
  • 57
  • 119
0
votes
1 answer

Showing animated circles. No errors in console and store working normally

Framkeworks used: React + Redux + Electron (+ Express) Suddently, in the place of the usual redux dev tools, an animation of concentric circles is shown. (See screenshot) Has anyone seen this before? Dev tools started behaving like this yesterday,…
Claudio
  • 92
  • 2
  • 11
0
votes
1 answer

Api calls in redux-saga crashing redux-devtools-extension

I'm trying to make some api calls using axios and redux-saga. This is nothing I haven't done before, and redux devtools usually handles this just fine. For some reason in the current application I'm working on, any actions that trigger a saga,…
0
votes
1 answer

User guide for Redux DevTools?

I'm trying to become a power user of the Redux DevTools, but I can't find any advanced guide for all the features. The GitHub README is just about the code involved in using it and setting it up. Is there a guide somewhere to using all the features…
Jonathan Tuzman
  • 11,568
  • 18
  • 69
  • 129
0
votes
1 answer

How can I setup Xstate to use Redux Dev Tool in angular

I am using xstate for state management in a angular project. I did the this.service = interpret(machine, { devTools: true }).start(); when starting up my machine but the redux dev tool is not picking up any event from my project. are there any…
0
votes
0 answers

Need help displaying and seeing state in Redux Dev Tools

I posted before, and thought I'd try one more time, since I still haven't got this to work. I'm trying to get my state displayed on Redux Dev Tools (Extension). I have got the code over from the zalmoxisus GitHub, but it still doesn't seem to be…
0
votes
3 answers

How can I see my state in Redux Dev Tools (Extension)?

I'm having trouble seeing my state in the Redux Dev Tools. I added the code from zalmoxisus into my createStore, but nothing is displayed. In my reducers I'm also returning the state as a default (using switch case) but still nothing is displayed…