import React from 'react';
import { View, StyleSheet, Text } from 'react-native';
import PropTypes from 'prop-types';
import moment from 'moment';
import I18n from '../../i18n';
const styles = StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
marginBottom: 25,
marginTop: 15,
marginHorizontal: 15,
transform: [{ scaleY: -1 }]
},
line: {
backgroundColor: '#9ea2a8',
height: 1,
flex: 1
},
text: {
color: '#9ea2a8',
fontSize: 14,
fontWeight: '600'
},
unreadLine: {
backgroundColor: '#f5455c'
},
unreadText: {
color: '#f5455c'
},
marginLeft: {
marginLeft: 15
},
marginRight: {
marginRight: 15
},
marginHorizontal: {
marginHorizontal: 15
}
});
const DateSeparator = ({ ts, unread }) => {
const date = ts ? moment(ts).format('MMM DD, YYYY') : null;
if (ts && unread) {
return (
{I18n.t('unread_messages')}
{date}
);
}
if (ts) {
return (
{date}
);
}
return (
{I18n.t('unread_messages')}
);
};
DateSeparator.propTypes = {
ts: PropTypes.instanceOf(Date),
unread: PropTypes.bool
};
export default DateSeparator;