vn-verdnaturachat/app/views/RoomView/Separator.js

78 lines
1.8 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { View, StyleSheet, Text } from 'react-native';
import PropTypes from 'prop-types';
import moment from 'moment';
2019-03-29 19:36:07 +00:00
import I18n from '../../i18n';
2019-03-29 19:36:07 +00:00
import sharedStyles from '../Styles';
import { COLOR_DANGER, COLOR_TEXT_DESCRIPTION } from '../../constants/colors';
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
2019-03-27 20:06:57 +00:00
marginTop: 16,
marginBottom: 4,
marginHorizontal: 14
},
line: {
2019-03-29 19:36:07 +00:00
backgroundColor: COLOR_TEXT_DESCRIPTION,
height: 1,
flex: 1
},
text: {
fontSize: 14,
2019-03-29 19:36:07 +00:00
...sharedStyles.textMedium,
...sharedStyles.textColorDescription
},
unreadLine: {
2019-03-29 19:36:07 +00:00
backgroundColor: COLOR_DANGER
},
unreadText: {
2019-03-29 19:36:07 +00:00
color: COLOR_DANGER
},
marginLeft: {
2019-03-29 19:36:07 +00:00
marginLeft: 14
},
marginRight: {
2019-03-29 19:36:07 +00:00
marginRight: 14
},
marginHorizontal: {
2019-03-29 19:36:07 +00:00
marginHorizontal: 14
}
});
2019-03-27 20:06:57 +00:00
const DateSeparator = React.memo(({ ts, unread }) => {
const date = ts ? moment(ts).format('MMM DD, YYYY') : null;
if (ts && unread) {
return (
<View style={styles.container}>
<Text style={[styles.text, styles.unreadText]}>{I18n.t('unread_messages')}</Text>
<View style={[styles.line, styles.unreadLine, styles.marginHorizontal]} />
<Text style={[styles.text, styles.unreadText]}>{date}</Text>
</View>
);
}
if (ts) {
return (
<View style={styles.container}>
<View style={styles.line} />
<Text style={[styles.text, styles.marginLeft]}>{date}</Text>
</View>
);
}
return (
<View style={styles.container}>
<Text style={[styles.text, styles.unreadText, styles.marginRight]}>{I18n.t('unread_messages')}</Text>
<View style={[styles.line, styles.unreadLine]} />
</View>
);
2019-03-27 20:06:57 +00:00
});
DateSeparator.propTypes = {
ts: PropTypes.instanceOf(Date),
unread: PropTypes.bool
};
export default DateSeparator;