summaryrefslogtreecommitdiffstats
path: root/webapp/components/post_view/date_separator.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/post_view/date_separator.jsx')
-rw-r--r--webapp/components/post_view/date_separator.jsx32
1 files changed, 32 insertions, 0 deletions
diff --git a/webapp/components/post_view/date_separator.jsx b/webapp/components/post_view/date_separator.jsx
new file mode 100644
index 000000000..3f5184dbf
--- /dev/null
+++ b/webapp/components/post_view/date_separator.jsx
@@ -0,0 +1,32 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import {FormattedDate} from 'react-intl';
+
+export default class DateSeparator extends React.PureComponent {
+ static propTypes = {
+
+ /*
+ * The date to display in the separator
+ */
+ date: PropTypes.instanceOf(Date)
+ }
+
+ render() {
+ return (
+ <div
+ className='date-separator'
+ >
+ <hr className='separator__hr'/>
+ <div className='separator__text'>
+ <FormattedDate
+ value={this.props.date}
+ weekday='short'
+ month='short'
+ day='2-digit'
+ year='numeric'
+ />
+ </div>
+ </div>
+ );
+ }
+}