UNPKG

react-native-ui-lib

Version:

[![Build Status](https://travis-ci.org/wix/react-native-ui-lib.svg?branch=master)](https://travis-ci.org/wix/react-native-ui-lib) [![npm](https://img.shields.io/npm/v/react-native-ui-lib.svg)](https://www.npmjs.com/package/react-native-ui-lib) [![NPM Down

121 lines (107 loc) 3.05 kB
import React from 'react'; import PropTypes from 'prop-types'; import {View, StyleSheet} from 'react-native'; import * as Animatable from 'react-native-animatable'; import {Colors} from '../../style'; import {BaseComponent} from '../../commons'; import TouchableOpacity from '../../components/touchableOpacity'; import ListItemPart from './ListItemPart'; /** * @description: List item component to render inside a ListView component * @extends: TouchableOpacity * @extendslink: docs/TouchableOpacity * @gif: https://media.giphy.com/media/l1IBjHowyPcOTWAY8/giphy.gif * @example: https://github.com/wix/react-native-ui-lib/blob/master/demo/src/screens/listScreens/BasicListScreen.js */ class ListItem extends BaseComponent { static displayName = 'ListItem'; static propTypes = { /** * the list item height */ height: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), /** * action for when pressing the item */ onPress: PropTypes.func, /** * action for when long pressing the item */ onLongPress: PropTypes.func, /** * Additional styles for the top container */ containerStyle: PropTypes.oneOfType([PropTypes.object, PropTypes.number]), /** * The container element to wrap the ListItem */ containerElement: PropTypes.func, /** * Use to identify the ListItem in tests */ testID: PropTypes.string, }; static defaultProps = { height: 63, containerElement: TouchableOpacity, underlayColor: Colors.dark70, }; constructor(props) { super(props); this.state = { pressed: false, }; } generateStyles() { this.styles = createStyles(this.props); } render() { const { containerElement, containerStyle, style, onPress, onLongPress, underlayColor, testID, ...others } = this.props; const {pressed} = this.state; // const containerStyle = this.extractContainerStyle(this.props); const animationProps = this.extractAnimationProps(); const Container = (onPress || onLongPress) ? containerElement : View; const pressedStyle = {backgroundColor: underlayColor}; return ( <Container activeOpacity={1} style={[this.styles.container, containerStyle]} onPress={onPress} onLongPress={onLongPress} onHideUnderlay={() => this.setState({pressed: false})} onShowUnderlay={() => this.setState({pressed: true})} testID={testID} {...others} > <Animatable.View {...animationProps} style={[this.styles.innerContainer, style, pressed && pressedStyle]} > {this.props.children} </Animatable.View> </Container> ); } } function createStyles({height}) { return StyleSheet.create({ container: { backgroundColor: Colors.white, }, innerContainer: { flexDirection: 'row', height, }, }); } ListItem.Part = ListItemPart; export default ListItem;