-
Notifications
You must be signed in to change notification settings - Fork 46.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move null-input-value-prop warning into devtool, add stack trace
- Loading branch information
Showing
5 changed files
with
52 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
src/renderers/dom/shared/devtools/ReactDOMNullInputValuePropDevtool.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/** | ||
* Copyright 2013-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @providesModule ReactDOMNullInputValuePropDevtool | ||
*/ | ||
|
||
'use strict'; | ||
|
||
var ReactComponentTreeDevtool = require('ReactComponentTreeDevtool'); | ||
|
||
var warning = require('warning'); | ||
|
||
var didWarnValueNull = false; | ||
|
||
function handleElement(debugID, element) { | ||
if (element == null) { | ||
return; | ||
} | ||
if (element.type !== 'input' && element.type !== 'textarea' && element.type !== 'select') { | ||
return; | ||
} | ||
if (element.props != null && element.props.value === null && !didWarnValueNull) { | ||
warning( | ||
false, | ||
'`value` prop on `%s` should not be null. ' + | ||
'Consider using the empty string to clear the component or `undefined` ' + | ||
'for uncontrolled components.%s', | ||
element.type, | ||
ReactComponentTreeDevtool.getStackAddendumByID(debugID) | ||
); | ||
|
||
didWarnValueNull = true; | ||
} | ||
} | ||
|
||
var ReactDOMUnknownPropertyDevtool = { | ||
onBeforeMountComponent(debugID, element) { | ||
handleElement(debugID, element); | ||
}, | ||
onBeforeUpdateComponent(debugID, element) { | ||
handleElement(debugID, element); | ||
}, | ||
}; | ||
|
||
module.exports = ReactDOMUnknownPropertyDevtool; |