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: fix double-click in read-only mode #179

Merged
merged 2 commits into from
Oct 15, 2024
Merged

fix: fix double-click in read-only mode #179

merged 2 commits into from
Oct 15, 2024

Conversation

javier-godoy
Copy link
Member

@javier-godoy javier-godoy commented Oct 9, 2024

Summary by CodeRabbit

  • New Features

    • Upgraded Vaadin framework to version 14.11.13.
    • Introduced profiles for Vaadin versions 23 and 24, supporting different Java versions.
    • Enhanced TwinColGrid with improved layout management and item interaction capabilities.
  • Bug Fixes

    • Added checks to prevent item movement in read-only grid state.

@javier-godoy javier-godoy requested review from mlopezFC and paodb October 9, 2024 17:22
Copy link

coderabbitai bot commented Oct 9, 2024

Walkthrough

The changes in this pull request include updates to the pom.xml file, specifically upgrading the Vaadin framework version from 14.8.20 to 14.11.13 and introducing profiles for Vaadin versions 23 and 24 with corresponding Java compiler settings and dependencies. Additionally, enhancements were made to the TwinColGrid class, including the addition of new methods for managing data providers and header rows, as well as improvements to item movement logic based on the grid's state.

Changes

File Path Change Summary
pom.xml Updated vaadin.version from 14.8.20 to 14.11.13; added profiles v23 and v24; added dependency on jakarta.servlet in v24.
src/main/java/com/flowingcode/vaadin/addons/twincolgrid/TwinColGrid.java Added methods emptyDataProvider(), createFirstHeaderRowIfNeeded(), and updated constructor signature; modified layout creation logic and item movement checks.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ 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 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.

Copy link

sonarqubecloud bot commented Oct 9, 2024

Quality Gate Failed Quality Gate failed

Failed conditions
C Maintainability Rating on New Code (required ≥ A)

See analysis details on SonarCloud

Catch issues before they fail your Quality Gate with our IDE extension SonarLint

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: 1

🧹 Outside diff range and nitpick comments (2)
pom.xml (2)

Line range hint 283-289: New v23 profile looks good.

The addition of the v23 profile allows building the project with Vaadin 23.3.5 and Java 11. This provides flexibility for different build configurations.

Consider adding documentation in the project's README or developer guide explaining how to use different profiles and their implications.


Line range hint 291-324: New v24 profile looks good, but consider documenting its status.

The v24 profile adds support for Vaadin 24.2.6 with Java 17 and includes necessary changes for Jakarta EE compatibility. This forward-looking approach is commendable.

Given the inclusion of pre-release repositories, it appears that Vaadin 24 might still be in a pre-release state. Consider adding a comment in the pom.xml or documentation to indicate if this profile is experimental or intended for testing purposes only.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Files that changed from the base of the PR and between 8426303 and 9aaa8e2.

📒 Files selected for processing (2)
  • pom.xml (1 hunks)
  • src/main/java/com/flowingcode/vaadin/addons/twincolgrid/TwinColGrid.java (3 hunks)
🧰 Additional context used
🔇 Additional comments (5)
pom.xml (2)

12-12: Vaadin version update looks good.

The Vaadin version has been updated from 14.8.20 to 14.11.13. This minor version update is likely to include bug fixes and improvements.

Please ensure you've reviewed the changelog for any breaking changes or new features that might affect your project. You can find the changelog at: https://github.com/vaadin/platform/releases


Line range hint 1-326: Overall structure and consistency of pom.xml is maintained.

The changes to the pom.xml file are well-structured and isolated to specific sections (properties and profiles). The main project configuration remains unchanged, which is good for backwards compatibility. The new profiles add flexibility for building with different Vaadin versions without affecting the default build.

src/main/java/com/flowingcode/vaadin/addons/twincolgrid/TwinColGrid.java (3)

153-155: LGTM: Proper initialization of empty data provider

The method emptyDataProvider() correctly initializes an empty ListDataProvider with a LinkedHashSet to maintain the order of items.


Line range hint 342-353: Well-structured horizontal container creation

The method createHorizontalContainer(boolean reverse) is implemented correctly, handling the creation of the horizontal layout based on the reverse parameter.


931-938: Prevent moving items in read-only mode

Adding the check if (!isReadOnly()) appropriately prevents items from being moved when the grid is in read-only mode, addressing the issue as intended.

Comment on lines +933 to +938
if (side == available) {
updateSelection(item, Collections.emptySet(), true);
}
if (side == selection) {
updateSelection(Collections.emptySet(), item, true);
}
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Enhance conditional logic by using 'else if'

To improve clarity and avoid unnecessary checks, consider changing the second if to else if, since side cannot be both available and selection.

Apply this diff to implement the suggestion:

if (side == available) {
    updateSelection(item, Collections.emptySet(), true);
}
-if (side == selection) {
+else if (side == selection) {
    updateSelection(Collections.emptySet(), item, true);
}
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if (side == available) {
updateSelection(item, Collections.emptySet(), true);
}
if (side == selection) {
updateSelection(Collections.emptySet(), item, true);
}
if (side == available) {
updateSelection(item, Collections.emptySet(), true);
}
else if (side == selection) {
updateSelection(Collections.emptySet(), item, true);
}

Copy link
Member

@mlopezFC mlopezFC left a comment

Choose a reason for hiding this comment

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

LGTM

@mlopezFC mlopezFC merged commit ccd465d into master Oct 15, 2024
5 of 6 checks passed
@mlopezFC mlopezFC deleted the fix-177 branch October 15, 2024 21:11
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.

2 participants