Skip to content
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

fix: improved error handling and optimized reactivity in Dashboard co… #1408

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Vruddhi18
Copy link

@Vruddhi18 Vruddhi18 commented Mar 13, 2025

…mponent

Improvements & Fixes:
✅ Enhanced error handling for GraphQL queries & mutations:
✅ Displays more informative error messages for debugging. Ensures router.push(Path.Home) only triggers when necessary.
✅ Optimized useMemo usage for dashboard items:
✅ Prevents unnecessary re-renders when data structure remains the same.
✅ Wrapped onUpdateChange & onDelete in try-catch blocks: Ensures UI does not break if an API call fails.
✅ Preserved all core logic – No functional changes, just refinements for stability.

Summary by CodeRabbit

  • Bug Fixes

    • Enhanced error messages now display detailed feedback when failures occur.
    • Improved redirection logic to avoid unnecessary navigation on error.
  • Refactor

    • Streamlined the update and deletion processes for dashboard items for increased reliability.
    • Optimized internal control flows to ensure smoother interactions.

…mponent

Improvements & Fixes:
✅ Enhanced error handling for GraphQL queries & mutations:

Displays more informative error messages for debugging.
Ensures router.push(Path.Home) only triggers when necessary.
✅ Optimized useMemo usage for dashboardItems:
Prevents unnecessary re-renders when data structure remains the same.
✅ Wrapped onUpdateChange & onDelete in try-catch blocks:
Ensures UI does not break if an API call fails.
✅ Preserved all core logic – No functional changes, just refinements for stability.
Copy link
Contributor

coderabbitai bot commented Mar 13, 2025

Walkthrough

This pull request refines the Dashboard component by improving error handling and control flow. Error callbacks for queries and mutations now include actual error details in their messages. The redirect logic checks if the current path is not already the home route before navigating, and the layout update function now returns early when provided with null or empty values. The deletion functionality is wrapped in a try-catch block to capture and display specific error messages, and memoization is adjusted to depend on the latest fetched dashboard items.

Changes

File(s) Change Summary
wren-ui/src/.../dashboard.tsx Enhanced error messages in useDashboardItemsQuery, useUpdateDashboardItemLayoutsMutation, and useDeleteDashboardItemMutation; refined redirect logic; inverted layout condition; added try-catch for delete; updated memoization dependency.

Sequence Diagram(s)

sequenceDiagram
    participant U as User
    participant D as Dashboard Component
    participant Q as Query Handler
    participant M as Mutation/Deletion Handler
    participant R as Router

    U->>D: Load Dashboard Page
    D->>Q: Fetch dashboard items
    Q-->>D: Error response (with error message)
    D->>D: Process error (display specific error detail)
    D->>R: Verify current path and redirect if necessary

    U->>D: Trigger layout update or delete action
    D->>M: Call corresponding mutation/deletion (wrapped in try-catch)
    M-->>D: Return success or error, handled in catch block
Loading

Possibly related PRs

Suggested labels

module/ui

Suggested reviewers

  • fredalai

Poem

Hopping through the code so light,
I mend the bugs with all my might.
Errors now sing their true name,
Redirects are swift, never the same.
A rabbit’s cheer for changes so bright! 🐰

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.

📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between f419d82 and 4f251b5.

📒 Files selected for processing (1)
  • wren-ui/src/pages/home/dashboard.tsx (1 hunks)
🔇 Additional comments (6)
wren-ui/src/pages/home/dashboard.tsx (6)

22-26: Improved error handling and navigation logic

The enhanced error message now includes the actual error details, which will be helpful for debugging. The added condition to check if we're already on the home path prevents unnecessary navigation, avoiding potential UI flickering and redundant history entries.


30-30: Good optimization with useMemo

Correctly optimized to depend specifically on data?.dashboardItems rather than the entire data object. This prevents unnecessary re-renders when other properties of the data object change but the dashboard items remain the same.


33-35: Enhanced error message with specific details

Including the actual error message in the notification provides much better context for users and developers when troubleshooting issues.


43-45: Improved error feedback for deletion failures

The error handler now includes the specific error message, which provides better context for debugging and user feedback.


48-56: Better handling of layout updates with early returns and error handling

These changes improve the function in several ways:

  1. Early return for null/empty layouts prevents unnecessary API calls
  2. Try-catch block properly handles potential errors during the API call
  3. Specific error message includes the actual error details for better debugging

58-64: Added error handling for deletion operation

The try-catch block is a good addition that makes the code more robust by handling potential errors during the deletion process. This ensures that users get informative feedback if something goes wrong instead of a silent failure.

✨ Finishing Touches
  • 📝 Generate Docstrings

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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@Vruddhi18
Copy link
Author

I would like to request the merging of the pull request I submitted. All checks have been successfully validated, and there are no errors present. The changes have been reviewed and approved.

Thank you for your attention to this matter.

@wwwy3y3
Copy link
Member

wwwy3y3 commented Mar 18, 2025

Hi @Vruddhi18 thanks for the contribution. @fredalai , @andreashimin could you guys check this PR ?

Copy link
Contributor

@fredalai fredalai left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @Vruddhi18,
Thank you so much for your contribution, and I apologize for the delayed response.

Since we already have error handling in place for our GraphQL API, I think we can remove the onError functions related to the dashboard mutation APIs to avoid showing duplicate error messages.

Let me know what you think! 😊

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants