Rocket.Chat.ReactNative/app/presentation/UserItem.tsx

80 lines
1.9 KiB
TypeScript
Raw Normal View History

import React from 'react';
// @ts-ignore
import { Pressable, StyleSheet, Text, View } from 'react-native';
import Avatar from '../containers/Avatar';
import { CustomIcon } from '../lib/Icons';
2019-03-29 19:36:07 +00:00
import sharedStyles from '../views/Styles';
2019-12-04 16:39:53 +00:00
import { themes } from '../constants/colors';
import { isIOS } from '../utils/deviceInfo';
const styles = StyleSheet.create({
button: {
2019-12-04 16:39:53 +00:00
height: 54
},
container: {
flexDirection: 'row'
},
avatar: {
marginHorizontal: 15,
marginVertical: 12
},
textContainer: {
flex: 1,
2019-03-29 19:36:07 +00:00
flexDirection: 'column',
justifyContent: 'center',
marginRight: 15
},
name: {
2019-03-29 19:36:07 +00:00
fontSize: 17,
2019-12-04 16:39:53 +00:00
...sharedStyles.textMedium
},
username: {
fontSize: 14,
2019-12-04 16:39:53 +00:00
...sharedStyles.textRegular
},
icon: {
marginHorizontal: 15,
2019-12-04 16:39:53 +00:00
alignSelf: 'center'
}
});
interface IUserItem {
name: string;
username: string;
onPress(): void;
testID: string;
onLongPress(): void;
style: any;
icon: string;
theme: string;
}
const UserItem = ({ name, username, onPress, testID, onLongPress, style, icon, theme }: IUserItem) => (
<Pressable
onPress={onPress}
onLongPress={onLongPress}
testID={testID}
android_ripple={{
color: themes[theme].bannerBackground
}}
style={({ pressed }: any) => ({
backgroundColor: isIOS && pressed ? themes[theme].bannerBackground : 'transparent'
})}>
<View style={[styles.container, styles.button, style]}>
<Avatar text={username} size={30} style={styles.avatar} />
<View style={styles.textContainer}>
<Text style={[styles.name, { color: themes[theme].titleText }]} numberOfLines={1}>
{name}
</Text>
<Text style={[styles.username, { color: themes[theme].auxiliaryText }]} numberOfLines={1}>
@{username}
</Text>
</View>
{icon ? <CustomIcon name={icon} size={22} style={[styles.icon, { color: themes[theme].actionTintColor }]} /> : null}
</View>
</Pressable>
);
export default UserItem;