2022-05-08 02:13:06 +03:00
|
|
|
import formatDistanceToNow from 'date-fns/formatDistanceToNow';
|
2022-05-09 04:41:22 +03:00
|
|
|
import intervalToDuration from 'date-fns/intervalToDuration';
|
2022-09-07 10:00:28 +03:00
|
|
|
import { FC, useEffect, useState } from 'react';
|
2023-01-16 09:31:36 +03:00
|
|
|
import dynamic from 'next/dynamic';
|
2023-02-09 05:50:58 +03:00
|
|
|
import classNames from 'classnames';
|
2022-09-07 10:00:28 +03:00
|
|
|
import styles from './Statusbar.module.scss';
|
2023-02-01 05:46:20 +03:00
|
|
|
import { pluralize } from '../../../utils/helpers';
|
2022-05-08 02:13:06 +03:00
|
|
|
|
2023-01-16 09:31:36 +03:00
|
|
|
// Lazy loaded components
|
|
|
|
|
|
|
|
const EyeFilled = dynamic(() => import('@ant-design/icons/EyeFilled'), {
|
|
|
|
ssr: false,
|
|
|
|
});
|
|
|
|
|
2022-09-07 10:00:28 +03:00
|
|
|
export type StatusbarProps = {
|
2022-05-08 02:13:06 +03:00
|
|
|
online: Boolean;
|
|
|
|
lastConnectTime?: Date;
|
|
|
|
lastDisconnectTime?: Date;
|
|
|
|
viewerCount: number;
|
2023-02-09 05:50:58 +03:00
|
|
|
className?: string;
|
2022-09-07 10:00:28 +03:00
|
|
|
};
|
2022-05-09 04:41:22 +03:00
|
|
|
|
|
|
|
function makeDurationString(lastConnectTime: Date): string {
|
2023-02-01 05:46:20 +03:00
|
|
|
const DAY_LABEL = 'day';
|
|
|
|
const HOUR_LABEL = 'hour';
|
|
|
|
const MINUTE_LABEL = 'minute';
|
|
|
|
const SECOND_LABEL = 'second';
|
2022-05-09 04:41:22 +03:00
|
|
|
const diff = intervalToDuration({ start: lastConnectTime, end: new Date() });
|
2023-02-01 05:46:20 +03:00
|
|
|
|
|
|
|
if (diff.days >= 1) {
|
|
|
|
return `${diff.days} ${pluralize(DAY_LABEL, diff.days)}
|
|
|
|
${diff.hours} ${pluralize(HOUR_LABEL, diff.hours)}`;
|
2022-05-09 04:41:22 +03:00
|
|
|
}
|
|
|
|
if (diff.hours >= 1) {
|
2023-02-01 05:46:20 +03:00
|
|
|
return `${diff.hours} ${pluralize(HOUR_LABEL, diff.hours)} ${diff.minutes}
|
|
|
|
${pluralize(MINUTE_LABEL, diff.minutes)}`;
|
2022-05-09 04:41:22 +03:00
|
|
|
}
|
|
|
|
|
2023-02-01 05:46:20 +03:00
|
|
|
return `${diff.minutes} ${pluralize(MINUTE_LABEL, diff.minutes)}
|
|
|
|
${diff.seconds} ${pluralize(SECOND_LABEL, diff.seconds)}`;
|
2022-05-09 04:41:22 +03:00
|
|
|
}
|
2022-09-07 10:00:28 +03:00
|
|
|
|
|
|
|
export const Statusbar: FC<StatusbarProps> = ({
|
|
|
|
online,
|
|
|
|
lastConnectTime,
|
|
|
|
lastDisconnectTime,
|
|
|
|
viewerCount,
|
2023-02-09 05:50:58 +03:00
|
|
|
className,
|
2022-09-07 10:00:28 +03:00
|
|
|
}) => {
|
2022-05-09 04:41:22 +03:00
|
|
|
const [, setNow] = useState(new Date());
|
2022-05-08 02:13:06 +03:00
|
|
|
|
2022-05-09 04:41:22 +03:00
|
|
|
// Set a timer to update the status bar.
|
2022-05-08 02:13:06 +03:00
|
|
|
useEffect(() => {
|
|
|
|
const interval = setInterval(() => setNow(new Date()), 1000);
|
|
|
|
return () => {
|
|
|
|
clearInterval(interval);
|
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
let onlineMessage = '';
|
2022-05-17 09:20:56 +03:00
|
|
|
let rightSideMessage: any;
|
2022-05-08 02:13:06 +03:00
|
|
|
if (online && lastConnectTime) {
|
2022-05-09 04:41:22 +03:00
|
|
|
const duration = makeDurationString(new Date(lastConnectTime));
|
|
|
|
onlineMessage = online ? `Live for ${duration}` : 'Offline';
|
2022-06-26 10:46:55 +03:00
|
|
|
rightSideMessage = viewerCount > 0 && (
|
2022-10-13 22:22:58 +03:00
|
|
|
<div className={styles.right}>
|
|
|
|
<span>
|
|
|
|
<EyeFilled />
|
|
|
|
</span>
|
|
|
|
<span>{` ${viewerCount}`}</span>
|
|
|
|
</div>
|
2022-05-17 09:20:56 +03:00
|
|
|
);
|
2022-06-26 10:46:55 +03:00
|
|
|
} else if (!online) {
|
2022-05-08 02:13:06 +03:00
|
|
|
onlineMessage = 'Offline';
|
|
|
|
if (lastDisconnectTime) {
|
2022-05-11 01:36:09 +03:00
|
|
|
rightSideMessage = `Last live ${formatDistanceToNow(new Date(lastDisconnectTime))} ago.`;
|
2022-05-08 02:13:06 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
2023-02-09 05:50:58 +03:00
|
|
|
<div className={classNames(styles.statusbar, className)} role="status">
|
2022-05-08 02:13:06 +03:00
|
|
|
<div>{onlineMessage}</div>
|
|
|
|
<div>{rightSideMessage}</div>
|
|
|
|
</div>
|
|
|
|
);
|
2022-09-07 10:00:28 +03:00
|
|
|
};
|
|
|
|
export default Statusbar;
|
2022-05-08 02:13:06 +03:00
|
|
|
|
|
|
|
Statusbar.defaultProps = {
|
|
|
|
lastConnectTime: null,
|
2022-05-09 04:41:22 +03:00
|
|
|
lastDisconnectTime: null,
|
2022-05-08 02:13:06 +03:00
|
|
|
};
|