summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/floating_timestamp.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/floating_timestamp.jsx')
-rw-r--r--webapp/components/post_view/floating_timestamp.jsx53
1 files changed, 53 insertions, 0 deletions
diff --git a/webapp/components/post_view/floating_timestamp.jsx b/webapp/components/post_view/floating_timestamp.jsx
new file mode 100644
index 000000000..f0f6af60e
--- /dev/null
+++ b/webapp/components/post_view/floating_timestamp.jsx
@@ -0,0 +1,53 @@
+// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import {FormattedDate} from 'react-intl';
+
+import React from 'react';
+import PropTypes from 'prop-types';
+
+export default class FloatingTimestamp extends React.PureComponent {
+ static propTypes = {
+ isScrolling: PropTypes.bool.isRequired,
+ isMobile: PropTypes.bool,
+ createAt: PropTypes.number,
+ isRhsPost: PropTypes.bool
+ }
+
+ render() {
+ if (!this.props.isMobile) {
+ return <noscript/>;
+ }
+
+ if (this.props.createAt === 0) {
+ return <noscript/>;
+ }
+
+ const dateString = (
+ <FormattedDate
+ value={this.props.createAt}
+ weekday='short'
+ day='2-digit'
+ month='short'
+ year='numeric'
+ />
+ );
+
+ let className = 'post-list__timestamp';
+ if (this.props.isScrolling) {
+ className += ' scrolling';
+ }
+
+ if (this.props.isRhsPost) {
+ className += ' rhs';
+ }
+
+ return (
+ <div className={className}>
+ <div>
+ <span>{dateString}</span>
+ </div>
+ </div>
+ );
+ }
+}