Skip to content

Conversation

paodb
Copy link
Member

@paodb paodb commented Aug 25, 2025

Close #161

Summary by CodeRabbit

  • New Features
    • Clear user notification when attempting to add a labeled marker without label text.
  • Bug Fixes
    • Prevents creation of markers with empty labels when “With Label” is enabled by cancelling the action and prompting for valid input.
  • Other
    • Improves usability by avoiding blank marker labels and ensuring clearer map annotations. No changes to public APIs or other functionality.

Copy link

coderabbitai bot commented Aug 25, 2025

Walkthrough

Adds an early return in AddMarkersDemo’s “Add Marker” handler: when “With Label” is checked and the label text is empty, a notification is shown and marker creation is aborted. Non-empty labels continue to create and style a MarkerLabel as before. No public APIs changed.

Changes

Cohort / File(s) Change Summary
Demo behavior: empty label handling
src/test/java/com/flowingcode/vaadin/addons/googlemaps/AddMarkersDemo.java
In the Add Marker click handler, detect empty label when “With Label” is enabled; show notification and return early to skip marker creation. Preserve existing flow for non-empty labels.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Assessment against linked issues

Objective Addressed Explanation
Handle empty label in demo so no “[object Object]” is shown; if empty/undefined, no label should be displayed (#161) The implementation aborts marker creation instead of adding the marker without a label.

Possibly related PRs

  • Add Marker's Label #157 — Modifies the same AddMarkersDemo label-handling path with early return and notification for empty label.

Suggested reviewers

  • javier-godoy

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.

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch fix-issue-161

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.
    • 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.
  • 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 the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

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

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • 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.

Copy link

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (2)
src/test/java/com/flowingcode/vaadin/addons/googlemaps/AddMarkersDemo.java (2)

122-131: Don’t abort marker creation on empty label; add unlabeled marker instead (per Issue #161).

Issue #161’s expected behavior says: “If label is not defined or is empty, no label should be displayed.” The current early return prevents adding the marker at all when “With Label” is checked but the text is empty. Prefer letting the marker be created without a label, optionally notifying the user. Also treat whitespace-only input as empty and trim the label before applying.

Proposed refactor:

-              if(withLabel.getValue()) {
-                if(labelText.getValue().isEmpty()) {
-                  Notification.show("Please select a label for the marker");
-                  return;
-                }
-                MarkerLabel label = new MarkerLabel(labelText.getValue());
-                label.setColor("white");
-                label.setFontWeight("bold");
-                marker.setLabel(label);
-              }
+              if (withLabel.getValue()) {
+                String text = Optional.ofNullable(labelText.getValue()).orElse("");
+                if (text.isBlank()) {
+                  // Inform but still add the marker without a label (matches Issue #161 expectation)
+                  Notification.show("Please enter a label or uncheck 'With Label' to add an unlabeled marker");
+                } else {
+                  MarkerLabel label = new MarkerLabel(text.trim());
+                  label.setColor("white");
+                  label.setFontWeight("bold");
+                  marker.setLabel(label);
+                }
+              }

If you intentionally prefer blocking the action, please confirm the UX decision and consider the minimal improvements below (whitespace handling + clearer message).


123-126: Handle whitespace-only labels and clarify the message.

Use isBlank() to catch whitespace-only input and improve the copy (“enter” vs “select”). If you keep the early return behavior, minimally do:

-                if(labelText.getValue().isEmpty()) {
-                  Notification.show("Please select a label for the marker");
+                if (labelText.getValue() == null || labelText.getValue().isBlank()) {
+                  Notification.show("Please enter a label for the marker");
                   return;
                 }
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 9ab7000 and 95e2f94.

📒 Files selected for processing (1)
  • src/test/java/com/flowingcode/vaadin/addons/googlemaps/AddMarkersDemo.java (1 hunks)

@javier-godoy javier-godoy merged commit 43569f5 into master Aug 26, 2025
6 checks passed
@github-project-automation github-project-automation bot moved this from To Do to Pending release in Flowing Code Addons Aug 26, 2025
@javier-godoy javier-godoy deleted the fix-issue-161 branch August 26, 2025 17:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Pending release
Development

Successfully merging this pull request may close these issues.

Markers Demo: adding and empty label shows [Object Object]
2 participants