Description
Hello,
As a everyday user of the redux-dev-tools
, I will find very useful to have a filter feature on state.
I'm explaining myself, sometimes when you are working on a large application with big states, it quickly become a mess to find what you need in the redux store, particularly when you don't know well the project at the beginning.
You will pass a couple of minutes of waste on inspecting the store to find the variable you want, even if you have a correct understanding of the project, a new variable in the state can be added by an other mate in the team and you will again pass few minutes to inspect and find what you are looking for.
To answer this problem, I created a small proof of concept here.
I created an example of a big state, and then done a little search engine to find easily and quickly the variable in the state.
The proof of concept is here to give you a first idea :)
I'm waiting for your opinions all :)