import { useRecoilState, useRecoilValue } from 'recoil'; import { Skeleton } from 'antd'; import { FC, useEffect, useState } from 'react'; import dynamic from 'next/dynamic'; import { LOCAL_STORAGE_KEYS, getLocalStorage, setLocalStorage } from '../../../utils/localStorage'; import isPushNotificationSupported from '../../../utils/browserPushNotifications'; import { clientConfigStateAtom, chatMessagesAtom, currentUserAtom, isChatAvailableSelector, isChatVisibleSelector, appStateAtom, isOnlineSelector, isMobileAtom, serverStatusState, } from '../../stores/ClientConfigStore'; import { ClientConfig } from '../../../interfaces/client-config.model'; import { CustomPageContent } from '../CustomPageContent/CustomPageContent'; import styles from './Content.module.scss'; import { Sidebar } from '../Sidebar/Sidebar'; import { Footer } from '../Footer/Footer'; import { ActionButtonRow } from '../../action-buttons/ActionButtonRow/ActionButtonRow'; import { ActionButton } from '../../action-buttons/ActionButton/ActionButton'; import { OfflineBanner } from '../OfflineBanner/OfflineBanner'; import { AppStateOptions } from '../../stores/application-state'; import { FollowButton } from '../../action-buttons/FollowButton'; import { NotifyButton } from '../../action-buttons/NotifyButton'; import { ContentHeader } from '../../common/ContentHeader/ContentHeader'; import { ServerStatus } from '../../../interfaces/server-status.model'; import { Statusbar } from '../Statusbar/Statusbar'; import { ChatMessage } from '../../../interfaces/chat-message.model'; import { ExternalAction } from '../../../interfaces/external-action'; import { Modal } from '../Modal/Modal'; import { ActionButtonMenu } from '../../action-buttons/ActionButtonMenu/ActionButtonMenu'; // Lazy loaded components const FollowerCollection = dynamic( () => import('../followers/FollowerCollection/FollowerCollection').then( mod => mod.FollowerCollection, ), { ssr: false, }, ); const FollowModal = dynamic( () => import('../../modals/FollowModal/FollowModal').then(mod => mod.FollowModal), { ssr: false, }, ); const BrowserNotifyModal = dynamic( () => import('../../modals/BrowserNotifyModal/BrowserNotifyModal').then( mod => mod.BrowserNotifyModal, ), { ssr: false, }, ); const NotifyReminderPopup = dynamic( () => import('../NotifyReminderPopup/NotifyReminderPopup').then(mod => mod.NotifyReminderPopup), { ssr: false, }, ); const OwncastPlayer = dynamic( () => import('../../video/OwncastPlayer/OwncastPlayer').then(mod => mod.OwncastPlayer), { ssr: false, }, ); const ChatContainer = dynamic( () => import('../../chat/ChatContainer/ChatContainer').then(mod => mod.ChatContainer), { ssr: false, }, ); const Tabs = dynamic(() => import('antd').then(mod => mod.Tabs), { ssr: false, }); const DesktopContent = ({ name, streamTitle, summary, tags, socialHandles, extraPageContent, setShowFollowModal, supportFediverseFeatures, }) => { const aboutTabContent = ; const followersTabContent = (
setShowFollowModal(true)} />
); const items = [{ label: 'About', key: '2', children: aboutTabContent }]; if (supportFediverseFeatures) { items.push({ label: 'Followers', key: '3', children: followersTabContent }); } return ( <>
{items.length > 1 ? : aboutTabContent}
); }; const MobileContent = ({ name, streamTitle, summary, tags, socialHandles, extraPageContent, messages, currentUser, showChat, actions, setExternalActionToDisplay, setShowNotifyPopup, setShowFollowModal, supportFediverseFeatures, supportsBrowserNotifications, }) => { if (!currentUser) { return ; } const { id, displayName } = currentUser; const chatContent = showChat && ( ); const aboutTabContent = ( <> ); const followersTabContent = ( setShowFollowModal(true)} /> ); const items = [ showChat && { label: 'Chat', key: '0', children: chatContent }, { label: 'About', key: '2', children: aboutTabContent }, { label: 'Followers', key: '3', children: followersTabContent }, ]; const replacementTabBar = (props, DefaultTabBar) => (
setShowNotifyPopup(true)} followItemSelected={() => setShowFollowModal(true)} />
); return (
); }; const ExternalModal = ({ externalActionToDisplay, setExternalActionToDisplay }) => { const { title, description, url } = externalActionToDisplay; return ( setExternalActionToDisplay(null)} /> ); }; export const Content: FC = () => { const appState = useRecoilValue(appStateAtom); const clientConfig = useRecoilValue(clientConfigStateAtom); const isChatVisible = useRecoilValue(isChatVisibleSelector); const isChatAvailable = useRecoilValue(isChatAvailableSelector); const currentUser = useRecoilValue(currentUserAtom); const [isMobile, setIsMobile] = useRecoilState(isMobileAtom); const messages = useRecoilValue(chatMessagesAtom); const online = useRecoilValue(isOnlineSelector); const { viewerCount, lastConnectTime, lastDisconnectTime, streamTitle } = useRecoilValue(serverStatusState); const { extraPageContent, version, name, summary, socialHandles, tags, externalActions, offlineMessage, chatDisabled, federation, notifications, } = clientConfig; const [showNotifyReminder, setShowNotifyReminder] = useState(false); const [showNotifyModal, setShowNotifyModal] = useState(false); const [showFollowModal, setShowFollowModal] = useState(false); const { account: fediverseAccount, enabled: fediverseEnabled } = federation; const { browser: browserNotifications } = notifications; const { enabled: browserNotificationsEnabled } = browserNotifications; const [externalActionToDisplay, setExternalActionToDisplay] = useState(null); const [supportsBrowserNotifications, setSupportsBrowserNotifications] = useState(false); const supportFediverseFeatures = fediverseEnabled; const externalActionSelected = (action: ExternalAction) => { const { openExternally, url } = action; if (openExternally) { window.open(url, '_blank'); } else { setExternalActionToDisplay(action); } }; const externalActionButtons = externalActions.map(action => ( )); const incrementVisitCounter = () => { let visits = parseInt(getLocalStorage(LOCAL_STORAGE_KEYS.userVisitCount), 10); if (Number.isNaN(visits)) { visits = 0; } setLocalStorage(LOCAL_STORAGE_KEYS.userVisitCount, visits + 1); if (visits > 2 && !getLocalStorage(LOCAL_STORAGE_KEYS.hasDisplayedNotificationModal)) { setShowNotifyReminder(true); } }; const disableNotifyReminderPopup = () => { setShowNotifyModal(false); setShowNotifyReminder(false); setLocalStorage(LOCAL_STORAGE_KEYS.hasDisplayedNotificationModal, true); }; const checkIfMobile = () => { const w = window.innerWidth; if (isMobile === undefined) { if (w <= 768) setIsMobile(true); else setIsMobile(false); } if (!isMobile && w <= 768) setIsMobile(true); if (isMobile && w > 768) setIsMobile(false); }; useEffect(() => { incrementVisitCounter(); checkIfMobile(); window.addEventListener('resize', checkIfMobile); return () => { window.removeEventListener('resize', checkIfMobile); }; }, []); useEffect(() => { // isPushNotificationSupported relies on `navigator` so that needs to be // fired from this useEffect. setSupportsBrowserNotifications(isPushNotificationSupported() && browserNotificationsEnabled); }, [browserNotificationsEnabled]); const showChat = !chatDisabled && isChatAvailable && isChatVisible; return ( <>
{appState.appLoading && } {online && } {!online && !appState.appLoading && ( setShowNotifyModal(true)} onFollowClick={() => setShowFollowModal(true)} /> )} {online && ( )}
{!isMobile && ( {externalActionButtons} {supportFediverseFeatures && ( setShowFollowModal(true)} /> )} {supportsBrowserNotifications && ( setShowNotifyModal(true)} notificationClosed={() => disableNotifyReminderPopup()} > setShowNotifyModal(true)} /> )} )} disableNotifyReminderPopup()} handleCancel={() => disableNotifyReminderPopup()} >
{isMobile ? ( ) : ( )} {!isMobile &&
}
{showChat && !isMobile && }
{externalActionToDisplay && ( )} setShowFollowModal(false)} width="550px" > setShowFollowModal(false)} /> ); }; export default Content;