aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Date.tsx
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2020-02-13 00:53:29 +0100
committerQuentin Gliech <quentingliech@gmail.com>2020-02-13 00:53:29 +0100
commit8b85780d76ad45675582f4478eedb026b7ac25e1 (patch)
treeb6ffdc651259ec08ca608cb01acdf1dababccb55 /webui/src/components/Date.tsx
parent680dd91c0c0200bd4948173df0b601e16f511e6e (diff)
downloadgit-bug-8b85780d76ad45675582f4478eedb026b7ac25e1.tar.gz
webui: start reorganizing the component structure
Diffstat (limited to 'webui/src/components/Date.tsx')
-rw-r--r--webui/src/components/Date.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/webui/src/components/Date.tsx b/webui/src/components/Date.tsx
new file mode 100644
index 00000000..a830546c
--- /dev/null
+++ b/webui/src/components/Date.tsx
@@ -0,0 +1,17 @@
+import Tooltip from '@material-ui/core/Tooltip/Tooltip';
+import moment from 'moment';
+import React from 'react';
+import Moment from 'react-moment';
+
+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('MMMM D, YYYY, h:mm a')}>
+ <Moment date={date} fromNowDuring={WEEK} />
+ </Tooltip>
+);
+
+export default Date;