-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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(insights): Use GlobalDrawer
instead of detail panels
#82534
Merged
Merged
Changes from 28 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
c1663c3
Add panel header component
gggritso 432408b
Add body component
gggritso fc60207
Truncate the link
gggritso b39998d
Use new drawer in HTTP samples panel
gggritso 4c72a84
Extract drawer hook
gggritso d0aee68
Use new drawer in Caches
gggritso 2c30adb
Use new Drawer in Queues
gggritso 080527b
Pass through a React node instead
gggritso 51b42a3
Omit query when closing the drawer
gggritso b7a892c
Use new Drawer in Queries and Resources
gggritso 3e54ef6
Custon `onClose`
gggritso 102b9ae
Revert "Custon `onClose`"
gggritso 80cffdd
Use drawer in Web Vitals
gggritso 76dc8c6
Give vitals drawer a more specific name
gggritso cf66ff3
Omit more span properties from URL on close
gggritso 8a92f4f
Use drawer in Mobile
gggritso 79ca100
Fold me into rename
gggritso c901671
Project is optional for rendering the drawer header
gggritso 4550c7d
Use heading for header
gggritso 3b5a93f
Do not gate header behind project
gggritso 54842f2
Fix data loading in cache panel
gggritso 8b799a0
Add subtitle support to drawer header
gggritso 7539a2c
Add subtitle to queue panels
gggritso 99ca171
Remove unneeded test
gggritso 4521aec
Rename bad interface
gggritso af53630
Remove unused prop
gggritso 29fa975
Fix bad truncations
gggritso 1db9c81
Fix analytics
gggritso 62dc39c
Merge branch 'master' into feat/insights/new-slideout-panel-design
gggritso 59de2b5
Merge branch 'master' into feat/insights/new-slideout-panel-design
gggritso db0be36
Rename over-specified component
gggritso f443bd2
Add subtitle delimiter
gggritso d134cc5
Update specs
gggritso File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
nit: Maybe we could use
decodeScalar
so we don't need this type assertion? might have to handle undefined though or add a fallbackThere 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.
Probably yes! I didn't bother changing this since it's not part of the panel change (I'm just moving the code around) but I agree that using
decodeScalar
(probably inuseLocationQuery
) would be better here