77 lines
1.5 KiB
JavaScript
77 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
import moment from 'moment';
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
marginBottom: 2
|
|
},
|
|
username: {
|
|
color: '#0C0D0F',
|
|
fontWeight: '600',
|
|
fontSize: 16,
|
|
lineHeight: 22
|
|
},
|
|
titleContainer: {
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center'
|
|
},
|
|
alias: {
|
|
fontSize: 14,
|
|
color: '#9EA2A8',
|
|
paddingLeft: 6,
|
|
lineHeight: 16
|
|
},
|
|
time: {
|
|
fontSize: 12,
|
|
color: '#9EA2A8',
|
|
paddingLeft: 10,
|
|
fontWeight: '300',
|
|
lineHeight: 16
|
|
}
|
|
});
|
|
|
|
export default class User extends React.PureComponent {
|
|
static propTypes = {
|
|
timeFormat: PropTypes.string.isRequired,
|
|
username: PropTypes.string,
|
|
alias: PropTypes.string,
|
|
ts: PropTypes.oneOfType([
|
|
PropTypes.instanceOf(Date),
|
|
PropTypes.string
|
|
]),
|
|
temp: PropTypes.bool
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
username, alias, ts, temp, timeFormat
|
|
} = this.props;
|
|
|
|
const extraStyle = {};
|
|
if (temp) {
|
|
extraStyle.opacity = 0.3;
|
|
}
|
|
|
|
const aliasUsername = alias ? (<Text style={styles.alias}>@{username}</Text>) : null;
|
|
const time = moment(ts).format(timeFormat);
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<View style={styles.titleContainer}>
|
|
<Text style={styles.username}>
|
|
{alias || username}
|
|
</Text>
|
|
{aliasUsername}
|
|
</View>
|
|
<Text style={styles.time}>{time}</Text>
|
|
</View>
|
|
);
|
|
}
|
|
}
|