-
Notifications
You must be signed in to change notification settings - Fork 48.1k
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 controlled/uncontrolled validation for radio+checkbox inputs #7003
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -662,6 +662,43 @@ describe('ReactDOMInput', function() { | |
); | ||
}); | ||
|
||
it('should not warn if radio value changes but never becomes controlled', function() { | ||
var container = document.createElement('div'); | ||
ReactDOM.render(<input type="radio" value="value" />, container); | ||
ReactDOM.render(<input type="radio" />, container); | ||
ReactDOM.render(<input type="radio" value="value" defaultChecked={true} />, container); | ||
ReactDOM.render(<input type="radio" value="value" onChange={() => null} />, container); | ||
ReactDOM.render(<input type="radio" />, container); | ||
expect(console.error.calls.count()).toBe(0); | ||
}); | ||
|
||
it('should not warn if radio value changes but never becomes uncontrolled', function() { | ||
var container = document.createElement('div'); | ||
ReactDOM.render(<input type="radio" checked={false} onChange={() => null} />, container); | ||
ReactDOM.render( | ||
<input | ||
type="radio" | ||
value="value" | ||
defaultChecked={true} | ||
checked={false} | ||
onChange={() => null} | ||
/>, container); | ||
console.log(console.error.calls.argsFor(0)[0]); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you mean to leave this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pssh, thanks. #7006 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need a lint rule for that. |
||
expect(console.error.calls.count()).toBe(0); | ||
}); | ||
|
||
it('should warn if radio checked false changes to become uncontrolled', function() { | ||
var container = document.createElement('div'); | ||
ReactDOM.render(<input type="radio" value="value" checked={false} onChange={() => null} />, container); | ||
ReactDOM.render(<input type="radio" value="value" />, container); | ||
expect(console.error.calls.argsFor(0)[0]).toContain( | ||
'A component is changing a controlled input of type radio to be uncontrolled. ' + | ||
'Input elements should not switch from controlled to uncontrolled (or vice versa). ' + | ||
'Decide between using a controlled or uncontrolled input ' + | ||
'element for the lifetime of the component. More info: https://fb.me/react-controlled-components' | ||
); | ||
}); | ||
|
||
it('sets type before value always', function() { | ||
if (!ReactDOMFeatureFlags.useCreateElement) { | ||
return; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This spacing isn't FB style and this would be clearer anyway; can you change it?