Files
5chan/src/components/board-buttons/board-buttons.tsx
T

651 lines
23 KiB
TypeScript
Raw Normal View History

2024-04-03 22:52:27 +02:00
import { useTranslation } from 'react-i18next';
import { Link, useLocation, useNavigate, useParams } from 'react-router-dom';
import { useAccountComment, useSubscribe } from '@plebbit/plebbit-react-hooks';
import useSubplebbitsPagesStore from '@plebbit/plebbit-react-hooks/dist/stores/subplebbits-pages';
2026-01-07 16:03:02 +01:00
import { isAllView, isCatalogView, isModView, isModQueueView, isPendingPostView, isPostPageView, isSubscriptionsView } from '../../lib/utils/view-utils';
import { useDirectories } from '../../hooks/use-directories';
import { getBoardPath, isDirectoryBoard } from '../../lib/utils/route-utils';
import { useResolvedSubplebbitAddress } from '../../hooks/use-resolved-subplebbit-address';
import useCatalogFiltersStore from '../../stores/use-catalog-filters-store';
2024-06-20 15:00:31 +02:00
import useCatalogStyleStore from '../../stores/use-catalog-style-store';
2024-05-31 10:41:44 +02:00
import useFeedResetStore from '../../stores/use-feed-reset-store';
2024-06-20 15:00:31 +02:00
import useSortingStore from '../../stores/use-sorting-store';
2025-12-29 16:18:59 +01:00
import useAllFeedFilterStore from '../../stores/use-all-feed-filter-store';
import useModQueueStore from '../../stores/use-mod-queue-store';
import useFeedViewSettingsStore from '../../stores/use-feed-view-settings-store';
import useCountLinksInReplies from '../../hooks/use-count-links-in-replies';
import useIsMobile from '../../hooks/use-is-mobile';
import CatalogFilters from '../catalog-filters';
import CatalogSearch from '../catalog-search';
import Tooltip from '../tooltip';
2026-01-08 16:43:14 +01:00
import { ModQueueButton } from '../../views/mod-queue/mod-queue';
import styles from './board-buttons.module.css';
import capitalize from 'lodash/capitalize';
interface BoardButtonsProps {
address?: string | undefined;
2024-06-09 16:50:51 +02:00
isInAllView?: boolean;
2024-04-12 17:47:30 +02:00
isInCatalogView?: boolean;
2024-05-17 16:39:02 +02:00
isInSubscriptionsView?: boolean;
isInModView?: boolean;
2026-01-07 16:03:02 +01:00
isInModQueueView?: boolean;
2024-06-09 16:50:51 +02:00
isTopbar?: boolean;
}
export const CatalogButton = ({ address, isInAllView, isInSubscriptionsView, isInModView }: BoardButtonsProps) => {
const { t } = useTranslation();
2024-06-11 15:13:04 +02:00
const params = useParams();
const directories = useDirectories();
2024-06-11 15:13:04 +02:00
const createCatalogLink = () => {
if (isInAllView) return `/all/catalog`;
if (isInSubscriptionsView) return `/subs/catalog`;
if (isInModView) return `/mod/catalog`;
let boardPath = '';
if (address) {
boardPath = getBoardPath(address, directories);
} else if (Array.isArray(directories) && directories.length > 0 && directories[0]?.address) {
boardPath = getBoardPath(directories[0].address, directories);
}
return `/${boardPath}/catalog`;
2024-06-11 15:13:04 +02:00
};
2024-05-17 21:27:06 +02:00
return (
<button className='button'>
2024-06-11 15:13:04 +02:00
<Link to={createCatalogLink()}>{t('catalog')}</Link>
2024-05-17 21:27:06 +02:00
</button>
);
};
const SubscribeButton = ({ address }: BoardButtonsProps) => {
const { t } = useTranslation();
const { subscribed, subscribe, unsubscribe } = useSubscribe({ subplebbitAddress: address });
return (
<button className='button' onClick={subscribed ? unsubscribe : subscribe}>
{subscribed ? t('unsubscribe') : t('subscribe')}
</button>
);
};
export const ReturnButton = ({ address, isInAllView, isInSubscriptionsView, isInModView, isInModQueueView }: BoardButtonsProps) => {
2024-04-03 22:52:27 +02:00
const { t } = useTranslation();
2024-06-11 15:13:04 +02:00
const params = useParams();
const directories = useDirectories();
2024-06-11 15:13:04 +02:00
const createReturnLink = () => {
if (isInAllView) return `/all`;
if (isInSubscriptionsView) return `/subs`;
if (isInModQueueView) {
2026-01-07 16:03:02 +01:00
// If in mod queue view, return to /mod or /:boardIdentifier
if (params?.boardIdentifier) {
return `/${params.boardIdentifier}`;
}
return `/mod`;
2024-06-11 15:13:04 +02:00
}
if (isInModView) return `/mod`;
let boardPath = '';
if (address) {
boardPath = getBoardPath(address, directories);
} else if (Array.isArray(directories) && directories.length > 0 && directories[0]?.address) {
boardPath = getBoardPath(directories[0].address, directories);
}
return `/${boardPath}`;
2024-06-11 15:13:04 +02:00
};
2024-04-03 22:52:27 +02:00
return (
<button className='button'>
2024-06-11 15:13:04 +02:00
<Link to={createReturnLink()}>{t('return')}</Link>
2024-04-03 22:52:27 +02:00
</button>
);
};
const VoteButton = () => {
const { t } = useTranslation();
const params = useParams();
const directories = useDirectories();
// Get the boardIdentifier from params (try boardIdentifier first, then subplebbitAddress for backward compatibility)
const boardIdentifier = params.boardIdentifier || params.subplebbitAddress;
// Only render the vote button if we're on a directory board route
if (!boardIdentifier || !isDirectoryBoard(boardIdentifier, directories)) {
return null;
}
2026-02-15 20:35:20 +08:00
const values = { boardIdentifier };
const message = `${t('vote_button_unavailable_intro', values)}\n\n${t('vote_button_unavailable_outro', values)}`;
return (
2026-02-15 20:35:20 +08:00
<button className={`button ${styles.disabledButton}`} onClick={() => window.alert(message)}>
{t('vote')}
</button>
);
};
const RefreshButton = () => {
2024-05-31 17:09:20 +02:00
const { t } = useTranslation();
const reset = useFeedResetStore((state) => state.reset);
2024-04-03 22:52:27 +02:00
return (
<button className='button' onClick={() => reset && reset()}>
2024-05-31 17:09:20 +02:00
{t('refresh')}
2024-04-03 22:52:27 +02:00
</button>
);
};
export const UpdateButton = () => {
const { t } = useTranslation();
const reset = useFeedResetStore((state) => state.reset);
return (
<button className='button' onClick={() => reset?.()}>
{t('update')}
</button>
);
};
export const AutoButton = () => {
const { t } = useTranslation();
const isMobile = useIsMobile();
const handleAutoClick = () => {
window.alert(t('posts_auto_update_info'));
2025-03-03 23:43:45 +01:00
};
return (
<>
{isMobile ? (
<button className='button' onClick={handleAutoClick}>
<label>
<input type='checkbox' className={styles.autoCheckbox} checked disabled />
{t('Auto')}
</label>
</button>
) : (
<label onClick={handleAutoClick}>
{' '}
<input type='checkbox' className={styles.autoCheckbox} checked disabled /> {t('Auto')}
</label>
)}
</>
);
};
const BottomButton = () => {
const { t } = useTranslation();
const handleClick = () => {
window.scrollTo({ top: document.documentElement.scrollHeight, behavior: 'instant' });
};
return (
<button className='button' onClick={handleClick}>
{t('bottom')}
</button>
);
};
export const TopButton = () => {
const { t } = useTranslation();
const handleClick = () => {
window.scrollTo({ top: 0, left: 0, behavior: 'instant' });
};
return (
<button className='button' onClick={handleClick}>
{t('top')}
</button>
);
};
2024-05-31 18:18:42 +02:00
const SortOptions = () => {
const { t } = useTranslation();
const { sortType, setSortType } = useSortingStore();
2024-05-31 18:18:42 +02:00
const handleSortChange = (event: React.ChangeEvent<HTMLSelectElement>) => {
const type = event.target.value as 'active' | 'new';
setSortType(type);
};
return (
<>
2024-09-04 20:48:20 +02:00
<span>{t('sort_by')}</span>:&nbsp;
2024-06-22 10:32:19 +02:00
<select className='capitalize' value={sortType} onChange={handleSortChange}>
<option value='active'>{t('bump_order')}</option>
<option value='new'>{t('creation_date')}</option>
2024-06-01 18:13:41 +02:00
</select>
2024-05-31 18:18:42 +02:00
</>
);
};
const ImageSizeOptions = () => {
2024-06-22 10:32:19 +02:00
const { t } = useTranslation();
const { imageSize, setImageSize } = useCatalogStyleStore();
return (
<>
2024-09-04 20:48:20 +02:00
<span>{t('image_size')}:</span>&nbsp;
2024-06-22 10:32:19 +02:00
<select className='capitalize' value={imageSize} onChange={(e) => setImageSize(e.target.value as 'Small' | 'Large')}>
<option value='Small'>{t('small')}</option>
<option value='Large'>{t('large')}</option>
</select>
</>
);
};
const MAX_ALERT_THRESHOLD = 10000; // Maximum threshold value in minutes (~166 hours)
const ModQueueAlertThreshold = () => {
const { t } = useTranslation();
const { alertThresholdValue, alertThresholdUnit, setAlertThreshold } = useModQueueStore();
const handleThresholdChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const inputValue = e.target.value.trim();
// Handle empty input - allow it temporarily for better UX
if (inputValue === '') {
return;
}
// Parse safely
const parsedValue = parseInt(inputValue, 10);
// Default to 1 if invalid or NaN
if (isNaN(parsedValue) || parsedValue < 1) {
setAlertThreshold(1, alertThresholdUnit);
return;
}
// Convert to minutes for clamping, then convert back to current unit
const valueInMinutes = alertThresholdUnit === 'hours' ? parsedValue * 60 : parsedValue;
const clampedMinutes = Math.min(valueInMinutes, MAX_ALERT_THRESHOLD);
const finalValue = alertThresholdUnit === 'hours' ? Math.round(clampedMinutes / 60) : clampedMinutes;
setAlertThreshold(finalValue, alertThresholdUnit);
};
const handleThresholdBlur = (e: React.FocusEvent<HTMLInputElement>) => {
const inputValue = e.target.value.trim();
// If empty or invalid, restore to current value or default to 1
if (inputValue === '' || isNaN(parseInt(inputValue, 10))) {
const safeValue = alertThresholdValue >= 1 ? alertThresholdValue : 1;
setAlertThreshold(safeValue, alertThresholdUnit);
}
};
return (
<div className={styles.modQueueControls}>
<label>
{t('alert_threshold')}:
<input
type='number'
min='1'
step='1'
value={alertThresholdValue}
onChange={handleThresholdChange}
onBlur={handleThresholdBlur}
className={styles.alertThresholdInput}
/>
<select
value={alertThresholdUnit}
onChange={(e) => {
const newUnit = e.target.value as 'hours' | 'minutes';
const newValue =
alertThresholdUnit === 'hours' && newUnit === 'minutes'
? alertThresholdValue * 60
: alertThresholdUnit === 'minutes' && newUnit === 'hours'
? Math.round(alertThresholdValue / 60)
: alertThresholdValue;
setAlertThreshold(Math.max(1, newValue), newUnit);
}}
>
<option value='minutes'>{t('minutes')}</option>
<option value='hours'>{t('hours')}</option>
</select>
</label>
</div>
);
};
const ModQueueViewSelector = () => {
const { t } = useTranslation();
const { viewMode, setViewMode } = useModQueueStore();
return (
<div className={styles.modQueueControls}>
<label>
{t('modQueue.viewLabel')}:
<select value={viewMode} onChange={(e) => setViewMode(e.target.value as 'compact' | 'feed')}>
<option value='compact'>{t('modQueue.compact')}</option>
<option value='feed'>{t('modQueue.feed')}</option>
</select>
</label>
</div>
);
};
const ShowOPCommentOption = () => {
2024-06-22 10:32:19 +02:00
const { t } = useTranslation();
const { showOPComment, setShowOPComment } = useCatalogStyleStore();
return (
<>
2024-09-04 20:48:20 +02:00
<span>{t('show_op_comment')}:</span>&nbsp;
2024-06-22 10:32:19 +02:00
<select className='capitalize' value={showOPComment ? 'On' : 'Off'} onChange={(e) => setShowOPComment(e.target.value === 'On')}>
<option value='Off'>{t('off')}</option>
<option value='On'>{t('on')}</option>
</select>
</>
);
};
2025-12-29 16:18:59 +01:00
const AllFeedFilter = () => {
const { t } = useTranslation();
const { filter, setFilter } = useAllFeedFilterStore();
return (
<>
<span>{t('show')}</span>:&nbsp;
<select className='capitalize' value={filter} onChange={(e) => setFilter(e.target.value as 'all' | 'nsfw' | 'sfw')}>
<option value='all'>{t('all_boards')}</option>
<option value='nsfw'>{t('nsfw_boards_only')}</option>
<option value='sfw'>{t('worksafe_boards_only')}</option>
2025-12-29 16:18:59 +01:00
</select>
</>
);
};
export const MobileBoardButtons = () => {
2024-09-10 19:19:39 +02:00
const { t } = useTranslation();
2024-04-25 22:02:55 +02:00
const params = useParams();
const location = useLocation();
2024-10-29 17:40:09 +01:00
const isInAllView = isAllView(location.pathname);
const isInCatalogView = isCatalogView(location.pathname, params);
2024-04-25 22:02:55 +02:00
const isInPendingPostPage = isPendingPostView(location.pathname, params);
2024-05-17 17:25:25 +02:00
const isInPostView = isPostPageView(location.pathname, params);
const isInSubscriptionsView = isSubscriptionsView(location.pathname, useParams());
const isInModView = isModView(location.pathname);
2026-01-07 16:03:02 +01:00
const isInModQueueView = isModQueueView(location.pathname);
2024-05-17 17:25:25 +02:00
const accountComment = useAccountComment({ commentIndex: params?.accountCommentIndex as any });
const resolvedAddress = useResolvedSubplebbitAddress();
const subplebbitAddress = resolvedAddress || accountComment?.subplebbitAddress;
2024-04-25 22:02:55 +02:00
2025-03-06 16:27:09 +01:00
const { filteredCount, searchText } = useCatalogFiltersStore();
const enableInfiniteScroll = useFeedViewSettingsStore((state) => state.enableInfiniteScroll);
const isMultiboard = isInAllView || isInSubscriptionsView || isInModView;
const effectiveInfiniteScroll = isMultiboard || enableInfiniteScroll;
const showBottomButton = (isInCatalogView || isInPostView || isInPendingPostPage) && !effectiveInfiniteScroll;
// Check if we should show the vote button (only for directory boards)
const directories = useDirectories();
const boardIdentifier = params.boardIdentifier || params.subplebbitAddress;
const showVoteButton = boardIdentifier && isDirectoryBoard(boardIdentifier, directories);
return (
2024-06-30 11:47:09 +02:00
<div className={`${styles.mobileBoardButtons} ${!isInCatalogView ? styles.addMargin : ''}`}>
{isInPostView || isInPendingPostPage ? (
<>
<ReturnButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />
<CatalogButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />
{showBottomButton && <BottomButton />}
<div className={styles.secondRow}>
<UpdateButton />
<AutoButton />
</div>
</>
2026-01-07 16:03:02 +01:00
) : isInModQueueView ? (
<>
<ReturnButton
address={subplebbitAddress}
isInAllView={isInAllView}
isInSubscriptionsView={isInSubscriptionsView}
isInModView={isInModView}
isInModQueueView={isInModQueueView}
/>
<RefreshButton />
<ModQueueAlertThreshold />
<ModQueueViewSelector />
2026-01-07 16:03:02 +01:00
</>
2024-04-03 22:52:27 +02:00
) : (
<>
{isInCatalogView ? (
<ReturnButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />
) : (
<CatalogButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />
)}
{showVoteButton && <VoteButton />}
{!(isInAllView || isInSubscriptionsView || isInModView) && <SubscribeButton address={subplebbitAddress} />}
{!(isInAllView || isInSubscriptionsView) && <ModQueueButton boardIdentifier={boardIdentifier} isMobile={true} />}
{showBottomButton && <BottomButton />}
<RefreshButton />
2025-03-06 16:27:09 +01:00
{isInCatalogView && searchText ? (
<span className={styles.filteredThreadsCount}>
{' '}
2025-03-06 16:27:09 +01:00
{t('search_results_for')}: <strong>{searchText}</strong>
</span>
2025-03-06 16:27:09 +01:00
) : (
isInCatalogView &&
filteredCount > 0 && (
<span className={styles.filteredThreadsCount}>
{' '}
{t('filtered_threads')}: <strong>{filteredCount}</strong>
</span>
)
)}
2025-12-29 16:18:59 +01:00
{isInAllView && (
<>
<hr />
<div className={styles.options}>
<AllFeedFilter />
</div>
</>
)}
2024-05-31 18:18:42 +02:00
{isInCatalogView && (
<>
<hr />
<div className={styles.options}>
<div>
<SortOptions /> <ImageSizeOptions />
</div>
<div className={styles.mobileCatalogOptionsPadding}>
<ShowOPCommentOption /> <CatalogFilters /> <CatalogSearch />
</div>
2024-05-31 18:18:42 +02:00
</div>
</>
)}
2024-04-03 22:52:27 +02:00
</>
)}
</div>
);
};
export const PostPageStats = () => {
const { t } = useTranslation();
const params = useParams();
const comment = useSubplebbitsPagesStore((state) => state.comments[params?.commentCid as string]);
2024-07-07 14:36:14 +02:00
const { closed, pinned, replyCount } = comment || {};
const linkCount = useCountLinksInReplies(comment);
const displayReplyCount = replyCount !== undefined ? replyCount.toString() : '?';
const replyCountTooltip = replyCount !== undefined ? capitalize(t('replies')) : t('loading');
return (
<span>
{pinned && `${capitalize(t('sticky'))} / `}
{closed && `${capitalize(t('closed'))} / `}
<Tooltip children={displayReplyCount} content={replyCountTooltip} /> / <Tooltip children={linkCount?.toString()} content={capitalize(t('links'))} />
</span>
);
};
export const DesktopBoardButtons = () => {
2024-09-10 19:19:39 +02:00
const { t } = useTranslation();
2024-04-12 17:47:30 +02:00
const params = useParams();
2024-04-25 22:02:55 +02:00
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);
2024-10-29 17:40:09 +01:00
const isInAllView = isAllView(location.pathname);
2024-04-25 22:02:55 +02:00
const isInPendingPostPage = isPendingPostView(location.pathname, params);
const isInPostView = isPostPageView(location.pathname, params);
const isInSubscriptionsView = isSubscriptionsView(location.pathname, useParams());
const isInModView = isModView(location.pathname);
2026-01-07 16:03:02 +01:00
const isInModQueueView = isModQueueView(location.pathname);
2024-04-12 17:47:30 +02:00
2025-03-06 16:27:09 +01:00
const { filteredCount, searchText } = useCatalogFiltersStore();
const enableInfiniteScroll = useFeedViewSettingsStore((state) => state.enableInfiniteScroll);
const isMultiboard = isInAllView || isInSubscriptionsView || isInModView;
const effectiveInfiniteScroll = isMultiboard || enableInfiniteScroll;
const showBottomButton = (isInCatalogView || isInPostView || isInPendingPostPage) && !effectiveInfiniteScroll;
// Check if we should show the vote button (only for directory boards)
const directories = useDirectories();
const boardIdentifier = params.boardIdentifier || params.subplebbitAddress;
const showVoteButton = boardIdentifier && isDirectoryBoard(boardIdentifier, directories);
return (
2024-06-01 18:13:41 +02:00
<>
<hr />
2024-06-01 18:13:41 +02:00
<div className={styles.desktopBoardButtons}>
{isInPostView || isInPendingPostPage ? (
<>
[
2025-12-29 16:18:59 +01:00
<ReturnButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />] [
<CatalogButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />]
{showBottomButton && (
<>
{' '}
[<BottomButton />]
</>
)}{' '}
[<UpdateButton />] [<AutoButton />]
<span className={styles.rightSideButtons}>
<PostPageStats />
</span>
2024-06-01 18:13:41 +02:00
</>
2026-01-07 16:03:02 +01:00
) : isInModQueueView ? (
<>
[
<ReturnButton
address={subplebbitAddress}
isInAllView={isInAllView}
isInSubscriptionsView={isInSubscriptionsView}
isInModView={isInModView}
isInModQueueView={isInModQueueView}
/>
] [
<RefreshButton />]
<span className={styles.rightSideButtons}>
<ModQueueAlertThreshold />
<ModQueueViewSelector />
</span>
2026-01-07 16:03:02 +01:00
</>
2024-06-01 18:13:41 +02:00
) : (
<>
{isInCatalogView ? (
<>
[
<ReturnButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />]{' '}
2024-06-01 18:13:41 +02:00
</>
) : (
<>
<SearchOPsBar />
2024-06-01 18:13:41 +02:00
[
<CatalogButton address={subplebbitAddress} isInAllView={isInAllView} isInSubscriptionsView={isInSubscriptionsView} isInModView={isInModView} />]{' '}
2024-05-31 18:18:42 +02:00
</>
)}
{showVoteButton && (
<>
{' '}
[<VoteButton />]
</>
)}
{showBottomButton && (
<>
{' '}
[<BottomButton />]
</>
)}{' '}
[<RefreshButton />]
{!(isInAllView || isInSubscriptionsView) && (
2026-01-08 16:43:14 +01:00
<>
{' '}
<ModQueueButton boardIdentifier={boardIdentifier} isMobile={false} />
2026-01-08 16:43:14 +01:00
</>
)}
2025-03-06 16:27:09 +01:00
{isInCatalogView && searchText ? (
<span className={styles.filteredThreadsCount}>
{' '}
2025-03-06 16:27:09 +01:00
{t('search_results_for')}: <strong>{searchText}</strong>
</span>
2025-03-06 16:27:09 +01:00
) : (
isInCatalogView &&
filteredCount > 0 && (
<span className={styles.filteredThreadsCount}>
{' '}
{t('filtered_threads')}: <strong>{filteredCount}</strong>
</span>
)
)}
2024-06-01 18:13:41 +02:00
<span className={styles.rightSideButtons}>
{isInCatalogView && (
<>
<SortOptions />
<ImageSizeOptions />
<ShowOPCommentOption />
</>
)}
2025-12-29 16:18:59 +01:00
{isInAllView && <AllFeedFilter />}
{!(isInAllView || isInSubscriptionsView || isInModView) && (
2024-06-01 18:13:41 +02:00
<>
[
<SubscribeButton address={subplebbitAddress} />]
</>
)}{' '}
{isInCatalogView && (
<>
[<CatalogFilters />] <CatalogSearch />
</>
2024-06-01 18:13:41 +02:00
)}
</span>
</>
)}
</div>
</>
);
};
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 directories = useDirectories();
const resolvedAddress = useResolvedSubplebbitAddress();
const boardPath = resolvedAddress ? getBoardPath(resolvedAddress, directories) : params?.boardIdentifier || params?.subplebbitAddress;
const handleSearch = (event: React.KeyboardEvent<HTMLInputElement>) => {
if (event.key === 'Enter') {
const searchQuery = (event.target as HTMLInputElement).value.trim();
if (searchQuery) {
let catalogUrl = '';
if (isInAllView) {
catalogUrl = `/all/catalog?q=${encodeURIComponent(searchQuery)}`;
} else if (isInSubscriptionsView) {
catalogUrl = `/subs/catalog?q=${encodeURIComponent(searchQuery)}`;
} else if (isInModView) {
catalogUrl = `/mod/catalog?q=${encodeURIComponent(searchQuery)}`;
} else {
catalogUrl = `/${boardPath}/catalog?q=${encodeURIComponent(searchQuery)}`;
}
navigate(catalogUrl);
}
}
};
return <input type='text' placeholder={t('search_ops_placeholder', 'Search OPs...')} onKeyDown={handleSearch} className={styles.searchOPsInput} />;
};