Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: tooltip position on edge of screen#34518

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
admirhusic wants to merge3 commits intoappsmithorg:release
base:release
Choose a base branch
Loading
fromadmirhusic:fix/tooltip-position-fix

Conversation

@admirhusic
Copy link

@admirhusicadmirhusic commentedJun 26, 2024
edited by coderabbitaibot
Loading

Description

Fixes tooltip on input label when touching edges of the screen.

Fixes#34445

Automation

/ok-to-test tags=""

🔍 Cypress test results

Caution

If you modify the content in this section, you are likely to disrupt the CI result for your PR.

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Nikhil-Nandagopal I haven't created tests since this is a small change. Let me know if this case is required to be tested. :)

Summary by CodeRabbit

  • New Features
    • Enhanced tooltip behavior to prevent overflow and enable flipping, improving the positioning and visibility of tooltips.

- Added Popper.js modifiers to prevent tooltip from overflowing viewport edges- Enabled 'preventOverflow' to restrict tooltip within the viewport- Enabled 'flip' to automatically reposition tooltip if there is insufficient space- Docs:https://floating-ui.com/docs/flip#flipResolves:appsmithorg#34445
@coderabbitai
Copy link
Contributor

coderabbitaibot commentedJun 26, 2024
edited
Loading

Walkthrough

TheTooltipComponent has been updated to enhance tooltip positioning. Specifically, the tooltip now uses thepreventOverflow andflip modifiers to avoid being cut off in full-screen mode. These changes aim to ensure better visibility and positioning of tooltips.

Changes

FileChange Summary
app/client/packages/design-system/widgets-old/src/Tooltip/index.tsxModifiedTooltipComponent to enablepreventOverflow withboundariesElement: "viewport" and activate theflip modifier.

Assessment against linked issues

ObjectiveAddressedExplanation
Fix tooltip cutting in fullscreen (#34445)

Poem

In a world of widgets tall and proud,
Tooltips danced and sang aloud.
No longer cut by screen's embrace,
They flip and flow with style and grace.
Now in fullscreen, they stand so bright,
Overflow no more, they're just right. 🐇✨


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

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 as 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.

Additionally, you can add@coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a.coderabbit.yaml file to the root of your repository.
  • Please see theconfiguration 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 ourDocumentation for detailed information on how to use CodeRabbit.
  • Join ourDiscord Community to get help, request features, and share feedback.
  • Follow us onX/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitaicoderabbitaibot 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

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between6f67dbd and72b8045.

Files selected for processing (1)
  • app/client/packages/design-system/widgets-old/src/Tooltip/index.tsx (1 hunks)
Additional comments not posted (2)
app/client/packages/design-system/widgets-old/src/Tooltip/index.tsx (2)

78-84:Enhancements to Tooltip Positioning Logic

The modifications to thepreventOverflow andflip modifiers are correctly implemented to address the tooltip cutoff issue described in the linked issue. SettingpreventOverflow toenabled: true withboundariesElement: "viewport" ensures that tooltips do not extend beyond the viewport, which is crucial for tooltips near the screen edges. Additionally, enabling theflip modifier allows the tooltip to reposition itself to remain visible, which is a smart use of the Popper.js library's capabilities.

These changes are well-aligned with the PR objectives to improve tooltip visibility and positioning in edge cases.


78-84:Verify Integration with Existing Modifiers

Given the integration of new modifiers with existing ones (...props.modifiers), it's critical to ensure that there are no conflicts or unexpected behaviors when these modifiers are combined with others that might be passed as props.

Comment on lines +78 to +84
preventOverflow:{
enabled:true,
boundariesElement:"viewport",
},
flip:{
enabled:true,
},
Copy link
Contributor

Choose a reason for hiding this comment

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

Consider Adding Comments for Clarity

While the code changes are effective, adding comments explaining why these specific modifiers were chosen could be beneficial for future maintenance. This is especially important as tooltips are a common UI component and these changes might have nuanced impacts on different parts of the application.

      preventOverflow: {+       // Enable to prevent the tooltip from overflowing the viewport        enabled: true,+       // Set the boundary element to the viewport to ensure visibility        boundariesElement: "viewport",      },      flip: {+       // Enable flipping to adjust tooltip position dynamically        enabled: 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
preventOverflow:{
enabled:true,
boundariesElement:"viewport",
},
flip:{
enabled:true,
},
preventOverflow:{
// Enable to prevent the tooltip from overflowing the viewport
enabled:true,
// Set the boundary element to the viewport to ensure visibility
boundariesElement:"viewport",
},
flip:{
// Enable flipping to adjust tooltip position dynamically
enabled:true,
},

@github-actions
Copy link

This PR has not seen activitiy for a while. It will be closed in 7 days unless further activity is detected.

@github-actions
Copy link

This PR has been closed because of inactivity.

@leuedaniel
Copy link

@Nikhil-Nandagopal is there a chance to merge this request?

@jacquesikotjacquesikot self-requested a reviewFebruary 10, 2025 10:46
@jacquesikotjacquesikot changed the titleFix/tooltip position fixfix: tooltip position on edge of screenFeb 11, 2025
@jacquesikot
Copy link
Contributor

jacquesikot commentedFeb 12, 2025
edited
Loading

@admirhusic your changes look good, can you please ad cypress tests for the change? ThisPR can help

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@coderabbitaicoderabbitai[bot]coderabbitai[bot] left review comments

+2 more reviewers

@sagar-qa007sagar-qa007sagar-qa007 approved these changes

@jacquesikotjacquesikotjacquesikot approved these changes

Reviewers whose approvals may not affect merge requirements

At least 1 approving review is required to merge this pull request.

Assignees

No one assigned

Labels

None yet

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

[Bug]: Tooltip cut in fullscreen

4 participants

@admirhusic@leuedaniel@jacquesikot@sagar-qa007

[8]ページ先頭

©2009-2025 Movatter.jp