2015-07-16 19:12:42 -04:00
|
|
|
/*
|
2016-01-06 23:17:56 -05:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2018-01-14 13:33:58 -05:00
|
|
|
Copyright 2018 Michael Telatynski <7t3chguy@gmail.com>
|
2015-07-16 19:12:42 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-05-23 09:12:53 -04:00
|
|
|
import React from 'react';
|
2018-01-14 13:33:58 -05:00
|
|
|
import PropTypes from 'prop-types';
|
2017-09-06 12:36:43 -04:00
|
|
|
import { _t } from 'matrix-react-sdk/lib/languageHandler';
|
2018-01-14 13:33:58 -05:00
|
|
|
import {formatFullDateNoTime} from 'matrix-react-sdk/lib/DateUtils';
|
2017-09-06 12:36:43 -04:00
|
|
|
|
|
|
|
function getdaysArray() {
|
|
|
|
return [
|
|
|
|
_t('Sunday'),
|
|
|
|
_t('Monday'),
|
|
|
|
_t('Tuesday'),
|
|
|
|
_t('Wednesday'),
|
|
|
|
_t('Thursday'),
|
|
|
|
_t('Friday'),
|
|
|
|
_t('Saturday'),
|
|
|
|
];
|
|
|
|
}
|
2015-07-16 19:12:42 -04:00
|
|
|
|
2018-01-14 13:41:44 -05:00
|
|
|
export default class DateSeparator extends React.Component {
|
2018-01-14 13:33:58 -05:00
|
|
|
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();
|
2017-09-06 12:36:43 -04:00
|
|
|
yesterday.setDate(today.getDate() - 1);
|
2018-01-14 13:33:58 -05:00
|
|
|
|
2017-09-06 12:36:43 -04:00
|
|
|
if (date.toDateString() === today.toDateString()) {
|
2018-01-14 13:33:58 -05:00
|
|
|
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);
|
2017-09-06 12:36:43 -04:00
|
|
|
}
|
2018-01-14 13:33:58 -05:00
|
|
|
}
|
2017-09-06 12:36:43 -04:00
|
|
|
|
2018-01-14 13:33:58 -05:00
|
|
|
render() {
|
|
|
|
return <h2 className="mx_DateSeparator">{ this.getLabel() }</h2>;
|
2017-09-06 12:36:43 -04:00
|
|
|
}
|
2018-01-14 13:33:58 -05:00
|
|
|
}
|