-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat: Profile sunburst chart #3785
Conversation
Bundle ReportChanges will increase total bundle size by 745 bytes (0.01%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: gazebo-staging-systemAssets Changed:
Files in
view changes for bundle: gazebo-staging-esmAssets Changed:
Files in
|
Bundle ReportChanges will increase total bundle size by 745 bytes (0.01%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: gazebo-production-esmAssets Changed:
Files in
view changes for bundle: gazebo-production-systemAssets Changed:
Files in
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #3785 +/- ##
=======================================
Coverage 98.74% 98.74%
=======================================
Files 826 826
Lines 14947 14947
Branches 4256 4256
=======================================
Hits 14759 14759
Misses 181 181
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #3785 +/- ##
=======================================
Coverage 98.74% 98.74%
=======================================
Files 826 826
Lines 14947 14947
Branches 4264 4256 -8
=======================================
Hits 14759 14759
Misses 181 181
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #3785 +/- ##
=======================================
Coverage 98.74% 98.74%
=======================================
Files 826 826
Lines 14947 14947
Branches 4256 4264 +8
=======================================
Hits 14759 14759
Misses 181 181
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #3785 +/- ##
=======================================
Coverage 98.74% 98.74%
=======================================
Files 826 826
Lines 14947 14947
Branches 4256 4256
=======================================
Hits 14759 14759
Misses 181 181
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
.padAngle((d) => Math.min((d.x1 - d.x0) / 2, 0.005)) | ||
.padRadius(radius * 1.5) | ||
.innerRadius((d) => d.y0 * radius) | ||
.outerRadius((d) => Math.max(d.y0 * radius, d.y1 * radius - 1)) |
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.
my brain hurts
Description
This PR quickly adds
withProfiler
HOC to theSunburstChart
so we can start collecting information on it, for comparison against some optimizations that are in the pipeline.Closes: codecov/engineering-team#3428