vn-verdnaturachat/app/presentation/RoomItem.js

124 lines
2.3 KiB
JavaScript
Raw Normal View History

2017-08-09 01:40:55 +00:00
import React from 'react';
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
2017-08-09 01:40:55 +00:00
import PropTypes from 'prop-types';
import { View, Text, StyleSheet, TouchableOpacity } from 'react-native';
2017-09-01 20:20:34 +00:00
import Avatar from '../containers/Avatar';
2017-08-13 03:19:14 +00:00
import avatarInitialsAndColor from '../utils/avatarInitialsAndColor';
2017-08-09 01:40:55 +00:00
const styles = StyleSheet.create({
2017-08-09 18:01:54 +00:00
container: {
2017-08-17 19:31:27 +00:00
// flex: 1,
2017-08-09 18:01:54 +00:00
flexDirection: 'row',
paddingLeft: 16,
2017-08-17 19:31:27 +00:00
paddingRight: 16,
height: 56,
2017-08-09 18:01:54 +00:00
alignItems: 'center'
},
number: {
2017-08-09 20:08:50 +00:00
minWidth: 20,
2017-08-09 18:01:54 +00:00
borderRadius: 5,
backgroundColor: '#1d74f5',
2017-08-09 18:01:54 +00:00
color: '#fff',
textAlign: 'center',
overflow: 'hidden',
fontSize: 14,
2017-08-17 19:31:27 +00:00
paddingLeft: 5,
paddingRight: 5
2017-08-09 18:01:54 +00:00
},
roomName: {
2017-08-17 19:31:27 +00:00
flex: 1,
fontSize: 16,
color: '#444',
2017-08-17 19:31:27 +00:00
marginLeft: 16,
marginRight: 4
},
2017-08-13 03:19:14 +00:00
iconContainer: {
height: 40,
width: 40,
borderRadius: 20,
overflow: 'hidden',
justifyContent: 'center',
alignItems: 'center'
},
icon: {
fontSize: 20,
2017-08-13 23:19:27 +00:00
color: '#fff'
2017-08-13 03:19:14 +00:00
},
avatar: {
width: 40,
height: 40,
position: 'absolute',
borderRadius: 20
2017-08-13 03:19:14 +00:00
},
avatarInitials: {
2017-08-17 19:31:27 +00:00
fontSize: 20,
2017-08-13 03:19:14 +00:00
color: '#ffffff'
2017-08-09 01:40:55 +00:00
}
});
export default class RoomItem extends React.PureComponent {
static propTypes = {
2017-08-17 19:31:27 +00:00
type: PropTypes.string.isRequired,
name: PropTypes.string.isRequired,
unread: PropTypes.number,
2017-08-22 01:24:41 +00:00
baseUrl: PropTypes.string,
onPress: PropTypes.func
}
2017-08-17 19:31:27 +00:00
get icon() {
2017-08-17 19:31:27 +00:00
const { type, name, baseUrl } = this.props;
const icon = {
d: 'at',
c: 'pound',
p: 'lock',
l: 'account'
2017-08-17 19:31:27 +00:00
}[type];
2017-08-13 03:19:14 +00:00
if (!icon) {
return null;
}
2017-08-13 03:19:14 +00:00
2017-09-01 20:20:34 +00:00
const { color } = avatarInitialsAndColor(name);
2017-08-17 19:31:27 +00:00
if (type === 'd') {
2017-08-13 03:19:14 +00:00
return (
<Avatar text={name} baseUrl={baseUrl} size={40} borderRadius={20} />
2017-08-13 03:19:14 +00:00
);
}
return (
2017-08-13 23:19:27 +00:00
<View style={[styles.iconContainer, { backgroundColor: color }]}>
<MaterialCommunityIcons name={icon} style={styles.icon} />
2017-08-13 03:19:14 +00:00
</View>
);
2017-08-09 01:40:55 +00:00
}
2017-08-13 03:19:14 +00:00
2017-08-17 19:31:27 +00:00
renderNumber = (unread) => {
if (!unread || unread <= 0) {
return;
}
if (unread >= 1000) {
unread = '999+';
2017-08-09 18:01:54 +00:00
}
2017-08-17 19:31:27 +00:00
return (
<Text style={styles.number}>
{ unread }
</Text>
);
2017-08-09 18:01:54 +00:00
}
2017-08-09 01:40:55 +00:00
render() {
2017-08-22 01:24:41 +00:00
const { unread, name } = this.props;
2017-08-09 01:40:55 +00:00
return (
2017-08-22 01:24:41 +00:00
<TouchableOpacity onPress={this.props.onPress} style={styles.container}>
{this.icon}
2017-08-17 19:31:27 +00:00
<Text style={styles.roomName} ellipsizeMode='tail' numberOfLines={1}>{ name }</Text>
{this.renderNumber(unread)}
</TouchableOpacity>
2017-08-09 01:40:55 +00:00
);
}
}