mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
117 lines
4.0 KiB
TypeScript
117 lines
4.0 KiB
TypeScript
import { useTranslation } from 'react-i18next';
|
|
import { Link, useLocation, useParams } from 'react-router-dom';
|
|
import { useAccountComment, useSubscribe } from '@plebbit/plebbit-react-hooks';
|
|
import styles from './board-buttons.module.css';
|
|
import { isCatalogView, isPendingPostView, isPostPageView } from '../../lib/utils/view-utils';
|
|
|
|
interface BoardButtonsProps {
|
|
address: string | undefined;
|
|
isInCatalogView?: boolean;
|
|
}
|
|
|
|
const OptionsButton = () => {
|
|
const { t } = useTranslation();
|
|
return <button className='button'>{t('options')}</button>;
|
|
};
|
|
|
|
const CatalogButton = ({ address, isInCatalogView }: BoardButtonsProps) => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<button className='button'>
|
|
<Link to={isInCatalogView ? `/p/${address}` : `/p/${address}/catalog`}>{t(isInCatalogView ? 'return' : 'catalog')}</Link>
|
|
</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>
|
|
);
|
|
};
|
|
|
|
const ReturnButton = ({ address }: BoardButtonsProps) => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<button className='button'>
|
|
<Link to={`/p/${address}`}>{t('return')}</Link>
|
|
</button>
|
|
);
|
|
};
|
|
|
|
const BottomButton = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<button className='button' onClick={() => window.scrollTo(0, document.body.scrollHeight)}>
|
|
{t('bottom')}
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export const MobileBoardButtons = () => {
|
|
const params = useParams();
|
|
const location = useLocation();
|
|
const accountComment = useAccountComment({ commentIndex: params?.accountCommentIndex as any });
|
|
const subplebbitAddress = params?.subplebbitAddress || accountComment?.subplebbitAddress;
|
|
const isInPostPage = isPostPageView(location.pathname, params);
|
|
const isInPendingPostPage = isPendingPostView(location.pathname, params);
|
|
|
|
return (
|
|
<div className={styles.mobileBoardButtons}>
|
|
{isInPostPage || isInPendingPostPage ? (
|
|
<div className={styles.mobilePostPageButtons}>
|
|
<ReturnButton address={subplebbitAddress} />
|
|
<CatalogButton address={subplebbitAddress} />
|
|
<BottomButton />
|
|
<div className={styles.mobilePostPageButtonsSecondRow}>
|
|
<OptionsButton />
|
|
<SubscribeButton address={subplebbitAddress} />
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<>
|
|
<OptionsButton />
|
|
<CatalogButton address={subplebbitAddress} />
|
|
<SubscribeButton address={subplebbitAddress} />
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export const DesktopBoardButtons = () => {
|
|
const params = useParams();
|
|
const location = useLocation();
|
|
const accountComment = useAccountComment({ commentIndex: params?.accountCommentIndex as any });
|
|
const subplebbitAddress = params?.subplebbitAddress || accountComment?.subplebbitAddress;
|
|
const isInPostPage = isPostPageView(location.pathname, params);
|
|
const isInCatalogView = isCatalogView(location.pathname, params);
|
|
const isInPendingPostPage = isPendingPostView(location.pathname, params);
|
|
|
|
return (
|
|
<div className={styles.desktopBoardButtons}>
|
|
<hr />
|
|
{isInPostPage || isInPendingPostPage ? (
|
|
<>
|
|
[<ReturnButton address={subplebbitAddress} />] [<CatalogButton address={subplebbitAddress} isInCatalogView={isInCatalogView} />] [<BottomButton />] [
|
|
<OptionsButton />]
|
|
<span className={styles.subscribeButton}>
|
|
[<SubscribeButton address={subplebbitAddress} />]
|
|
</span>
|
|
</>
|
|
) : (
|
|
<>
|
|
[<OptionsButton />] [<CatalogButton address={subplebbitAddress} isInCatalogView={isInCatalogView} />]
|
|
<span className={styles.subscribeButton}>
|
|
[<SubscribeButton address={subplebbitAddress} />]
|
|
</span>
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|