mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
ref(chat): on web, move timestamp to chat message
This commit is contained in:
committed by
virtuacoplenny
parent
7187e540a8
commit
504fadaf71
@@ -3,7 +3,7 @@
|
||||
import React from 'react';
|
||||
import { Text, View } from 'react-native';
|
||||
|
||||
import { getLocalizedDateFormatter, translate } from '../../../base/i18n';
|
||||
import { translate } from '../../../base/i18n';
|
||||
import { Avatar } from '../../../base/participants';
|
||||
import { connect } from '../../../base/redux';
|
||||
|
||||
@@ -13,11 +13,6 @@ import AbstractChatMessage, {
|
||||
} from '../AbstractChatMessage';
|
||||
import styles from './styles';
|
||||
|
||||
/**
|
||||
* Formatter string to display the message timestamp.
|
||||
*/
|
||||
const TIMESTAMP_FORMAT = 'H:mm';
|
||||
|
||||
/**
|
||||
* Renders a single chat message.
|
||||
*/
|
||||
@@ -75,6 +70,8 @@ class ChatMessage extends AbstractChatMessage<Props> {
|
||||
);
|
||||
}
|
||||
|
||||
_getFormattedTimestamp: () => string;
|
||||
|
||||
/**
|
||||
* Renders the avatar of the sender.
|
||||
*
|
||||
@@ -112,11 +109,7 @@ class ChatMessage extends AbstractChatMessage<Props> {
|
||||
_renderTimestamp() {
|
||||
return (
|
||||
<Text style = { styles.timeText }>
|
||||
{
|
||||
getLocalizedDateFormatter(
|
||||
new Date(this.props.message.timestamp)
|
||||
).format(TIMESTAMP_FORMAT)
|
||||
}
|
||||
{ this._getFormattedTimestamp() }
|
||||
</Text>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user