-
Notifications
You must be signed in to change notification settings - Fork 2
refactor client-side handlers #19
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
Conversation
710fc3a to
511473e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #19 +/- ##
==========================================
+ Coverage 99.52% 99.63% +0.10%
==========================================
Files 114 105 -9
Lines 4193 3804 -389
==========================================
- Hits 4173 3790 -383
+ Misses 20 14 -6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
combine all client-side handlers into one. - We don't get any benefits from separate client-side handlers. - separate out client-side filter functions into standalone - found in client_side_filters.py - makes adding new filter functions easy - refactor client-side tests so its easier to add new ones
update docs to match change to client-side-handlers
511473e to
30fd90e
Compare
34bfc61 to
28dc9d3
Compare
| # QueryPresets.CONTAINS: ["list_contains", "has"], | ||
| # QueryPresets.NOT_CONTAINS: ["list_not_contains", "has_not"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should these still be commented?
best to convert them into comma spaced strings for now
|
decided LIST_CONTAINS and LIST_NOT_CONTAINS is not needed at the moment |
merge all client side handlers into one - simplifies the process to add new query presets