Fix more forwardRef displayNames
Summary: See https://reactjs.org/docs/forwarding-refs.html#displaying-a-custom-name-in-devtools reapply of D8342904 Reviewed By: yungsters Differential Revision: D8465006 fbshipit-source-id: f196f39b9b1c9bbe16a845667ebbdb21953a5848
This commit is contained in:
parent
c5ce762697
commit
76eebce3c2
|
@ -70,12 +70,10 @@ type Props = $ReadOnly<{|
|
||||||
* See http://facebook.github.io/react-native/docs/activityindicator.html
|
* See http://facebook.github.io/react-native/docs/activityindicator.html
|
||||||
*/
|
*/
|
||||||
const ActivityIndicator = (
|
const ActivityIndicator = (
|
||||||
props: $ReadOnly<{|
|
props: Props,
|
||||||
...Props,
|
forwardedRef?: ?React.Ref<'RCTActivityIndicatorView'>,
|
||||||
forwardedRef?: ?React.Ref<'RCTActivityIndicatorView'>,
|
|
||||||
|}>,
|
|
||||||
) => {
|
) => {
|
||||||
const {onLayout, style, forwardedRef, ...restProps} = props;
|
const {onLayout, style, ...restProps} = props;
|
||||||
let sizeStyle;
|
let sizeStyle;
|
||||||
|
|
||||||
switch (props.size) {
|
switch (props.size) {
|
||||||
|
@ -99,16 +97,19 @@ const ActivityIndicator = (
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View onLayout={onLayout} style={[styles.container, style]}>
|
<View
|
||||||
|
onLayout={onLayout}
|
||||||
|
style={StyleSheet.compose(
|
||||||
|
styles.container,
|
||||||
|
style,
|
||||||
|
)}>
|
||||||
<RCTActivityIndicator {...nativeProps} />
|
<RCTActivityIndicator {...nativeProps} />
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
||||||
const ActivityIndicatorWithRef = React.forwardRef((props: Props, ref) => {
|
const ActivityIndicatorWithRef = React.forwardRef(ActivityIndicator);
|
||||||
return <ActivityIndicator {...props} forwardedRef={ref} />;
|
|
||||||
});
|
|
||||||
|
|
||||||
ActivityIndicatorWithRef.defaultProps = {
|
ActivityIndicatorWithRef.defaultProps = {
|
||||||
animating: true,
|
animating: true,
|
||||||
|
@ -116,7 +117,6 @@ ActivityIndicatorWithRef.defaultProps = {
|
||||||
hidesWhenStopped: true,
|
hidesWhenStopped: true,
|
||||||
size: 'small',
|
size: 'small',
|
||||||
};
|
};
|
||||||
ActivityIndicatorWithRef.displayName = 'ActivityIndicator';
|
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
container: {
|
container: {
|
||||||
|
|
|
@ -4,41 +4,60 @@
|
||||||
* This source code is licensed under the MIT license found in the
|
* This source code is licensed under the MIT license found in the
|
||||||
* LICENSE file in the root directory of this source tree.
|
* LICENSE file in the root directory of this source tree.
|
||||||
*
|
*
|
||||||
|
* @flow
|
||||||
* @format
|
* @format
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const ColorPropType = require('ColorPropType');
|
|
||||||
const PropTypes = require('prop-types');
|
|
||||||
const React = require('React');
|
const React = require('React');
|
||||||
const ViewPropTypes = require('ViewPropTypes');
|
|
||||||
|
|
||||||
const requireNativeComponent = require('requireNativeComponent');
|
const requireNativeComponent = require('requireNativeComponent');
|
||||||
|
|
||||||
const STYLE_ATTRIBUTES = [
|
import type {NativeComponent} from 'ReactNative';
|
||||||
'Horizontal',
|
import type {ViewProps} from 'ViewPropTypes';
|
||||||
'Normal',
|
|
||||||
'Small',
|
|
||||||
'Large',
|
|
||||||
'Inverse',
|
|
||||||
'SmallInverse',
|
|
||||||
'LargeInverse',
|
|
||||||
];
|
|
||||||
|
|
||||||
const indeterminateType = function(props, propName, componentName, ...rest) {
|
const AndroidProgressBar = requireNativeComponent('AndroidProgressBar');
|
||||||
const checker = function() {
|
|
||||||
const indeterminate = props[propName];
|
|
||||||
const styleAttr = props.styleAttr;
|
|
||||||
if (!indeterminate && styleAttr !== 'Horizontal') {
|
|
||||||
return new Error(
|
|
||||||
'indeterminate=false is only valid for styleAttr=Horizontal',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return PropTypes.bool(props, propName, componentName, ...rest) || checker();
|
type Props = $ReadOnly<{|
|
||||||
};
|
...ViewProps,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Style of the ProgressBar and whether it shows indeterminate progress (e.g. spinner).
|
||||||
|
*
|
||||||
|
* `indeterminate` can only be false if `styleAttr` is Horizontal, and requires a
|
||||||
|
* `progress` value.
|
||||||
|
*/
|
||||||
|
...
|
||||||
|
| {|
|
||||||
|
styleAttr: 'Horizontal',
|
||||||
|
indeterminate: false,
|
||||||
|
progress: number,
|
||||||
|
|}
|
||||||
|
| {|
|
||||||
|
typeAttr:
|
||||||
|
| 'Horizontal'
|
||||||
|
| 'Normal'
|
||||||
|
| 'Small'
|
||||||
|
| 'Large'
|
||||||
|
| 'Inverse'
|
||||||
|
| 'SmallInverse'
|
||||||
|
| 'LargeInverse',
|
||||||
|
indeterminate: true,
|
||||||
|
|},
|
||||||
|
/**
|
||||||
|
* Whether to show the ProgressBar (true, the default) or hide it (false).
|
||||||
|
*/
|
||||||
|
animating?: ?boolean,
|
||||||
|
/**
|
||||||
|
* Color of the progress bar.
|
||||||
|
*/
|
||||||
|
color?: ?string,
|
||||||
|
/**
|
||||||
|
* Used to locate this view in end-to-end tests.
|
||||||
|
*/
|
||||||
|
testID?: ?string,
|
||||||
|
|}>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* React component that wraps the Android-only `ProgressBar`. This component is
|
* React component that wraps the Android-only `ProgressBar`. This component is
|
||||||
|
@ -63,59 +82,20 @@ const indeterminateType = function(props, propName, componentName, ...rest) {
|
||||||
* },
|
* },
|
||||||
* ```
|
* ```
|
||||||
*/
|
*/
|
||||||
class ProgressBarAndroid extends React.Component {
|
const ProgressBarAndroid = (
|
||||||
static propTypes = {
|
props: Props,
|
||||||
...ViewPropTypes,
|
forwardedRef: ?React.Ref<'AndroidProgressBar'>,
|
||||||
|
) => {
|
||||||
|
return <AndroidProgressBar {...props} ref={forwardedRef} />;
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
||||||
* Style of the ProgressBar. One of:
|
const ProgressBarAndroidToExport = React.forwardRef(ProgressBarAndroid);
|
||||||
*
|
|
||||||
* - Horizontal
|
|
||||||
* - Normal (default)
|
|
||||||
* - Small
|
|
||||||
* - Large
|
|
||||||
* - Inverse
|
|
||||||
* - SmallInverse
|
|
||||||
* - LargeInverse
|
|
||||||
*/
|
|
||||||
styleAttr: PropTypes.oneOf(STYLE_ATTRIBUTES),
|
|
||||||
/**
|
|
||||||
* Whether to show the ProgressBar (true, the default) or hide it (false).
|
|
||||||
*/
|
|
||||||
animating: PropTypes.bool,
|
|
||||||
/**
|
|
||||||
* If the progress bar will show indeterminate progress. Note that this
|
|
||||||
* can only be false if styleAttr is Horizontal.
|
|
||||||
*/
|
|
||||||
indeterminate: indeterminateType,
|
|
||||||
/**
|
|
||||||
* The progress value (between 0 and 1).
|
|
||||||
*/
|
|
||||||
progress: PropTypes.number,
|
|
||||||
/**
|
|
||||||
* Color of the progress bar.
|
|
||||||
*/
|
|
||||||
color: ColorPropType,
|
|
||||||
/**
|
|
||||||
* Used to locate this view in end-to-end tests.
|
|
||||||
*/
|
|
||||||
testID: PropTypes.string,
|
|
||||||
};
|
|
||||||
|
|
||||||
static defaultProps = {
|
ProgressBarAndroidToExport.defaultProps = {
|
||||||
styleAttr: 'Normal',
|
styleAttr: 'Normal',
|
||||||
indeterminate: true,
|
indeterminate: true,
|
||||||
animating: true,
|
animating: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
render() {
|
module.exports = (ProgressBarAndroidToExport: Class<NativeComponent<Props>>);
|
||||||
const {forwardedRef, ...props} = this.props;
|
|
||||||
return <AndroidProgressBar {...props} ref={forwardedRef} />;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const AndroidProgressBar = requireNativeComponent('AndroidProgressBar');
|
|
||||||
|
|
||||||
module.exports = React.forwardRef((props, ref) => (
|
|
||||||
<ProgressBarAndroid {...props} forwardedRef={ref} />
|
|
||||||
));
|
|
||||||
|
|
|
@ -250,7 +250,6 @@ SliderWithRef.defaultProps = {
|
||||||
maximumValue: 1,
|
maximumValue: 1,
|
||||||
step: 0,
|
step: 0,
|
||||||
};
|
};
|
||||||
SliderWithRef.displayName = 'Slider';
|
|
||||||
|
|
||||||
let styles;
|
let styles;
|
||||||
if (Platform.OS === 'ios') {
|
if (Platform.OS === 'ios') {
|
||||||
|
|
|
@ -45,7 +45,6 @@ if (__DEV__) {
|
||||||
</TextAncestor.Consumer>
|
</TextAncestor.Consumer>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
View.displayName = 'View'; // TODO(T30332650) remove bug workaround
|
|
||||||
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
||||||
ViewToExport = React.forwardRef(View);
|
ViewToExport = React.forwardRef(View);
|
||||||
}
|
}
|
||||||
|
|
|
@ -267,7 +267,6 @@ const Text = (
|
||||||
) => {
|
) => {
|
||||||
return <TouchableText {...props} forwardedRef={forwardedRef} />;
|
return <TouchableText {...props} forwardedRef={forwardedRef} />;
|
||||||
};
|
};
|
||||||
Text.displayName = 'Text'; // TODO(T30332650) remove bug workaround
|
|
||||||
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
||||||
const TextToExport = React.forwardRef(Text);
|
const TextToExport = React.forwardRef(Text);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue