lbry-desktop/src/renderer/component/dateTime/view.jsx

52 lines
1.1 KiB
React
Raw Normal View History

import React from 'react';
class DateTime extends React.PureComponent {
static SHOW_DATE = 'date';
static SHOW_TIME = 'time';
static SHOW_BOTH = 'both';
2017-10-08 22:43:56 +02:00
static defaultProps = {
formatOptions: {
month: 'long',
day: 'numeric',
year: 'numeric',
2017-10-08 22:43:56 +02:00
},
};
componentWillMount() {
this.refreshDate(this.props);
}
componentWillReceiveProps(props) {
this.refreshDate(props);
}
refreshDate(props) {
const { block, date, fetchBlock } = props;
if (block && date === undefined) {
fetchBlock(block);
}
}
render() {
const { date, formatOptions } = this.props;
const show = this.props.show || DateTime.SHOW_BOTH;
2017-10-08 22:43:56 +02:00
const locale = app.i18n.getLocale();
return (
<span>
{date &&
(show == DateTime.SHOW_BOTH || show === DateTime.SHOW_DATE) &&
date.toLocaleDateString([locale, 'en-US'], formatOptions)}
{show == DateTime.SHOW_BOTH && ' '}
{date &&
(show == DateTime.SHOW_BOTH || show === DateTime.SHOW_TIME) &&
date.toLocaleTimeString()}
{!date && '...'}
</span>
);
}
}
export default DateTime;