2017-08-09 01:40:55 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-08-09 19:02:09 +00:00
|
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
|
|
import { CachedImage } from 'react-native-img-cache';
|
2017-08-10 14:27:28 +00:00
|
|
|
import { emojify } from 'react-emojione';
|
2017-08-10 16:25:50 +00:00
|
|
|
import Markdown from 'react-native-easy-markdown';
|
2017-08-09 01:40:55 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
message: {
|
2017-08-10 15:16:47 +00:00
|
|
|
padding: 12,
|
|
|
|
paddingTop: 6,
|
|
|
|
paddingBottom: 6,
|
2017-08-09 01:40:55 +00:00
|
|
|
flexDirection: 'row',
|
|
|
|
transform: [{ scaleY: -1 }]
|
2017-08-09 02:20:34 +00:00
|
|
|
},
|
2017-08-09 19:02:09 +00:00
|
|
|
avatarContainer: {
|
2017-08-10 15:16:47 +00:00
|
|
|
backgroundColor: '#eee',
|
2017-08-09 02:20:34 +00:00
|
|
|
width: 40,
|
|
|
|
height: 40,
|
|
|
|
marginRight: 10,
|
|
|
|
borderRadius: 5
|
|
|
|
},
|
2017-08-09 19:02:09 +00:00
|
|
|
avatar: {
|
|
|
|
width: 40,
|
|
|
|
height: 40,
|
2017-08-10 15:26:14 +00:00
|
|
|
borderRadius: 5,
|
|
|
|
position: 'absolute'
|
|
|
|
},
|
|
|
|
avatarInitials: {
|
|
|
|
margin: 2,
|
|
|
|
textAlign: 'center',
|
|
|
|
lineHeight: 36,
|
|
|
|
fontSize: 22,
|
|
|
|
color: '#ffffff'
|
2017-08-09 19:02:09 +00:00
|
|
|
},
|
2017-08-09 02:20:34 +00:00
|
|
|
texts: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
msg: {
|
|
|
|
flex: 1
|
|
|
|
},
|
|
|
|
username: {
|
|
|
|
fontWeight: 'bold',
|
|
|
|
marginBottom: 5
|
2017-08-09 01:40:55 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-08-10 15:26:14 +00:00
|
|
|
const colors = ['#F44336', '#E91E63', '#9C27B0', '#673AB7', '#3F51B5', '#2196F3', '#03A9F4', '#00BCD4', '#009688', '#4CAF50', '#8BC34A', '#CDDC39', '#FFC107', '#FF9800', '#FF5722', '#795548', '#9E9E9E', '#607D8B'];
|
|
|
|
|
2017-08-09 01:40:55 +00:00
|
|
|
export default class Message extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
|
|
item: PropTypes.object.isRequired,
|
|
|
|
baseUrl: PropTypes.string.isRequired
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const extraStyle = {};
|
|
|
|
if (this.props.item.temp) {
|
|
|
|
extraStyle.opacity = 0.3;
|
|
|
|
}
|
|
|
|
|
2017-08-10 20:09:54 +00:00
|
|
|
const msg = emojify(this.props.item.msg, { output: 'unicode' });
|
2017-08-10 14:27:28 +00:00
|
|
|
|
2017-08-10 15:26:14 +00:00
|
|
|
let username = this.props.item.u.username;
|
|
|
|
const position = username.length % colors.length;
|
|
|
|
|
|
|
|
const color = colors[position];
|
|
|
|
username = username.replace(/[^A-Za-z0-9]/g, '.').replace(/\.+/g, '.').replace(/(^\.)|(\.$)/g, '');
|
|
|
|
|
|
|
|
const usernameParts = username.split('.');
|
|
|
|
|
|
|
|
let initials = usernameParts.length > 1 ? usernameParts[0][0] + usernameParts[usernameParts.length - 1][0] : username.replace(/[^A-Za-z0-9]/g, '').substr(0, 2);
|
|
|
|
initials = initials.toUpperCase();
|
2017-08-09 01:40:55 +00:00
|
|
|
return (
|
|
|
|
<View style={[styles.message, extraStyle]}>
|
2017-08-10 15:26:14 +00:00
|
|
|
<View style={[styles.avatarContainer, { backgroundColor: color }]}>
|
|
|
|
<Text style={styles.avatarInitials}>{initials}</Text>
|
2017-08-09 19:02:09 +00:00
|
|
|
<CachedImage style={styles.avatar} source={{ uri: `${ this.props.baseUrl }/avatar/${ this.props.item.u.username }` }} />
|
|
|
|
</View>
|
2017-08-09 01:40:55 +00:00
|
|
|
<View style={styles.texts}>
|
|
|
|
<Text onPress={this._onPress} style={styles.username}>
|
|
|
|
{this.props.item.u.username}
|
|
|
|
</Text>
|
2017-08-10 14:27:28 +00:00
|
|
|
<Markdown>
|
|
|
|
{msg}
|
|
|
|
</Markdown>
|
2017-08-09 01:40:55 +00:00
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|