mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
4a43cf6eac
* Corrects error message for select with props.multiple set to true and a null value. * Don't bother deduplicating based on type * Make the code a bit simpler (and more verbose)
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
if (__DEV__) {
|
|
var {ReactDebugCurrentFrame} = require('shared/ReactGlobalSharedState');
|
|
var warning = require('fbjs/lib/warning');
|
|
}
|
|
|
|
var didWarnValueNull = false;
|
|
|
|
function getStackAddendum() {
|
|
var stack = ReactDebugCurrentFrame.getStackAddendum();
|
|
return stack != null ? stack : '';
|
|
}
|
|
|
|
function validateProperties(type, props) {
|
|
if (type !== 'input' && type !== 'textarea' && type !== 'select') {
|
|
return;
|
|
}
|
|
|
|
if (props != null && props.value === null && !didWarnValueNull) {
|
|
didWarnValueNull = true;
|
|
if (type === 'select' && props.multiple) {
|
|
warning(
|
|
false,
|
|
'`value` prop on `%s` should not be null. ' +
|
|
'Consider using an empty array when `multiple` is set to `true` ' +
|
|
'to clear the component or `undefined` for uncontrolled components.%s',
|
|
type,
|
|
getStackAddendum(),
|
|
);
|
|
} else {
|
|
warning(
|
|
false,
|
|
'`value` prop on `%s` should not be null. ' +
|
|
'Consider using an empty string to clear the component or `undefined` ' +
|
|
'for uncontrolled components.%s',
|
|
type,
|
|
getStackAddendum(),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
var ReactDOMNullInputValuePropHook = {
|
|
validateProperties,
|
|
};
|
|
|
|
module.exports = ReactDOMNullInputValuePropHook;
|