diff --git a/web/src/routes/Events.jsx b/web/src/routes/Events.jsx index 16da884ec..c5517406f 100644 --- a/web/src/routes/Events.jsx +++ b/web/src/routes/Events.jsx @@ -22,6 +22,11 @@ import CalendarIcon from '../icons/Calendar'; import Calendar from '../components/Calendar'; import Button from '../components/Button'; import Dialog from '../components/Dialog'; +import { + fromUnixTime, + intervalToDuration, + formatDuration, +} from 'date-fns'; const API_LIMIT = 25; @@ -37,19 +42,14 @@ const monthsAgo = (num) => { return new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() / 1000; }; -const clipLength = (num) => { - let totalSeconds = num; - let hours = Math.floor(totalSeconds / 3600); - totalSeconds %= 3600; - let minutes = Math.floor(totalSeconds / 60); - let seconds = (totalSeconds % 60).toFixed(0); - let length=`${hours} Hours ${minutes} Minutes ${seconds} Seconds` - if (hours == 0 && minutes == 0) { - length=`${seconds} Seconds` - } else { - length=`${minutes} Minutes ${seconds} Seconds` +const clipLength = (start_time, end_time) => { + const start = fromUnixTime(start_time); + const end = fromUnixTime(end_time); + let duration = 'In Progress'; + if (end_time) { + duration = formatDuration(intervalToDuration({ start, end })); } - return length; + return duration; } export default function Events({ path, ...props }) { @@ -474,7 +474,7 @@ export default function Events({ path, ...props }) {