-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
fix: Data browser table shows loading indicator when info panel is loading #2782
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
🚀 Thanks for opening this pull request! We appreciate your effort in improving the project. Please let us know once your pull request is ready for review. |
📝 WalkthroughWalkthroughThe changes focus on clarifying and scoping the loading state management in the data browser and aggregation/info panel components. The generic Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant DataBrowser
participant AggregationPanel
User->>DataBrowser: Clicks on a cell
DataBrowser->>AggregationPanel: Requests info panel data
AggregationPanel->>AggregationPanel: Set isLoadingInfoPanel = true
AggregationPanel-->>DataBrowser: Info panel loading state updated
AggregationPanel->>AggregationPanel: Fetches data
AggregationPanel->>AggregationPanel: Set isLoadingInfoPanel = false
AggregationPanel-->>DataBrowser: Info panel loading complete
Assessment against linked issues
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
🧰 Additional context used🪛 ESLintsrc/dashboard/Data/Browser/BrowserTable.react.js[error] 9-9: 'Button' is defined but never used. (no-unused-vars) [error] 10-10: 'DataBrowserHeaderBar' is defined but never used. (no-unused-vars) [error] 11-11: 'EmptyState' is defined but never used. (no-unused-vars) [error] 12-12: 'Icon' is defined but never used. (no-unused-vars) [error] 15-15: 'Editor' is defined but never used. (no-unused-vars) ⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (11)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) |
## [7.1.1-alpha.2](7.1.1-alpha.1...7.1.1-alpha.2) (2025-05-03) ### Bug Fixes * Data browser table shows loading indicator when info panel is loading ([#2782](#2782)) ([da57e5e](da57e5e))
🎉 This change has been released in version 7.1.1-alpha.2 |
# [7.2.0](7.1.0...7.2.0) (2025-06-01) ### Bug Fixes * Data browser not scrolling to top when changing filter while cell selected ([#2821](#2821)) ([c2527dc](c2527dc)) * Data browser table shows loading indicator when info panel is loading ([#2782](#2782)) ([da57e5e](da57e5e)) * Improperly aligned unfolding sub-items in context menu in data browser ([#2726](#2726)) ([3fed292](3fed292)) * Notifications fade out erratically when executing a script on large number of rows ([#2822](#2822)) ([3891381](3891381)) * Pagination does not reset to page 1 when clicking on class or filter ([#2798](#2798)) ([29d1447](29d1447)) * Saving new filter in data browser overwrites filters added in other dashboard instances ([#2769](#2769)) ([46bc154](46bc154)) * Selecting a saved filter in data browser may highlight a different filter ([#2783](#2783)) ([4c6e853](4c6e853)) ### Features * Add confirmation dialog before saving a Cloud Config parameter that has been modified since editing it ([#2770](#2770)) ([adb9b5c](adb9b5c)) * Add custom CSS styling for info panel items ([#2788](#2788)) ([f031e5d](f031e5d)) * Add relative date filter in data browser for date constraints relative to when the query is run ([#2736](#2736)) ([d9dfd69](d9dfd69)) * Add script execution on parallel batches with option `script.executionBatchSize` ([#2828](#2828)) ([cee8b8d](cee8b8d)) * Keyboard Enter key can be used to select item in data browser filter dialog field dropdown ([#2771](#2771)) ([dc14710](dc14710))
🎉 This change has been released in version 7.2.0 |
New Pull Request Checklist
Issue Description
Closes: #2781
Approach
It seems that in #2768 the
isLoading
param was mistaken for the data table loading indicator but it controls the info panel loading indicator. Removed that added logic, because the also addedseems to be enough to fix #2718 which was the original intention.
Summary by CodeRabbit