-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
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] Remove the React.cloneElement usage #14943
Comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@bgits You can't create an intermediary component. We rely on the <TextField
className={classes.textField}
id="delegateProfile"
name="delegateProfile"
select
label="Select Delegate Profile"
placeholder="Select Delegate Profile"
margin="normal"
variant="outlined"
onChange={console.log}
onBlur={console.log}
value={""}
>
{profiles.map(profile => (
<MenuItem
style={{ display: "flex", alignItems: "center" }}
key={profile.name}
value={profile.name}
>
{profile.name}
</MenuItem>
))}
</TextField>
</div> https://codesandbox.io/s/wz72o1v365 We are working on the problem. @joshwooding has started to remove the |
So for now the only workaround is to have the data prefetched for each |
@bgits Yes. Alternatively, we could provide a different API, it might be our best hope actually. I think that we should wait for more people upvotes and use cases before prioritizing the problem. |
A new constraint to take into account, the usage of cloneElement prevents virtualization: #16364. |
With a priority on customization we should use context by default. Even if it looks like a overengineered cloneElement for the basic case it prevents so much subtle bugs with custom components. |
I'm facing the same problem here. |
I have a form with two text fields. The first text field works as expected in selecting and closing on click, but the second does and not have have gone in to very hacky territory in order to try to get it to work but it does not.
Expected Behavior 🤔
The menu option should blur on click
Current Behavior 😯
It stays open and does not trigger a handleChange or handleBlur event in the parent. In the code sandbox it doesn't even open.
Steps to Reproduce 🕹
Link: https://codesandbox.io/s/create-react-app-forked-s5ouz?file=/src/pages/index.js
Context 🔦
I need wrap the menu in an EnhancedComponent in order to Observe certain fields on the model (async)
Your Environment 🌎
The text was updated successfully, but these errors were encountered: