verdnatura-chat/app/views/SidebarView/SidebarItem.tsx

39 lines
1.1 KiB
TypeScript

import React from 'react';
import { Text, View } from 'react-native';
import Touch from '../../utils/touch';
import { themes } from '../../lib/constants';
import { TSupportedThemes, withTheme } from '../../theme';
import styles from './styles';
import { testProps } from '../../lib/methods/testProps';
interface SidebarItemProps {
left: JSX.Element;
right?: JSX.Element;
text: string;
current?: boolean;
onPress(): void;
testID: string;
theme: TSupportedThemes;
}
const Item = React.memo(({ left, right, text, onPress, testID, current, theme }: SidebarItemProps) => (
<Touch
key={testID}
{...testProps(testID)}
onPress={onPress}
theme={theme}
style={[styles.item, current && { backgroundColor: themes[theme].borderColor }]}
touchable>
<View style={styles.itemHorizontal}>{left}</View>
<View style={styles.itemCenter}>
<Text style={[styles.itemText, { color: themes[theme].titleText }]} numberOfLines={1} accessibilityLabel={text}>
{text}
</Text>
</View>
<View style={styles.itemHorizontal}>{right}</View>
</Touch>
));
export default withTheme(Item);