-
Notifications
You must be signed in to change notification settings - Fork 1.1k
feat: pages ui revamp #754
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
Caution Review failedThe pull request is closed. WalkthroughAdds i18n to navigation/buttons, introduces onArrowBack prop to RobotConfigPage with fallback navigation, hides Cancel in several pages via showCancelButton, updates back/success/cancel routing based on current path, restructures RobotConfigPage layout, adds MCP integration option, and extends RobotMeta and ScheduleConfig interfaces. Also refines credential extraction logic in edit flow. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor User
participant RCP as RobotConfigPage
participant Host as Parent Page
participant Router
Note over RCP: Back button behavior
User->>RCP: Click ArrowBack
alt onArrowBack provided
RCP->>Host: onArrowBack()
else fallback
RCP->>Router: navigate(/prebuilt-robots or /robots)
end
Note over RCP: Save/Cancel visibility via props (showCancelButton)
sequenceDiagram
autonumber
actor User
participant RIP as RobotIntegrationPage
participant RCP as RobotConfigPage
participant Store as Settings
participant Router
Note over RIP: Provide custom back via onArrowBack
User->>RCP: Click ArrowBack
RCP->>RIP: onArrowBack()
RIP->>Store: clear selection
RIP->>Store: set integrationType = "airtable"
RIP->>Router: navigate(back)
Note over RIP: MCP option
User->>RIP: Click MCP
RIP->>User: Open https://docs.maxun.dev/mcp/setup (new tab)
sequenceDiagram
autonumber
actor User
participant RDP as RobotDuplicatePage
participant Router
Note over RDP: Success/Cancel route base on current path
User->>RDP: Duplicate success or Cancel
alt URL contains "/prebuilt-robots"
RDP->>Router: navigate("/prebuilt-robots")
else
RDP->>Router: navigate("/robots")
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
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 (5)
✨ Finishing Touches
🧪 Generate unit tests
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 (
|
Summary by CodeRabbit
New Features
UI/UX
Navigation