mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
f97395f40f
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
|
import {formatFullDateNoTime} from 'matrix-react-sdk/lib/DateUtils';
|
|
|
|
function getdaysArray() {
|
|
return [
|
|
_t('Sunday'),
|
|
_t('Monday'),
|
|
_t('Tuesday'),
|
|
_t('Wednesday'),
|
|
_t('Thursday'),
|
|
_t('Friday'),
|
|
_t('Saturday'),
|
|
];
|
|
}
|
|
|
|
export default class DateSeparator extends React.Component {
|
|
static propTypes = {
|
|
ts: PropTypes.number.isRequired,
|
|
};
|
|
|
|
getLabel() {
|
|
const date = new Date(this.props.ts);
|
|
const today = new Date();
|
|
const yesterday = new Date();
|
|
const days = getdaysArray();
|
|
yesterday.setDate(today.getDate() - 1);
|
|
|
|
if (date.toDateString() === today.toDateString()) {
|
|
return _t('Today');
|
|
} else if (date.toDateString() === yesterday.toDateString()) {
|
|
return _t('Yesterday');
|
|
} else if (today.getTime() - date.getTime() < 6 * 24 * 60 * 60 * 1000) {
|
|
return days[date.getDay()];
|
|
} else {
|
|
return formatFullDateNoTime(date);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
return <h2 className="mx_DateSeparator">{ this.getLabel() }</h2>;
|
|
}
|
|
}
|