mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
313 lines
10 KiB
TypeScript
313 lines
10 KiB
TypeScript
import { useCallback, useEffect, useRef, useState } from 'react';
|
|
import { useLocation, useParams } from 'react-router-dom';
|
|
import { Trans, useTranslation } from 'react-i18next';
|
|
import Draggable from 'react-draggable';
|
|
import { setAccount, useAccount, useComment, useSubplebbit } from '@plebbit/plebbit-react-hooks';
|
|
import Plebbit from '@plebbit/plebbit-js/dist/browser/index.js';
|
|
import { formatMarkdown } from '../../lib/utils/post-utils';
|
|
import { getFormattedTimeAgo } from '../../lib/utils/time-utils';
|
|
import { isValidURL } from '../../lib/utils/url-utils';
|
|
import { isAllView, isSubscriptionsView } from '../../lib/utils/view-utils';
|
|
import useSelectedTextStore from '../../stores/use-selected-text-store';
|
|
import usePublishReply from '../../hooks/use-publish-reply';
|
|
import useIsMobile from '../../hooks/use-is-mobile';
|
|
import styles from './reply-modal.module.css';
|
|
import { LinkTypePreviewer } from '../post-form';
|
|
import _ from 'lodash';
|
|
import useAnonMode from '../../hooks/use-anon-mode';
|
|
import FileUploader from '../../plugins/file-uploader';
|
|
import { Capacitor } from '@capacitor/core';
|
|
|
|
const isAndroid = Capacitor.getPlatform() === 'android';
|
|
|
|
interface ReplyModalProps {
|
|
closeModal: () => void;
|
|
showReplyModal: boolean;
|
|
parentCid: string;
|
|
postCid: string;
|
|
scrollY: number;
|
|
subplebbitAddress: string;
|
|
}
|
|
|
|
const ReplyModal = ({ closeModal, showReplyModal, parentCid, postCid, scrollY, subplebbitAddress }: ReplyModalProps) => {
|
|
const { t } = useTranslation();
|
|
const { setPublishReplyOptions, publishReply, resetPublishReplyOptions, replyIndex } = usePublishReply({
|
|
cid: parentCid,
|
|
subplebbitAddress,
|
|
postCid,
|
|
});
|
|
const account = useAccount();
|
|
const { displayName } = account?.author || {};
|
|
const [url, setUrl] = useState('');
|
|
const textRef = useRef<HTMLTextAreaElement | null>(null);
|
|
const urlRef = useRef<HTMLInputElement>(null);
|
|
const { selectedText } = useSelectedTextStore();
|
|
|
|
const { anonMode, getNewSigner, getExistingSigner } = useAnonMode(postCid);
|
|
const comment = useComment({ commentCid: postCid });
|
|
const address = comment?.author?.address;
|
|
|
|
const hasCalledAnonAddressRef = useRef(false);
|
|
|
|
const getAnonAddressForReply = useCallback(async () => {
|
|
if (anonMode && !hasCalledAnonAddressRef.current) {
|
|
hasCalledAnonAddressRef.current = true;
|
|
const existingSigner = await getExistingSigner(address);
|
|
if (existingSigner) {
|
|
setPublishReplyOptions({
|
|
signer: existingSigner,
|
|
author: {
|
|
address: existingSigner.address,
|
|
displayName: displayName || undefined,
|
|
},
|
|
});
|
|
} else {
|
|
const newSigner = await getNewSigner();
|
|
if (newSigner) {
|
|
setPublishReplyOptions({
|
|
signer: newSigner,
|
|
author: {
|
|
address: newSigner.address,
|
|
displayName: displayName || undefined,
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}, [address, getExistingSigner, getNewSigner, setPublishReplyOptions, anonMode, displayName]);
|
|
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
const onPublishReply = () => {
|
|
const currentContent = textRef.current?.value.slice(contentPrefix.length).trim() || '';
|
|
const currentUrl = urlRef.current?.value.trim() || '';
|
|
|
|
if (!currentContent && !currentUrl) {
|
|
setError(t('empty_comment_alert'));
|
|
return;
|
|
}
|
|
|
|
if (currentUrl && !isValidURL(currentUrl)) {
|
|
setError(t('invalid_url_alert'));
|
|
return;
|
|
}
|
|
|
|
setError(null);
|
|
publishReply();
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (anonMode) {
|
|
getAnonAddressForReply();
|
|
}
|
|
}, [anonMode, getAnonAddressForReply]);
|
|
|
|
useEffect(() => {
|
|
if (typeof replyIndex === 'number') {
|
|
resetPublishReplyOptions();
|
|
closeModal();
|
|
}
|
|
}, [replyIndex, resetPublishReplyOptions, closeModal]);
|
|
|
|
const nodeRef = useRef<HTMLDivElement>(null);
|
|
const isMobile = useIsMobile();
|
|
|
|
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);
|
|
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}>
|
|
<Trans i18nKey='posts_last_synced_info' values={{ time: getFormattedTimeAgo(updatedAt) }} />
|
|
</div>
|
|
)
|
|
: t('subplebbit_offline_info');
|
|
|
|
useEffect(() => {
|
|
if (showReplyModal) {
|
|
setTimeout(() => {
|
|
if (textRef.current) {
|
|
textRef.current.focus();
|
|
}
|
|
}, 0);
|
|
}
|
|
}, [showReplyModal]);
|
|
|
|
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>) => {
|
|
const contentWithoutPrefix = e.target.value.slice(contentPrefix.length);
|
|
const formattedContent = formatMarkdown(contentWithoutPrefix);
|
|
if (textRef.current && textRef.current.value !== formattedContent) {
|
|
setPublishReplyOptions({ content: formattedContent });
|
|
}
|
|
};
|
|
|
|
// on android, auto upload file to image hosting sites with open api
|
|
const [isUploading, setIsUploading] = useState(false);
|
|
const [uploadedFileName, setUploadedFileName] = useState<string | null>(null);
|
|
const handleUpload = async () => {
|
|
try {
|
|
setIsUploading(true);
|
|
const result = await FileUploader.pickAndUploadMedia();
|
|
console.log('Upload result:', result);
|
|
if (result.url) {
|
|
setUrl(result.url);
|
|
if (urlRef.current) {
|
|
urlRef.current.value = result.url;
|
|
}
|
|
setPublishReplyOptions({ link: result.url || undefined });
|
|
if (result.fileName) {
|
|
setUploadedFileName(result.fileName);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error('Upload failed, ', error);
|
|
if (error instanceof Error && error.message !== 'File selection cancelled') {
|
|
setError(`${t('upload_failed')}, ${error.message}`);
|
|
} else if (typeof error === 'string' && error !== 'File selection cancelled') {
|
|
setError(`${t('upload_failed')}, ${error}`);
|
|
}
|
|
} finally {
|
|
setIsUploading(false);
|
|
}
|
|
};
|
|
|
|
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}
|
|
placeholder={displayName ? undefined : _.capitalize(t('name'))}
|
|
onChange={(e) => {
|
|
setAccount({ ...account, author: { ...account?.author, displayName: e.target.value } });
|
|
setPublishReplyOptions({ displayName: e.target.value || undefined });
|
|
}}
|
|
/>
|
|
</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 || undefined });
|
|
}}
|
|
/>
|
|
</div>
|
|
<div className={styles.content}>
|
|
<textarea
|
|
cols={48}
|
|
rows={4}
|
|
wrap='soft'
|
|
ref={textRef}
|
|
spellCheck={false}
|
|
defaultValue={contentPrefix + selectedText}
|
|
onInput={handleContentInput}
|
|
onChange={handleContentChange}
|
|
/>
|
|
</div>
|
|
{!(isInAllView || isInSubscriptionsView) && offlineAlert}
|
|
<div className={styles.offlineAlert}></div>
|
|
<div className={styles.footer}>
|
|
{url && !isAndroid && (
|
|
<>
|
|
{t('link_type')}: <LinkTypePreviewer link={url} />
|
|
</>
|
|
)}
|
|
{isAndroid && (
|
|
<span className={styles.uploadContainer}>
|
|
<span className={styles.uploadButton}>
|
|
<button onClick={handleUpload} disabled={isUploading}>
|
|
{isUploading ? t('uploading') : t('choose_file')}
|
|
</button>
|
|
</span>
|
|
<span className={styles.uploadFileName} title={uploadedFileName ? uploadedFileName : t('no_file_chosen')}>
|
|
{uploadedFileName ? uploadedFileName : t('no_file_chosen')}
|
|
</span>
|
|
</span>
|
|
)}
|
|
<span className={styles.spoilerButton}>
|
|
[
|
|
<label>
|
|
<input type='checkbox' onChange={(e) => setPublishReplyOptions({ spoiler: e.target.checked })} />
|
|
{_.capitalize(t('spoiler'))}?
|
|
</label>
|
|
]
|
|
</span>
|
|
<button className={styles.publishButton} onClick={onPublishReply}>
|
|
{t('post')}
|
|
</button>
|
|
</div>
|
|
{error && (
|
|
<div className={styles.error}>
|
|
{t('error')}: {error}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
showReplyModal &&
|
|
(isMobile ? (
|
|
modalContent
|
|
) : (
|
|
<Draggable handle='.replyModalHandle' nodeRef={nodeRef}>
|
|
{modalContent}
|
|
</Draggable>
|
|
))
|
|
);
|
|
};
|
|
|
|
export default ReplyModal;
|