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

[Select] Add non modal mode in popper position #2253

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

Conversation

joaom00
Copy link
Contributor

@joaom00 joaom00 commented Jul 5, 2023

Description

As suggested here #2004 (comment), this PR adds non-modal mode only for the popper position since that mode for item-aligned position needs to be thought a little more.

Closes #1927

disableOutsidePointerEvents={context.open}
disableOutsideScroll
{...modalityProps}
onFocusOutside={(event) => event.preventDefault()}
Copy link
Contributor Author

@joaom00 joaom00 Jul 5, 2023

Choose a reason for hiding this comment

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

I have seen a problem on mobile in non-modal mode where the Trigger gets focus after being opened. Maybe I should put this line onFocusOutside={(event) => event.preventDefault()} in both modal and non-modal mode?

I noticed that this same issue also occurs in the dropdown menu, I believe it is because of react 17? In the documentation it doesn't seem to have any issues 🤔

I think this is an issue #2241

@kachkaev
Copy link

👋 @benoitgrelard! Any chance this PR could be looked into? It potentially fixes a rather serious performance issue – see #1634 (comment) and below for details. I use Radix Select in a project via https://ui.shadcn.com/docs/components/select. When a page has heavy markup like a large table, clicking on select makes the app freeze even on a pretty recent MacBookPro with M1. The lag is especially visible in Safari, but it’s also noticeable on Chrome and FF (especially with x4 throttling).

@frykten
Copy link

frykten commented Oct 10, 2023

@joaom00 Olá! This is just a ping 🙂 is this PR/subject still alive?

@joaom00
Copy link
Contributor Author

joaom00 commented Oct 12, 2023

@frykten Yes definitely. Unfortunately, I think the team didn't have time to review the PR...

@SaveliiLukash
Copy link

Came here from #2241

Thanks for the hint on onFocusOutside={ (event) => event.preventDefault() }. Might be a temporary, yet hacky solution, which is far from ideal.

Looking forward for this issue to be handled by the library itself.

@maschad96
Copy link

beep boop bump, this is a nice contribution – any chance it could get a review soon @benoitgrelard @andy-hook?

currently resorting to using DropdownMenu for the non-modal support when semantically I should be using Select

@andreareginato
Copy link

Any chance for this to be merged?

@CodingAleCR
Copy link

I would also prefer it if this fix was checked and worked/merged. Is there anyway we can help to push it over the line?

@bmutahhar
Copy link

I am facing the same issue. Any updates on when this will be merged?

@atancredi
Copy link

Hi all! This is just a ping, any updates on a possible merge?

@donghoon-song
Copy link

Any..

@chaance chaance added Resolution: Needs Investigation This issue needs more investigation and removed Needs Review labels Sep 26, 2024
@ttpss930141011
Copy link

Will be appreciated if the PR is merged

@Taaqif
Copy link

Taaqif commented Jan 30, 2025

Any updates on when this might be merged?

@chaance
Copy link
Member

chaance commented Feb 4, 2025

This one is on my radar, though I'd prefer to resolve it without additional wrapper components. One of our goals over the coming months is to reduce React tree bloat to improve the React dev tools experience.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs Review Resolution: Needs Investigation This issue needs more investigation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Select] Make the hideOthers feature optional (ie. add non-modal mode)