Rocket.Chat.ReactNative/app/views/SidebarView/SidebarItem.js

38 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-03-12 16:23:06 +00:00
import React from 'react';
import { Text, View } from 'react-native';
2019-03-12 16:23:06 +00:00
import PropTypes from 'prop-types';
2019-12-04 16:39:53 +00:00
import Touch from '../../utils/touch';
import { themes } from '../../constants/colors';
import { withTheme } from '../../theme';
import styles from './styles';
2019-03-12 16:23:06 +00:00
const Item = React.memo(({ left, right, text, onPress, testID, current, theme }) => (
2019-12-04 16:39:53 +00:00
<Touch
2019-03-12 16:23:06 +00:00
key={testID}
testID={testID}
onPress={onPress}
2019-12-04 16:39:53 +00:00
theme={theme}
style={[styles.item, current && { backgroundColor: themes[theme].borderColor }]}>
<View style={styles.itemHorizontal}>{left}</View>
2019-03-12 16:23:06 +00:00
<View style={styles.itemCenter}>
<Text style={[styles.itemText, { color: themes[theme].titleText }]} numberOfLines={1}>
2019-03-12 16:23:06 +00:00
{text}
</Text>
</View>
<View style={styles.itemHorizontal}>{right}</View>
2019-12-04 16:39:53 +00:00
</Touch>
2019-03-12 16:23:06 +00:00
));
Item.propTypes = {
left: PropTypes.element,
right: PropTypes.element,
2019-03-12 16:23:06 +00:00
text: PropTypes.string,
current: PropTypes.bool,
onPress: PropTypes.func,
2019-12-04 16:39:53 +00:00
testID: PropTypes.string,
theme: PropTypes.string
2019-03-12 16:23:06 +00:00
};
2019-12-04 16:39:53 +00:00
export default withTheme(Item);