50 lines
914 B
JavaScript
50 lines
914 B
JavaScript
|
import React from 'react';
|
||
|
import { Text } from 'react-native';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
import styles from './styles';
|
||
|
import { themes } from '../../constants/colors';
|
||
|
import { capitalize } from '../../utils/room';
|
||
|
|
||
|
const UpdatedAt = React.memo(({
|
||
|
roomUpdatedAt, date, theme, hideUnreadStatus, alert
|
||
|
}) => {
|
||
|
if (!roomUpdatedAt) {
|
||
|
return null;
|
||
|
}
|
||
|
return (
|
||
|
<Text
|
||
|
style={[
|
||
|
styles.date,
|
||
|
{
|
||
|
color:
|
||
|
themes[theme]
|
||
|
.auxiliaryText
|
||
|
},
|
||
|
alert && !hideUnreadStatus && [
|
||
|
styles.updateAlert,
|
||
|
{
|
||
|
color:
|
||
|
themes[theme]
|
||
|
.tintColor
|
||
|
}
|
||
|
]
|
||
|
]}
|
||
|
ellipsizeMode='tail'
|
||
|
numberOfLines={1}
|
||
|
>
|
||
|
{capitalize(date)}
|
||
|
</Text>
|
||
|
);
|
||
|
});
|
||
|
|
||
|
UpdatedAt.propTypes = {
|
||
|
roomUpdatedAt: PropTypes.instanceOf(Date),
|
||
|
date: PropTypes.string,
|
||
|
theme: PropTypes.string,
|
||
|
hideUnreadStatus: PropTypes.bool,
|
||
|
alert: PropTypes.bool
|
||
|
};
|
||
|
|
||
|
export default UpdatedAt;
|