-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat: Add info panel setting to auto-load first row on opening new browser tab #2972
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: Add info panel setting to auto-load first row on opening new browser tab #2972
Conversation
🚀 Thanks for opening this pull request! |
Caution Review failedThe pull request is closed. 📝 WalkthroughWalkthroughAdds an “Auto-load first row” setting for the Info Panel. BrowserToolbar exposes a new menu item and props. DataBrowser manages a persisted autoLoadFirstRow flag, toggles it, and when enabled auto-selects the first row and triggers aggregation and cloud function on panel open or relevant updates. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant Toolbar as BrowserToolbar
participant DB as DataBrowser
participant LS as localStorage
participant Grid as Data Grid
participant Cloud as Cloud Function
User->>Toolbar: Click "Auto-load first row"
Toolbar->>DB: toggleAutoLoadFirstRow()
DB->>LS: Persist AGGREGATION_PANEL_AUTO_LOAD_FIRST_ROW
DB->>DB: Update state.autoLoadFirstRow
rect rgba(200,230,255,0.3)
note over DB: When Info Panel opens or data/className changes
DB->>DB: Check: panel visible, data exists, no selection, autoLoadFirstRow
alt Conditions met
DB->>Grid: setSelectedObjectId(firstRow), setCurrent(0,0)
DB->>DB: setShowAggregatedData(true)
DB->>Cloud: handleCallCloudFunction(firstRow)
else Conditions not met
DB-->>DB: No action
end
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type 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.4.0-alpha.5](7.4.0-alpha.4...7.4.0-alpha.5) (2025-08-22) ### Features * Add info panel setting to auto-load first row on opening new browser tab ([#2972](#2972)) ([020a25d](020a25d))
🎉 This change has been released in version 7.4.0-alpha.5 |
# [7.4.0](7.3.0...7.4.0) (2025-09-01) ### Bug Fixes * Legacy script in JavaScript console not imported to modern console ([#2963](#2963)) ([8c8d084](8c8d084)) ### Features * Add App Settings option to store dashboard settings on server ([#2958](#2958)) ([666e078](666e078)) * Add config parameter name to quick add dialogs in Config page ([#2970](#2970)) ([31988f6](31988f6)) * Add info panel setting to auto-load first row on opening new browser tab ([#2972](#2972)) ([020a25d](020a25d)) * Modernize JavaScript console with tabs and server-side storage of scripts ([#2962](#2962)) ([6e0c7f2](6e0c7f2))
🎉 This change has been released in version 7.4.0 |
* source: chore(release): 7.4.0 [skip ci] empty commit to trigger CI chore(release): 7.4.0-alpha.5 [skip ci] feat: Add info panel setting to auto-load first row on opening new browser tab (parse-community#2972) chore(release): 7.4.0-alpha.4 [skip ci] feat: Add config parameter name to quick add dialogs in Config page (parse-community#2970) refactor: Bump @babel/runtime-corejs3 from 7.27.4 to 7.28.3 (parse-community#2966) chore(release): 7.4.0-alpha.3 [skip ci] fix: Legacy script in JavaScript console not imported to modern console (parse-community#2963) chore(release): 7.4.0-alpha.2 [skip ci] feat: Modernize JavaScript console with tabs and server-side storage of scripts (parse-community#2962) chore(release): 7.4.0-alpha.1 [skip ci] feat: Add App Settings option to store dashboard settings on server (parse-community#2958) refactor: Bump inquirer from 12.6.3 to 12.9.0 (parse-community#2959)
Summary by CodeRabbit