mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
45c1ff348e
* Remove use strict from ES modules * Delete unused file This was unused since Stack.
46 lines
1.3 KiB
JavaScript
46 lines
1.3 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.
|
|
*/
|
|
|
|
import {ReactDebugCurrentFrame} from 'shared/ReactGlobalSharedState';
|
|
import warning from 'fbjs/lib/warning';
|
|
|
|
var didWarnValueNull = false;
|
|
|
|
function getStackAddendum() {
|
|
var stack = ReactDebugCurrentFrame.getStackAddendum();
|
|
return stack != null ? stack : '';
|
|
}
|
|
|
|
export 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(),
|
|
);
|
|
}
|
|
}
|
|
}
|