Files
5chan/src/components/reply-modal/reply-modal.tsx
T

229 lines
7.8 KiB
TypeScript
Raw Normal View History

2024-08-06 21:51:45 +02:00
import { useCallback, useEffect, useRef, useState } from 'react';
import { useLocation, useParams } from 'react-router-dom';
2024-04-28 20:08:41 +02:00
import { useTranslation } from 'react-i18next';
import Draggable from 'react-draggable';
import { setAccount, useAccount, useComment, useSubplebbit } from '@plebbit/plebbit-react-hooks';
2024-04-28 20:08:41 +02:00
import Plebbit from '@plebbit/plebbit-js/dist/browser/index.js';
import { getFormattedTimeAgo } from '../../lib/utils/time-utils';
2024-04-28 20:08:41 +02:00
import { isValidURL } from '../../lib/utils/url-utils';
import { isAllView, isSubscriptionsView } from '../../lib/utils/view-utils';
import useSelectedTextStore from '../../stores/use-selected-text-store';
2024-04-28 20:08:41 +02:00
import useReply from '../../hooks/use-reply';
import useIsMobile from '../../hooks/use-is-mobile';
2024-04-28 20:08:41 +02:00
import styles from './reply-modal.module.css';
import { LinkTypePreviewer } from '../post-form';
2024-04-28 20:08:41 +02:00
import _ from 'lodash';
import useAnonMode from '../../hooks/use-anon-mode';
2024-04-28 20:08:41 +02:00
interface ReplyModalProps {
closeModal: () => void;
parentCid: string;
postCid: string;
scrollY: number;
2024-04-28 20:08:41 +02:00
}
const ReplyModal = ({ closeModal, parentCid, postCid, scrollY }: ReplyModalProps) => {
2024-04-28 20:08:41 +02:00
const { t } = useTranslation();
const { subplebbitAddress } = useParams() as { subplebbitAddress: string };
const { setPublishReplyOptions, publishReply } = useReply({ cid: parentCid, subplebbitAddress });
2024-04-28 20:08:41 +02:00
const account = useAccount();
const { displayName } = account?.author || {};
const [url, setUrl] = useState('');
const textRef = useRef<HTMLTextAreaElement | null>(null);
2024-04-28 20:08:41 +02:00
const urlRef = useRef<HTMLInputElement>(null);
const { selectedText } = useSelectedTextStore();
2024-04-28 20:08:41 +02:00
const { anonMode, getNewSigner, getExistingSigner } = useAnonMode(postCid);
const comment = useComment({ commentCid: postCid });
const address = comment?.author?.address;
2024-08-06 21:51:45 +02:00
const hasCalledAnonAddressRef = useRef(false);
const getAnonAddressForReply = useCallback(async () => {
if (anonMode && !hasCalledAnonAddressRef.current) {
hasCalledAnonAddressRef.current = true;
let signer = getExistingSigner(address);
if (!signer) {
signer = await getNewSigner();
if (signer) {
setPublishReplyOptions({
signer,
author: {
displayName,
address: signer.address,
},
});
}
}
}
2024-08-06 21:51:45 +02:00
}, [anonMode, address, getExistingSigner, getNewSigner, displayName, setPublishReplyOptions]);
useEffect(() => {
if (anonMode) {
getAnonAddressForReply();
}
}, [anonMode, getAnonAddressForReply]);
const onPublishReply = async () => {
2024-04-28 20:08:41 +02:00
const currentContent = textRef.current?.value || '';
const currentUrl = urlRef.current?.value || '';
if (!currentContent.trim() && !currentUrl) {
alert(`Cannot post empty comment`);
return;
}
if (currentUrl && !isValidURL(currentUrl)) {
alert('The provided link is not a valid URL.');
return;
}
2024-08-06 21:51:45 +02:00
publishReply();
closeModal();
2024-04-28 20:08:41 +02:00
};
const nodeRef = useRef<HTMLDivElement>(null);
const isMobile = useIsMobile();
2024-04-28 20:08:41 +02:00
// on mobile, the position is absolute instead of fixed, so we need to calculate the top position
useEffect(() => {
if (nodeRef.current && isMobile) {
const viewportHeight = window.innerHeight;
const modalHeight = 150;
const centeredPosition = scrollY + viewportHeight / 2 - modalHeight / 2;
nodeRef.current.style.top = `${centeredPosition}px`;
}
}, [isMobile, scrollY]);
const parentCidRef = useRef<HTMLSpanElement>(null);
useEffect(() => {
if (parentCidRef.current && parentCidRef.current) {
const cidWidth = parentCidRef.current.offsetWidth;
parentCidRef.current.style.width = `${cidWidth}px`;
}
}, [parentCid]);
const location = useLocation();
const isInAllView = isAllView(location.pathname, useParams());
const isInSubscriptionsView = isSubscriptionsView(location.pathname, useParams());
const subplebbit = useSubplebbit({ subplebbitAddress });
const { updatedAt } = subplebbit || {};
const isBoardOffline = subplebbit?.updatedAt && subplebbit.updatedAt < Date.now() / 1000 - 60 * 60;
const offlineAlert = updatedAt
? isBoardOffline && (
<div className={styles.offlineBoard}>{`Posts last synced ${getFormattedTimeAgo(updatedAt)}, the subplebbit might be offline and publishing might fail.`}</div>
)
: `The subplebbit might be offline and publishing might fail.`;
const setTextRef = (ref: HTMLTextAreaElement | null) => {
if (ref) {
textRef.current = ref;
!isMobile && ref.focus();
}
};
useEffect(() => {
if (textRef.current) {
const len = textRef.current.value.length;
textRef.current.setSelectionRange(len, len);
}
}, []);
const contentPrefix = `c/${parentCid && Plebbit.getShortCid(parentCid)}\n`;
const handleContentInput = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
const { value } = e.target;
if (!value.startsWith(contentPrefix)) {
e.target.value = contentPrefix + value.slice(contentPrefix.length);
}
};
const handleContentChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
// remove the prefix from the content to publish, and also add newlines for markdown
const contentWithoutPrefix = e.target.value.slice(contentPrefix.length).replace(/\n/g, '\n\n');
if (textRef.current && textRef.current.value !== contentWithoutPrefix) {
setPublishReplyOptions({ content: contentWithoutPrefix });
}
};
const modalContent = (
<div className={styles.container} ref={nodeRef}>
<div className={`replyModalHandle ${styles.title}`}>
{t('reply_to_cid', { cid: `c/${parentCid && Plebbit.getShortCid(parentCid)}`, interpolation: { escapeValue: false } })}
<button
className={styles.closeIcon}
onClick={(e) => {
e.stopPropagation();
closeModal();
}}
title='close'
/>
</div>
<div className={styles.replyForm}>
<div className={styles.name}>
<input
type='text'
defaultValue={displayName}
2024-06-05 22:18:45 +02:00
placeholder={displayName ? undefined : _.capitalize(t('name'))}
onChange={(e) => setAccount({ ...account, author: { ...account?.author, displayName: e.target.value } })}
/>
</div>
<div className={styles.link}>
<input
type='text'
ref={urlRef}
placeholder={_.capitalize(t('link'))}
onChange={(e) => {
setUrl(e.target.value);
setPublishReplyOptions({ link: e.target.value });
}}
/>
</div>
<div className={styles.content}>
<textarea
cols={48}
rows={4}
wrap='soft'
ref={setTextRef}
spellCheck={false}
defaultValue={contentPrefix + selectedText}
onInput={handleContentInput}
onChange={handleContentChange}
/>
</div>
{!(isInAllView || isInSubscriptionsView) && offlineAlert}
<div className={styles.offlineAlert}></div>
<div className={styles.footer}>
{url && (
<>
2024-06-24 18:31:08 +02:00
{t('link_type')}: <LinkTypePreviewer link={url} />{' '}
</>
)}
<span className={styles.spoilerButton}>
[
<label>
<input type='checkbox' onChange={(e) => setPublishReplyOptions({ spoiler: e.target.checked })} />
2024-05-31 17:29:19 +02:00
{_.capitalize(t('spoiler'))}?
</label>
]
</span>
<button className={styles.publishButton} onClick={onPublishReply}>
{t('post')}
</button>
</div>
</div>
</div>
);
return isMobile ? (
modalContent
) : (
<Draggable handle='.replyModalHandle' nodeRef={nodeRef}>
{modalContent}
2024-04-28 20:08:41 +02:00
</Draggable>
);
};
export default ReplyModal;