mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
112 lines
4.8 KiB
TypeScript
112 lines
4.8 KiB
TypeScript
import { useState } from 'react';
|
|
import { createPortal } from 'react-dom';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Comment } from '@plebbit/plebbit-react-hooks';
|
|
import { autoUpdate, flip, FloatingFocusManager, offset, shift, useClick, useDismiss, useFloating, useId, useInteractions, useRole } from '@floating-ui/react';
|
|
import styles from './post-menu-mobile.module.css';
|
|
import { getCommentMediaInfo } from '../../../../lib/utils/media-utils';
|
|
import { copyShareLinkToClipboard, isValidURL } from '../../../../lib/utils/url-utils';
|
|
import useEditCommentPrivileges from '../../../../hooks/use-edit-comment-privileges';
|
|
import EditMenu from '../../edit-menu/edit-menu';
|
|
|
|
interface PostMenuMobileProps {
|
|
cid: string;
|
|
isDescription?: boolean;
|
|
isRules?: boolean;
|
|
subplebbitAddress: string;
|
|
onClose: () => void;
|
|
}
|
|
|
|
const CopyLinkButton = ({ cid, subplebbitAddress, onClose }: PostMenuMobileProps) => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div
|
|
onClick={() => {
|
|
copyShareLinkToClipboard(subplebbitAddress, cid);
|
|
onClose();
|
|
}}
|
|
>
|
|
<div className={styles.postMenuItem}>{t('copy_link')}</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const ImageSearchButtons = ({ url, onClose }: { url: string; onClose: () => void }) => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div onClick={onClose}>
|
|
<a href={`https://lens.google.com/uploadbyurl?url=${url}`} target='_blank' rel='noreferrer'>
|
|
<div className={styles.postMenuItem}>{t('search_image_on_google')}</div>
|
|
</a>
|
|
<a href={`https://www.yandex.com/images/search?img_url=${url}&rpt=imageview`} target='_blank' rel='noreferrer'>
|
|
<div className={styles.postMenuItem}>{t('search_image_on_yandex')}</div>
|
|
</a>
|
|
<a href={`https://saucenao.com/search.php?url=${url}`} target='_blank' rel='noreferrer'>
|
|
<div className={styles.postMenuItem}>{t('search_image_on_saucenao')}</div>
|
|
</a>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const ViewOnButtons = ({ cid, isDescription, isRules, subplebbitAddress, onClose }: PostMenuMobileProps) => {
|
|
const { t } = useTranslation();
|
|
const viewOnOtherClientLink = `p/${subplebbitAddress}${isDescription || isRules ? '' : `/c/${cid}`}`;
|
|
return (
|
|
<div onClick={onClose}>
|
|
<a href={`https://seedit.eth.limo/#/${viewOnOtherClientLink}`} target='_blank' rel='noreferrer'>
|
|
<div className={styles.postMenuItem}>{t('view_on_client', { client: 'Seedit' })}</div>
|
|
</a>
|
|
<a href={`https://plebones.eth.limo/#/${viewOnOtherClientLink}`} target='_blank' rel='noreferrer'>
|
|
<div className={styles.postMenuItem}>{t('view_on_client', { client: 'Plebones' })}</div>
|
|
</a>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const PostMenuMobile = ({ post }: { post: Comment }) => {
|
|
const { author, cid, isDescription, isRules, link, subplebbitAddress } = post || {};
|
|
const { isCommentAuthorMod, isAccountMod, isAccountCommentAuthor } = useEditCommentPrivileges({ commentAuthorAddress: author?.address, subplebbitAddress });
|
|
const commentMediaInfo = getCommentMediaInfo(post);
|
|
const { thumbnail, type, url } = commentMediaInfo || {};
|
|
const [isMenuOpen, setIsMenuOpen] = useState(false);
|
|
|
|
const { refs, floatingStyles, context } = useFloating({
|
|
placement: 'bottom-start',
|
|
open: isMenuOpen,
|
|
onOpenChange: setIsMenuOpen,
|
|
middleware: [offset({ mainAxis: 3, crossAxis: 8 }), flip(), shift({ padding: 10 })],
|
|
whileElementsMounted: autoUpdate,
|
|
});
|
|
const click = useClick(context);
|
|
const dismiss = useDismiss(context);
|
|
const role = useRole(context);
|
|
const { getReferenceProps, getFloatingProps } = useInteractions([click, dismiss, role]);
|
|
const headingId = useId();
|
|
|
|
const handleClose = () => setIsMenuOpen(false);
|
|
|
|
return (
|
|
<>
|
|
<span className={styles.postMenuBtn} title='Post menu' onClick={() => setIsMenuOpen((prev) => !prev)} ref={refs.setReference} {...getReferenceProps()}>
|
|
...
|
|
</span>
|
|
{isMenuOpen &&
|
|
createPortal(
|
|
<FloatingFocusManager context={context} modal={false}>
|
|
<div className={styles.postMenu} ref={refs.setFloating} style={floatingStyles} aria-labelledby={headingId} {...getFloatingProps()}>
|
|
{cid && subplebbitAddress && <CopyLinkButton cid={cid} subplebbitAddress={subplebbitAddress} onClose={handleClose} />}
|
|
{link && isValidURL(link) && (type === 'image' || type === 'gif' || thumbnail) && url && <ImageSearchButtons url={url} onClose={handleClose} />}
|
|
<ViewOnButtons cid={cid} isDescription={isDescription} isRules={isRules} subplebbitAddress={subplebbitAddress} onClose={handleClose} />
|
|
</div>
|
|
</FloatingFocusManager>,
|
|
document.body,
|
|
)}
|
|
{(isAccountMod || isAccountCommentAuthor) && (
|
|
<EditMenu commentCid={cid} isAccountCommentAuthor={isAccountCommentAuthor} isAccountMod={isAccountMod} isCommentAuthorMod={isCommentAuthorMod} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default PostMenuMobile;
|