import { useTranslation } from 'react-i18next'; import { Link, useLocation, useNavigate, useParams } from 'react-router-dom'; import { useAccountComment, useSubscribe } from '@plebbit/plebbit-react-hooks'; import useSubplebbitsStore from '@plebbit/plebbit-react-hooks/dist/stores/subplebbits'; import useSubplebbitsPagesStore from '@plebbit/plebbit-react-hooks/dist/stores/subplebbits-pages'; import { isAllView, isCatalogView, isDescriptionView, isModView, isPendingPostView, isPostPageView, isSubscriptionsView } from '../../lib/utils/view-utils'; import { useDefaultSubplebbits } from '../../hooks/use-default-subplebbits'; import { getBoardPath } from '../../lib/utils/route-utils'; import { useResolvedSubplebbitAddress } from '../../hooks/use-resolved-subplebbit-address'; import useCatalogFiltersStore from '../../stores/use-catalog-filters-store'; import useCatalogStyleStore from '../../stores/use-catalog-style-store'; import useFeedResetStore from '../../stores/use-feed-reset-store'; import useSortingStore from '../../stores/use-sorting-store'; import useCountLinksInReplies from '../../hooks/use-count-links-in-replies'; import useIsMobile from '../../hooks/use-is-mobile'; import useTimeFilter from '../../hooks/use-time-filter'; import CatalogFilters from '../catalog-filters'; import CatalogSearch from '../catalog-search'; import Tooltip from '../tooltip'; import styles from './board-buttons.module.css'; import _ from 'lodash'; interface BoardButtonsProps { address?: string | undefined; isInAllView?: boolean; isInCatalogView?: boolean; isInSubscriptionsView?: boolean; isInModView?: boolean; isTopbar?: boolean; } const CatalogButton = ({ address, isInAllView, isInSubscriptionsView, isInModView }: BoardButtonsProps) => { const { t } = useTranslation(); const params = useParams(); const defaultSubplebbits = useDefaultSubplebbits(); const createCatalogLink = () => { if (isInAllView) { if (params?.timeFilterName) return `/all/catalog/${params.timeFilterName}`; return `/all/catalog`; } else if (isInSubscriptionsView) { if (params?.timeFilterName) return `/subscriptions/catalog/${params.timeFilterName}`; return `/subscriptions/catalog`; } else if (isInModView) { if (params?.timeFilterName) return `/mod/catalog/${params.timeFilterName}`; return `/mod/catalog`; } const boardPath = address ? getBoardPath(address, defaultSubplebbits) : address; return `/${boardPath}/catalog`; }; return ( ); }; const SubscribeButton = ({ address }: BoardButtonsProps) => { const { t } = useTranslation(); const { subscribed, subscribe, unsubscribe } = useSubscribe({ subplebbitAddress: address }); return ( ); }; const ReturnButton = ({ address, isInAllView, isInSubscriptionsView, isInModView }: BoardButtonsProps) => { const { t } = useTranslation(); const params = useParams(); const defaultSubplebbits = useDefaultSubplebbits(); const createReturnLink = () => { if (isInAllView) { if (params?.timeFilterName) return `/all/${params.timeFilterName}`; return `/all`; } else if (isInSubscriptionsView) { if (params?.timeFilterName) return `/subscriptions/${params.timeFilterName}`; return `/subscriptions`; } else if (isInModView) { if (params?.timeFilterName) return `/mod/${params.timeFilterName}`; return `/mod`; } const boardPath = address ? getBoardPath(address, defaultSubplebbits) : address; return `/${boardPath}`; }; return ( ); }; const RefreshButton = () => { const { t } = useTranslation(); const reset = useFeedResetStore((state) => state.reset); return ( ); }; const UpdateButton = () => { const { t } = useTranslation(); const isMobile = useIsMobile(); const handleManualUpdate = () => { window.alert('Manual updates are not available yet. Posts update automatically every ~2 minutes.'); }; return ( <> {/* TODO: Implement update button once available in API */} {isMobile ? ( ) : ( )} ); }; const AutoButton = () => { const { t } = useTranslation(); const isMobile = useIsMobile(); const handleManualUpdate = () => { window.alert('Manual updates are not available yet. Posts update automatically every ~2 minutes.'); }; return ( <> {isMobile ? ( ) : ( )} ); }; const SortOptions = () => { const { t } = useTranslation(); const { sortType, setSortType } = useSortingStore(); const handleSortChange = (event: React.ChangeEvent) => { const type = event.target.value as 'active' | 'new'; setSortType(type); }; return ( <> {t('sort_by')} ); }; const ImageSizeOptions = () => { const { t } = useTranslation(); const { imageSize, setImageSize } = useCatalogStyleStore(); return ( <> {t('image_size')}:  ); }; const ShowOPCommentOption = () => { const { t } = useTranslation(); const { showOPComment, setShowOPComment } = useCatalogStyleStore(); return ( <> {t('show_op_comment')}:  ); }; export const TimeFilter = ({ isInAllView, isInCatalogView, isInSubscriptionsView, isInModView, isTopbar = false }: BoardButtonsProps) => { const { t } = useTranslation(); const navigate = useNavigate(); const { timeFilterName, timeFilterNames } = useTimeFilter(); const changeTimeFilter = (event: React.ChangeEvent) => { const timeFilterName = event.target.value; const link = isInAllView ? isInCatalogView ? `/all/catalog/${timeFilterName}` : `/all/${timeFilterName}` : isInSubscriptionsView ? isInCatalogView ? `/subscriptions/catalog/${timeFilterName}` : `/subscriptions/${timeFilterName}` : isInModView ? isInCatalogView ? `/mod/catalog/${timeFilterName}` : `/mod/${timeFilterName}` : null; link && navigate(link); }; const { sortType } = useSortingStore(); const allTimeFilterNames = timeFilterName ? Array.from(new Set([timeFilterName, ...timeFilterNames])) : timeFilterNames; return ( <> {!isTopbar ? ( <> {isInCatalogView ? (sortType === 'active' ? t('last_bumped') : t('newer_than')) : t('last_bumped')}:  ) : ( <> )} ); }; export const MobileBoardButtons = () => { const { t } = useTranslation(); const params = useParams(); const location = useLocation(); const isInAllView = isAllView(location.pathname); const isInCatalogView = isCatalogView(location.pathname, params); const isInPendingPostPage = isPendingPostView(location.pathname, params); const isInPostView = isPostPageView(location.pathname, params); const isInSubscriptionsView = isSubscriptionsView(location.pathname, useParams()); const isInModView = isModView(location.pathname); const accountComment = useAccountComment({ commentIndex: params?.accountCommentIndex as any }); const resolvedAddress = useResolvedSubplebbitAddress(); const subplebbitAddress = resolvedAddress || accountComment?.subplebbitAddress; const { filteredCount, searchText } = useCatalogFiltersStore(); return (
{isInPostView || isInPendingPostPage ? ( <>
) : ( <> {isInCatalogView ? ( ) : ( )} {!(isInAllView || isInSubscriptionsView || isInModView) && } {isInCatalogView && searchText ? ( {' '} — {t('search_results_for')}: {searchText} ) : ( isInCatalogView && filteredCount > 0 && ( {' '} — {t('filtered_threads')}: {filteredCount} ) )} {isInCatalogView && ( <>
)} )}
); }; const PostPageStats = () => { const { t } = useTranslation(); const params = useParams(); const location = useLocation(); const isInDescriptionView = isDescriptionView(location.pathname, params); const resolvedAddress = useResolvedSubplebbitAddress(); const comment = useSubplebbitsPagesStore((state) => state.comments[params?.commentCid as string]); const subplebbit = useSubplebbitsStore((state) => state.subplebbits[resolvedAddress as string]); const descriptionReplyCount = location?.pathname.startsWith('/all/') ? 0 : subplebbit?.rules?.length > 0 ? 1 : 0; const { closed, pinned, replyCount } = comment || {}; const linkCount = useCountLinksInReplies(comment); const displayReplyCount = replyCount !== undefined ? replyCount.toString() : isInDescriptionView ? descriptionReplyCount : '?'; const replyCountTooltip = replyCount !== undefined || isInDescriptionView ? _.capitalize(t('replies')) : t('loading'); return ( {(pinned || isInDescriptionView) && `${_.capitalize(t('sticky'))} / `} {(closed || isInDescriptionView) && `${_.capitalize(t('closed'))} / `} / ); }; export const DesktopBoardButtons = () => { const { t } = useTranslation(); const params = useParams(); const location = useLocation(); const accountComment = useAccountComment({ commentIndex: params?.accountCommentIndex as any }); const resolvedAddress = useResolvedSubplebbitAddress(); const subplebbitAddress = resolvedAddress || accountComment?.subplebbitAddress; const isInCatalogView = isCatalogView(location.pathname, params); const isInAllView = isAllView(location.pathname); const isInPendingPostPage = isPendingPostView(location.pathname, params); const isInPostView = isPostPageView(location.pathname, params); const isInSubscriptionsView = isSubscriptionsView(location.pathname, useParams()); const isInModView = isModView(location.pathname); const { filteredCount, searchText } = useCatalogFiltersStore(); return ( <>
{isInPostView || isInPendingPostPage ? ( <> [ ] [ ] [ ] [ ] ) : ( <> {isInCatalogView ? ( <> [ ]{' '} ) : ( <> [ ]{' '} )} [] {isInCatalogView && searchText ? ( {' '} — {t('search_results_for')}: {searchText} ) : ( isInCatalogView && filteredCount > 0 && ( {' '} — {t('filtered_threads')}: {filteredCount} ) )} {isInCatalogView && ( <> )} {(isInAllView || isInSubscriptionsView || isInModView) && ( )} {!(isInAllView || isInSubscriptionsView || isInModView) && ( <> [ ] )}{' '} {isInCatalogView && ( <> [] )} )}
); }; const SearchOPsBar = () => { const { t } = useTranslation(); const navigate = useNavigate(); const params = useParams(); const location = useLocation(); const isInAllView = isAllView(location.pathname); const isInSubscriptionsView = isSubscriptionsView(location.pathname, useParams()); const isInModView = isModView(location.pathname); const defaultSubplebbits = useDefaultSubplebbits(); const resolvedAddress = useResolvedSubplebbitAddress(); const boardPath = resolvedAddress ? getBoardPath(resolvedAddress, defaultSubplebbits) : params?.boardIdentifier || params?.subplebbitAddress; const handleSearch = (event: React.KeyboardEvent) => { if (event.key === 'Enter') { const searchQuery = (event.target as HTMLInputElement).value.trim(); if (searchQuery) { let catalogUrl = ''; if (isInAllView) { catalogUrl = params?.timeFilterName ? `/all/catalog/${params.timeFilterName}?q=${encodeURIComponent(searchQuery)}` : `/all/catalog?q=${encodeURIComponent(searchQuery)}`; } else if (isInSubscriptionsView) { catalogUrl = params?.timeFilterName ? `/subscriptions/catalog/${params.timeFilterName}?q=${encodeURIComponent(searchQuery)}` : `/subscriptions/catalog?q=${encodeURIComponent(searchQuery)}`; } else if (isInModView) { catalogUrl = params?.timeFilterName ? `/mod/catalog/${params.timeFilterName}?q=${encodeURIComponent(searchQuery)}` : `/mod/catalog?q=${encodeURIComponent(searchQuery)}`; } else { catalogUrl = `/${boardPath}/catalog?q=${encodeURIComponent(searchQuery)}`; } navigate(catalogUrl); } } }; return ; };