mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 17:54:48 +00:00
1151c096da
Summary: This change drops the year from the copyright headers and the LICENSE file. Reviewed By: yungsters Differential Revision: D9727774 fbshipit-source-id: df4fc1e4390733fe774b1a160dd41b4a3d83302a
66 lines
1.9 KiB
JavaScript
66 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 DeprecatedViewPropTypes = require('DeprecatedViewPropTypes');
|
|
const Image = require('Image');
|
|
const React = require('React');
|
|
const Text = require('Text');
|
|
const TouchableHighlight = require('TouchableHighlight');
|
|
const View = require('View');
|
|
|
|
import type {ImageSource} from 'ImageSource';
|
|
|
|
/**
|
|
* Standard set of quick action buttons that can, if the user chooses, be used
|
|
* with SwipeableListView. Each button takes an image and text with optional
|
|
* formatting.
|
|
*/
|
|
class SwipeableQuickActionButton extends React.Component<{
|
|
accessibilityLabel?: string,
|
|
imageSource?: ?(ImageSource | number),
|
|
imageStyle?: ?DeprecatedViewPropTypes.style,
|
|
mainView?: ?React.Node,
|
|
onPress?: Function,
|
|
style?: ?DeprecatedViewPropTypes.style,
|
|
testID?: string,
|
|
text?: ?(string | Object | Array<string | Object>),
|
|
textStyle?: ?DeprecatedViewPropTypes.style,
|
|
}> {
|
|
render(): React.Node {
|
|
if (!this.props.imageSource && !this.props.text && !this.props.mainView) {
|
|
return null;
|
|
}
|
|
const mainView = this.props.mainView ? (
|
|
this.props.mainView
|
|
) : (
|
|
<View style={this.props.style}>
|
|
<Image
|
|
accessibilityLabel={this.props.accessibilityLabel}
|
|
source={this.props.imageSource}
|
|
style={this.props.imageStyle}
|
|
/>
|
|
<Text style={this.props.textStyle}>{this.props.text}</Text>
|
|
</View>
|
|
);
|
|
return (
|
|
<TouchableHighlight
|
|
onPress={this.props.onPress}
|
|
testID={this.props.testID}
|
|
underlayColor="transparent">
|
|
<View style={this.props.style}>{mainView}</View>
|
|
</TouchableHighlight>
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = SwipeableQuickActionButton;
|