aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Date.tsx
blob: f9e0a0b2a20e411056ddfc6820427df5c4314f55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import moment from 'moment';
import React from 'react';
import Moment from 'react-moment';

import Tooltip from '@material-ui/core/Tooltip/Tooltip';

const HOUR = 1000 * 3600;
const DAY = 24 * HOUR;
const WEEK = 7 * DAY;

type Props = { date: string };
const Date = ({ date }: Props) => (
  <Tooltip title={moment(date).format('LLLL')}>
    <Moment date={date} format="on ll" fromNowDuring={WEEK} />
  </Tooltip>
);

export default Date;