owncast/web/components/ui/OfflineBanner/OfflineBanner.tsx

83 lines
2.5 KiB
TypeScript

/* eslint-disable jsx-a11y/click-events-have-key-events */
import { Divider } from 'antd';
import { ClockCircleOutlined } from '@ant-design/icons';
import { FC } from 'react';
import formatDistanceToNow from 'date-fns/formatDistanceToNow';
import styles from './OfflineBanner.module.scss';
export type OfflineBannerProps = {
streamName: string;
customText?: string;
lastLive?: Date;
notificationsEnabled: boolean;
fediverseAccount?: string;
onNotifyClick?: () => void;
onFollowClick?: () => void;
};
export const OfflineBanner: FC<OfflineBannerProps> = ({
streamName,
customText,
lastLive,
notificationsEnabled,
fediverseAccount,
onNotifyClick,
onFollowClick,
}) => {
let text;
if (customText) {
text = customText;
} else if (!customText && notificationsEnabled && fediverseAccount) {
text = (
<span>
This stream is offline. You can{' '}
<span role="link" tabIndex={0} className={styles.actionLink} onClick={onNotifyClick}>
be notified
</span>{' '}
the next time {streamName} goes live or{' '}
<span role="link" tabIndex={0} className={styles.actionLink} onClick={onFollowClick}>
follow
</span>{' '}
{fediverseAccount} on the Fediverse.
</span>
);
} else if (!customText && notificationsEnabled) {
text = (
<span>
This stream is offline.{' '}
<span role="link" tabIndex={0} className={styles.actionLink} onClick={onNotifyClick}>
Be notified
</span>{' '}
the next time {streamName} goes live.
</span>
);
} else if (!customText && fediverseAccount) {
text = (
<span>
This stream is offline.{' '}
<span role="link" tabIndex={0} className={styles.actionLink} onClick={onFollowClick}>
Follow
</span>{' '}
{fediverseAccount} on the Fediverse to see the next time {streamName} goes live.
</span>
);
} else {
text = `This stream is offline. Check back soon!`;
}
return (
<div className={styles.outerContainer}>
<div className={styles.innerContainer}>
<div className={styles.header}>{streamName}</div>
<Divider className={styles.separator} />
<div className={styles.bodyText}>{text}</div>
{lastLive && (
<div className={styles.lastLiveDate}>
<ClockCircleOutlined className={styles.clockIcon} />
{`Last live ${formatDistanceToNow(new Date(lastLive))} ago.`}
</div>
)}
</div>
</div>
);
};