import { useEffect, useMemo, useRef } from 'react'; import { useParams } from 'react-router-dom'; import { useFeed, useSubplebbit } from '@plebbit/plebbit-react-hooks'; import { Virtuoso, VirtuosoHandle, StateSnapshot } from 'react-virtuoso'; import { useTranslation } from 'react-i18next'; import styles from './board.module.css'; import useFeedStateString from '../../hooks/use-feed-state-string'; import useReplyModal from '../../hooks/use-reply-modal'; import LoadingEllipsis from '../../components/loading-ellipsis'; import Post from '../../components/post'; import ReplyModal from '../../components/reply-modal'; import SubplebbitDescription from '../../components/subplebbit-description'; import SubplebbitRules from '../../components/subplebbit-rules'; const lastVirtuosoStates: { [key: string]: StateSnapshot } = {}; const Board = () => { const { t } = useTranslation(); const { subplebbitAddress } = useParams<{ subplebbitAddress: string }>(); const subplebbitAddresses = useMemo(() => [subplebbitAddress], [subplebbitAddress]) as string[]; const sortType = 'active'; const { feed, hasMore, loadMore } = useFeed({ subplebbitAddresses, sortType }); const subplebbit = useSubplebbit({ subplebbitAddress }); const { createdAt, description, rules, shortAddress, state, suggested, title } = subplebbit || {}; const { activeCid, closeModal, openReplyModal, showReplyModal, scrollY } = useReplyModal(); const loadingStateString = useFeedStateString(subplebbitAddresses) || t('loading'); const loadingString =
{state === 'failed' ? state : }
; const Footer = () => { let footerContent; if (feed.length === 0) { footerContent = t('no_posts'); } if (hasMore || subplebbitAddresses.length === 0) { footerContent = loadingString; } return
{footerContent}
; }; // save the last Virtuoso state to restore it when navigating back const virtuosoRef = useRef(null); useEffect(() => { const setLastVirtuosoState = () => { virtuosoRef.current?.getState((snapshot: StateSnapshot) => { if (snapshot?.ranges?.length) { lastVirtuosoStates[subplebbitAddress + sortType] = snapshot; } }); }; window.addEventListener('scroll', setLastVirtuosoState); return () => window.removeEventListener('scroll', setLastVirtuosoState); }, [subplebbitAddress, sortType]); const lastVirtuosoState = lastVirtuosoStates?.[subplebbitAddress + sortType]; useEffect(() => { document.title = title ? title : shortAddress; }, [title, shortAddress]); return (
{showReplyModal && activeCid && } {feed.length > 0 && ( <> {rules && rules.length > 0 && } {description && description.length > 0 && ( )} )} { const { deleted, locked, removed } = post || {}; const isThreadClosed = deleted || locked || removed; return alert(t('thread_closed_alert')) : openReplyModal} />; }} useWindowScroll={true} components={{ Footer }} endReached={loadMore} ref={virtuosoRef} restoreStateFrom={lastVirtuosoState} initialScrollTop={lastVirtuosoState?.scrollTop} />
); }; export default Board;