-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature(redux-devtools-app/ui): add search feature to state #1305
base: main
Are you sure you want to change the base?
Conversation
|
Will you fix that @80avin, i would like to have this feature. |
@ximfritz I couldn't get time to complete the PR in JSONPath-plus. I'll try to finish it in few weeks now. |
66a6b8a
to
e012515
Compare
Add search feature for State tree.
Search is done using a fork of JSONPath-plus (fork used: JSONPath-Plus/JSONPath#185 ) which adds support for Content Security Policy by eliminating the use of
eval/Function
.Being JSONPath, we can use complex expressions to search the tree by property names or values.
A sample expression is
$..[?(@ && @.id%3 === 0)]
tried in https://zalmoxisus.github.io/examples/router/#/Standard%20Todo?_k=pnapmsFixes #989