mirror of
https://github.com/status-im/react-native.git
synced 2025-02-23 22:58:19 +00:00
Summary: Related to #21581 . Removed createReactClass from the Libraries/Components/ProgressViewIOS/ProgressViewIOS.ios.js - [x] npm run prettier - [x] npm run flow-check-ios - [x] npm run flow-check-android [GENERAL] [ENHANCEMENT] [Libraries/Components/ProgressViewIOS/ProgressViewIOS.ios.js] - remove createReactClass dependency Pull Request resolved: https://github.com/facebook/react-native/pull/21887 Differential Revision: D10491704 Pulled By: RSNara fbshipit-source-id: a38f87b9c151aaac8885edd22ce852ee2f2cf746
87 lines
1.9 KiB
JavaScript
87 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const React = require('React');
|
|
const StyleSheet = require('StyleSheet');
|
|
|
|
const requireNativeComponent = require('requireNativeComponent');
|
|
|
|
import type {NativeComponent} from 'ReactNative';
|
|
import type {ImageSource} from 'ImageSource';
|
|
import type {ColorValue} from 'StyleSheetTypes';
|
|
import type {ViewProps} from 'ViewPropTypes';
|
|
|
|
type Props = $ReadOnly<{|
|
|
...ViewProps,
|
|
|
|
/**
|
|
* The progress bar style.
|
|
*/
|
|
progressViewStyle?: ?('default' | 'bar'),
|
|
|
|
/**
|
|
* The progress value (between 0 and 1).
|
|
*/
|
|
progress?: ?number,
|
|
|
|
/**
|
|
* The tint color of the progress bar itself.
|
|
*/
|
|
progressTintColor?: ?ColorValue,
|
|
|
|
/**
|
|
* The tint color of the progress bar track.
|
|
*/
|
|
trackTintColor?: ?ColorValue,
|
|
|
|
/**
|
|
* A stretchable image to display as the progress bar.
|
|
*/
|
|
progressImage?: ?ImageSource,
|
|
|
|
/**
|
|
* A stretchable image to display behind the progress bar.
|
|
*/
|
|
trackImage?: ?ImageSource,
|
|
|}>;
|
|
|
|
type NativeProgressViewIOS = Class<NativeComponent<Props>>;
|
|
|
|
const RCTProgressView = ((requireNativeComponent(
|
|
'RCTProgressView',
|
|
): any): NativeProgressViewIOS);
|
|
|
|
/**
|
|
* Use `ProgressViewIOS` to render a UIProgressView on iOS.
|
|
*/
|
|
const ProgressViewIOS = (
|
|
props: Props,
|
|
forwardedRef?: ?React.Ref<typeof RCTProgressView>,
|
|
) => (
|
|
<RCTProgressView
|
|
{...props}
|
|
style={[styles.progressView, props.style]}
|
|
ref={forwardedRef}
|
|
/>
|
|
);
|
|
|
|
const styles = StyleSheet.create({
|
|
progressView: {
|
|
height: 2,
|
|
},
|
|
});
|
|
|
|
// $FlowFixMe - TODO T29156721 `React.forwardRef` is not defined in Flow, yet.
|
|
const ProgressViewIOSWithRef = React.forwardRef(ProgressViewIOS);
|
|
|
|
module.exports = (ProgressViewIOSWithRef: NativeProgressViewIOS);
|