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

How to do escapeWithReference in react-popper 2.3.0 #460

Open
eduardoacskimlinks opened this issue Oct 18, 2023 · 2 comments
Open

How to do escapeWithReference in react-popper 2.3.0 #460

eduardoacskimlinks opened this issue Oct 18, 2023 · 2 comments

Comments

@eduardoacskimlinks
Copy link

I am trying to migrate the component to use 2.3.0. However, the documentation is excellent so far. There is no reference on how to keep doing escapeWithReference.

There is information on how it is supposed to behave on https://popper.js.org/docs/v1/#modifierspreventoverflow, but I need clarification on how to persist the original behaviour. Could you give me some guidance on how to do this?

@bradyshutt
Copy link

It's not well documented and is quite confusing because there have been multiple ways to achieve this in past versions, but I think I figured out what is happening in the React Popper (Popper v2.x).

The default flip modifier is causing the popper to try to "flip" positions when it falls out of bounds, trying to keep it in the viewport.

Explicitly adding/overriding the flip modifier with no fallback options is the solution for me that enables the popper to stay attached to its reference element in the position it started in, effectively allowing it to "escape with its reference".

modifiers: [
    { name: 'flip', options: { fallbackPlacements: [] } },
]

@eduardoacskimlinks
Copy link
Author

Thanks, @bradyshutt. I will give it a try and share its outcome 🤞

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

No branches or pull requests

2 participants