-
Notifications
You must be signed in to change notification settings - Fork 63
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
Improve speed for laying out features for embedded/mainthreadrpc scenarios #2097
Conversation
8702e56
to
a20deba
Compare
Codecov Report
@@ Coverage Diff @@
## main #2097 +/- ##
==========================================
+ Coverage 61.45% 61.93% +0.47%
==========================================
Files 480 476 -4
Lines 22981 22783 -198
Branches 5391 5345 -46
==========================================
- Hits 14124 14111 -13
+ Misses 8574 8390 -184
+ Partials 283 282 -1
Continue to review full report at Codecov.
|
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.
This looks good, and I don't see the bug we were seeing before where mouseover didn't work sometimes.
* Drive mouseovers using layout data structure * Intermediate * Fixup breakpoint split view * Fix unit tests * Fix up some lint and tsc * Standardize getById to return recttuple for both layouts * Remove unused breakpoint split viewer from linear-comparative-view
Changes the rectangles data structure for granularrectlayout back to a normal map instead of an observable map. The layout is queried directly for nodes at a given position, and precompute layout uses rbush to do this (previously precompute layout didn't have any function to do this)
Fixes #2038