debugger; to diagnose what's going on when I'm dispatching actions but I get this screen
Hi guys, i have a question, why the export button on the examples is exporting a stringified JSON instead of a real JSON?
I am trying to export a JSON file of bunch of actions for a analysis, which i have no intent to import later,
i just want to do some "pretty print" on my VIM and analyze by hand, but all exported files is stringified, which become difficult to work with.
This is the result of the todomvc exported state.json
{ "payload": "[{\"type\":\"COMPLETE_TODO\",\"id\":0},{\"type\":\"ADD_TODO\",\"text\":\"Test\"}]" }
The todomvc example there is no serialize configuration, is this format correct? It's a .json extension which isn't actually a "real" json (the payload array is actually a string).
So, is the the exporting button serializing the state with stringify by default? Why?
I played with the serialized option but i felt a little bit overcomplicated for this simple task.
How can i export a real json file?
Thanks in advance for this awesome project.
JSON.stringify(like date, regex, undefined, nan, infinity, error, symbol, map, set and function)
Hello there, I'm facing a problems using Redux DevTools from the simpole way:
const devTools = window.REDUX_DEVTOOLS_EXTENSION && window.REDUX_DEVTOOLS_EXTENSION()
const store = createStore(rootReducer, devTools)
The error is:
"The initialState argument passed to createStore has unexpected type of "Function"
Can someone help me?
Hello everyone, I have been using REDUX-DEV-TOOLS and it is super awesome, but I miss a feature in the UI, or I may not know hot to do it.
I belive it wold be super awesome if this filter field in the UI allow regex filter the actions.
In my case, I work with redux forms that is fantastic and... by it self dispatches SEVERAL actions that I trust and dont care about.
The filter field in the redux dev tool UI allows me to filter a specific action... but I really want is to "hide" all the redux form actions (because I trust and dont care about) So... I belive it wold be super useful this field allow me to filter with a regex like /^[^@@REDUX-FORM].*/
hi! I have a quick question if anyone is able to help. I have built some React components as a library, I am building with Rollup as many blog articles suggest and creating dist for npmjs in CommonJS version and ES6.
Unfortunately, when transforming the CommonJS to ES6, there is a wrong import:import redux, { combineReducers, createStore, applyMiddleware } from 'redux';
When using my components lib in a React app, it fails:Attempted import error: 'redux' does not contain a default export (imported as 'redux').
If I remove import { composeWithDevTools } from 'redux-devtools-extension'; from my lib, everything works.
Any idea why it is built with that import?