Files
5chan/src/components/views/Board.jsx
T

828 lines
42 KiB
React
Raw Normal View History

2023-03-13 14:29:34 +01:00
import React, { useState, useEffect, Fragment } from 'react';
2023-03-20 17:08:05 +01:00
import { Link, useNavigate, useParams } from 'react-router-dom';
2023-03-23 15:49:57 +01:00
import InfiniteScroll from 'react-infinite-scroller';
import { Tooltip } from 'react-tooltip';
2023-03-24 18:08:07 +01:00
import { useFeed, usePublishComment } from '@plebbit/plebbit-react-hooks';
2023-03-25 14:54:04 +01:00
import VideoThumbnail from 'react-video-thumbnail';
import { debounce } from 'lodash';
2023-03-20 17:08:05 +01:00
import useAppStore from '../../useAppStore';
2023-02-14 11:29:53 +01:00
import { Container, NavBar, Header, Break, PostFormLink, PostFormTable, PostForm, TopBar, BoardForm } from './styles/Board.styled';
2023-03-19 11:49:05 +01:00
import CaptchaModal from '../CaptchaModal';
2023-03-19 18:30:07 +01:00
import ImageBanner from '../ImageBanner';
import PostLoader from '../PostLoader';
2023-03-19 11:49:05 +01:00
import ReplyModal from '../ReplyModal';
import SettingsModal from '../SettingsModal';
2023-03-23 14:05:59 +01:00
import getCommentMediaInfo from '../../utils/getCommentMediaInfo';
import getDate from '../../utils/getDate';
2023-03-20 17:08:05 +01:00
import handleStyleChange from '../../utils/handleStyleChange';
2023-03-19 11:49:05 +01:00
import onError from '../../utils/onError';
import onSuccess from '../../utils/onSuccess';
import renderComments from '../../utils/renderComments';
2023-03-20 17:08:05 +01:00
import useClickForm from '../../hooks/useClickForm';
2023-02-14 21:13:15 +01:00
2023-02-05 18:44:16 +01:00
2023-03-20 17:08:05 +01:00
const Board = () => {
2023-03-13 14:29:34 +01:00
const {
2023-03-20 17:08:05 +01:00
captchaResponse, setCaptchaResponse,
defaultSubplebbits,
isSettingsOpen, setIsSettingsOpen,
selectedAddress, setSelectedAddress,
2023-03-13 14:29:34 +01:00
selectedStyle,
2023-03-20 17:08:05 +01:00
setSelectedThread,
selectedTitle, setSelectedTitle,
showPostForm,
showPostFormLink
} = useAppStore(state => state);
2023-03-13 14:29:34 +01:00
2023-02-15 16:48:21 +01:00
const [name, setName] = useState('');
const [subject, setSubject] = useState('');
const [comment, setComment] = useState('');
2023-03-24 18:08:07 +01:00
const { publishComment } = usePublishComment();
2023-03-12 22:07:15 +01:00
const [isCaptchaOpen, setIsCaptchaOpen] = useState(false);
2023-03-17 14:35:03 +01:00
const [isReplyOpen, setIsReplyOpen] = useState(false);
2023-03-12 22:07:15 +01:00
const [captchaImage, setCaptchaImage] = useState('');
2023-02-11 22:00:13 +01:00
const navigate = useNavigate();
2023-02-24 20:57:51 +01:00
const [prevScrollPos, setPrevScrollPos] = useState(0);
const [visible, setVisible] = useState(true);
2023-03-24 18:08:07 +01:00
const { feed, hasMore, loadMore } = useFeed({subplebbitAddresses: [`${selectedAddress}`], sortType: 'new'});
2023-03-25 14:54:04 +01:00
const [selectedFeed, setSelectedFeed] = useState(feed);
2023-03-13 14:29:34 +01:00
const { subplebbitAddress } = useParams();
2023-03-20 17:08:05 +01:00
const handleClickForm = useClickForm();
2023-03-01 22:26:25 +01:00
2023-03-02 21:51:06 +01:00
2023-03-03 14:02:46 +01:00
// temporary title from JSON, gets subplebbitAddress from URL
2023-03-02 18:19:08 +01:00
useEffect(() => {
setSelectedAddress(subplebbitAddress);
const selectedSubplebbit = defaultSubplebbits.find((subplebbit) => subplebbit.address === subplebbitAddress);
if (selectedSubplebbit) {
setSelectedTitle(selectedSubplebbit.title);
}
}, [subplebbitAddress, setSelectedAddress, setSelectedTitle, defaultSubplebbits]);
2023-03-03 14:02:46 +01:00
// sets useFeed to address from URL
2023-03-02 11:09:03 +01:00
useEffect(() => {
setSelectedFeed(feed);
}, [feed]);
2023-02-17 18:03:05 +01:00
2023-03-03 14:02:46 +01:00
// mobile navbar scroll effect
2023-03-02 13:42:26 +01:00
useEffect(() => {
2023-03-25 14:54:04 +01:00
const debouncedHandleScroll = debounce(() => {
2023-03-02 13:42:26 +01:00
const currentScrollPos = window.pageYOffset;
setVisible(prevScrollPos > currentScrollPos || currentScrollPos < 10);
setPrevScrollPos(currentScrollPos);
2023-03-25 14:54:04 +01:00
}, 50);
window.addEventListener('scroll', debouncedHandleScroll);
return () => window.removeEventListener('scroll', debouncedHandleScroll);
2023-03-02 13:42:26 +01:00
}, [prevScrollPos, visible]);
2023-03-25 14:54:04 +01:00
2023-03-02 13:42:26 +01:00
2023-03-03 14:02:46 +01:00
2023-03-25 14:54:04 +01:00
2023-02-16 21:01:21 +01:00
const tryLoadMore = async () => {
2023-03-01 22:26:25 +01:00
try {
2023-03-25 14:54:04 +01:00
await loadMore();
2023-03-01 22:26:25 +01:00
} catch (e) {
await new Promise(resolve => setTimeout(resolve, 1000));
}
2023-03-25 14:54:04 +01:00
};
2023-02-16 21:01:21 +01:00
2023-03-02 21:51:06 +01:00
2023-02-15 16:48:21 +01:00
const onChallengeVerification = (challengeVerification) => {
if (challengeVerification.challengeSuccess === true) {
2023-03-15 17:34:31 +01:00
onSuccess('challenge success', {publishedCid: challengeVerification.publication.cid})
2023-02-15 16:48:21 +01:00
}
else if (challengeVerification.challengeSuccess === false) {
2023-03-15 17:34:31 +01:00
onError('challenge failed', {reason: challengeVerification.reason, errors: challengeVerification.errors});
onError("Error: You seem to have mistyped the CAPTCHA. Please try again.");
2023-02-15 16:48:21 +01:00
}
}
2023-03-02 21:51:06 +01:00
2023-02-15 16:48:21 +01:00
const onChallenge = async (challenges, comment) => {
let challengeAnswers = [];
try {
challengeAnswers = await getChallengeAnswersFromUser(challenges)
}
catch (error) {
2023-03-15 17:34:31 +01:00
onError(error);
2023-02-15 16:48:21 +01:00
}
if (challengeAnswers) {
await comment.publishChallengeAnswers(challengeAnswers)
}
}
2023-03-02 21:51:06 +01:00
2023-02-15 16:48:21 +01:00
const getChallengeAnswersFromUser = async (challenges) => {
return new Promise((resolve, reject) => {
const imageString = challenges?.challenges[0].challenge;
const imageSource = `data:image/png;base64,${imageString}`;
const challengeImg = new Image();
challengeImg.src = imageSource;
challengeImg.onload = () => {
2023-03-12 22:07:15 +01:00
setIsCaptchaOpen(true);
setCaptchaImage(imageSource);
2023-02-15 16:48:21 +01:00
const handleKeyDown = (event) => {
if (event.key === 'Enter') {
2023-03-12 22:07:15 +01:00
setCaptchaImage('');
resolve(captchaResponse);
setIsCaptchaOpen(false);
2023-02-15 16:48:21 +01:00
document.removeEventListener('keydown', handleKeyDown);
}
};
2023-03-12 22:07:15 +01:00
setCaptchaResponse('');
2023-02-15 16:48:21 +01:00
document.addEventListener('keydown', handleKeyDown);
};
challengeImg.onerror = () => {
2023-03-15 17:34:31 +01:00
reject(onError('Could not load challenge image'));
2023-02-15 16:48:21 +01:00
};
});
};
2023-02-12 21:20:08 +01:00
2023-03-02 13:42:26 +01:00
2023-03-02 21:51:06 +01:00
2023-03-03 14:02:46 +01:00
const handleVoidClick = () => {};
2023-03-02 21:51:06 +01:00
2023-03-03 14:02:46 +01:00
// desktop navbar board select functionality
2023-02-27 15:32:16 +01:00
const handleClickTitle = (title, address) => {
2023-02-07 22:55:00 +01:00
setSelectedTitle(title);
setSelectedAddress(address);
2023-03-02 11:09:03 +01:00
setSelectedFeed(feed.filter(feed => feed.title === title));
2023-02-07 22:55:00 +01:00
};
2023-03-03 14:02:46 +01:00
// mobile navbar board select functionality
const handleSelectChange = (event) => {
const selected = event.target.value;
const selectedTitle = defaultSubplebbits.find((subplebbit) => subplebbit.address === selected).title;
setSelectedTitle(selectedTitle);
setSelectedAddress(selected);
navigate(`/${selected}`);
}
2023-03-02 21:51:06 +01:00
2023-02-11 22:00:13 +01:00
const handleClickHelp = () => {
2023-03-12 10:27:59 +01:00
alert("- Embedding media is optional, posts can be text-only. \n- A CAPTCHA challenge will appear after posting. \n- The CAPTCHA is case-sensitive.");
2023-02-11 22:00:13 +01:00
};
2023-03-02 21:51:06 +01:00
const handleClickThread = (thread) => {
setSelectedThread(thread);
2023-03-12 22:07:15 +01:00
};
2023-02-15 16:48:21 +01:00
2023-03-02 21:51:06 +01:00
2023-02-15 16:48:21 +01:00
const handlePublishComment = async () => {
try {
const pendingComment = await publishComment({
content: comment,
title: subject,
subplebbitAddress: selectedAddress,
onChallengeVerification,
onChallenge,
2023-03-13 22:15:57 +01:00
onError: onError,
2023-02-15 16:48:21 +01:00
});
console.log(`Comment pending with index: ${pendingComment.index}`);
setName('');
setSubject('');
setComment('');
} catch (error) {
2023-03-13 22:15:57 +01:00
onError(error);
2023-02-15 16:48:21 +01:00
}
};
2023-02-11 22:00:13 +01:00
2023-03-08 09:49:42 +01:00
// scroll to post when quote is clicked
function handleQuoteClick(reply, event) {
event.preventDefault();
const cid = reply.cid.slice(0, 8);
const targetElement = [...document.querySelectorAll('.post-reply')]
.find(el => el.innerHTML.includes(cid));
if (targetElement) {
targetElement.scrollIntoView({ behavior: "instant" });
}
}
2023-03-12 22:07:15 +01:00
const handleCaptchaClose = () => {
setIsCaptchaOpen(false);
};
2023-03-17 14:35:03 +01:00
const handleReplyClose = () => {
setIsReplyOpen(false);
};
const handleReplyOpen = () => {
setIsReplyOpen(true);
};
2023-03-15 15:25:09 +01:00
const handleSettingsClose = () => {
setIsSettingsOpen(false);
}
const handleSettingsOpen = () => {
setIsSettingsOpen(true);
}
2023-03-02 21:51:06 +01:00
2023-02-02 21:58:02 +01:00
return (
2023-02-04 22:10:54 +01:00
<Container>
2023-03-12 22:07:15 +01:00
<CaptchaModal
2023-03-15 15:25:09 +01:00
selectedStyle={selectedStyle}
2023-03-12 22:07:15 +01:00
isOpen={isCaptchaOpen}
closeModal={handleCaptchaClose}
captchaImage={captchaImage} />
2023-03-17 14:35:03 +01:00
<ReplyModal
selectedStyle={selectedStyle}
isOpen={isReplyOpen}
closeModal={handleReplyClose} />
2023-03-15 15:25:09 +01:00
<SettingsModal
selectedStyle={selectedStyle}
isOpen={isSettingsOpen}
closeModal={handleSettingsClose} />
2023-02-08 21:49:36 +01:00
<NavBar selectedStyle={selectedStyle}>
2023-02-04 22:10:54 +01:00
<>
{defaultSubplebbits.map(subplebbit => (
2023-02-11 22:00:13 +01:00
<span className="boardList" key={`span-${subplebbit.address}`}>
2023-02-07 22:55:00 +01:00
[
2023-03-10 12:42:26 +01:00
<Link to={`/${subplebbit.address}`} key={`a-${subplebbit.address}`} onClick={() => handleClickTitle(subplebbit.title, subplebbit.address)}
2023-02-19 22:08:18 +01:00
>{subplebbit.title}</Link>
2023-02-04 22:10:54 +01:00
]&nbsp;
</span>
))}
2023-02-23 16:45:29 +01:00
<span className="nav">
[
2023-03-15 15:25:09 +01:00
<Link to={`/${selectedAddress}/settings`} onClick={handleSettingsOpen}>Settings</Link>
2023-02-23 16:45:29 +01:00
]
[
2023-03-10 12:42:26 +01:00
<Link to="/" onClick={() => handleStyleChange({target: {value: "Yotsuba"}}
2023-02-23 16:45:29 +01:00
)}>Home</Link>
]
2023-02-04 22:10:54 +01:00
</span>
2023-02-24 20:57:51 +01:00
<div id="board-nav-mobile" style={{ top: visible ? 0 : '-23px' }}>
2023-02-23 16:45:29 +01:00
<div className="board-select">
<strong>Board</strong>
&nbsp;
2023-02-27 18:16:47 +01:00
<select id="board-select-mobile" value={selectedAddress} onChange={handleSelectChange}>
2023-02-23 16:45:29 +01:00
{defaultSubplebbits.map(subplebbit => (
2023-02-27 18:16:47 +01:00
<option key={`option-${subplebbit.address}`} value={subplebbit.address}
>{subplebbit.title}</option>
2023-02-27 15:32:16 +01:00
))}
2023-02-23 16:45:29 +01:00
</select>
</div>
<div className="page-jump">
2023-03-15 15:25:09 +01:00
<Link to={`/${selectedAddress}/settings`} onClick={handleSettingsOpen}>Settings</Link>
2023-02-23 16:45:29 +01:00
&nbsp;
2023-03-10 12:42:26 +01:00
<Link to="/" onClick={() => handleStyleChange({target: {value: "Yotsuba"}}
2023-02-23 16:45:29 +01:00
)}>Home</Link>
</div>
</div>
<div id="separator-mobile">&nbsp;</div>
<div id="separator-mobile">&nbsp;</div>
2023-02-04 22:10:54 +01:00
</>
</NavBar>
2023-02-08 21:49:36 +01:00
<Header selectedStyle={selectedStyle}>
2023-02-04 22:10:54 +01:00
<>
<div className="banner">
2023-02-05 18:44:16 +01:00
<ImageBanner />
2023-02-04 22:10:54 +01:00
</div>
2023-02-07 13:23:14 +01:00
<>
2023-02-07 22:55:00 +01:00
<div className="board-title">{selectedTitle}</div>
<div className="board-address">p/{selectedAddress}</div>
2023-02-07 13:23:14 +01:00
</>
2023-02-04 22:10:54 +01:00
</>
</Header>
2023-02-08 21:49:36 +01:00
<Break selectedStyle={selectedStyle} />
2023-02-15 16:48:21 +01:00
<PostForm selectedStyle={selectedStyle}>
2023-02-24 18:13:02 +01:00
<PostFormLink id="post-form-link" showPostFormLink={showPostFormLink} selectedStyle={selectedStyle} >
<div id="post-form-link-desktop">
[
<a onClick={handleClickForm} onMouseOver={(event) => event.target.style.cursor='pointer'}>Start a New Thread</a>
]
</div>
<div id="post-form-link-mobile">
<span className="btn-wrap">
<a onClick={handleClickForm} onMouseOver={(event) => event.target.style.cursor='pointer'}>Start a New Thread</a>
</span>
</div>
2023-02-11 22:00:13 +01:00
</PostFormLink>
<PostFormTable id="post-form" showPostForm={showPostForm} selectedStyle={selectedStyle} className="post-form">
<tbody>
<tr data-type="Name">
<td id="td-name">Name</td>
<td>
2023-02-15 16:48:21 +01:00
<input name="name" type="text" tabIndex={1} placeholder="Anonymous" value={name} onChange={(event) => setName(event.target.value)} />
2023-02-11 22:00:13 +01:00
</td>
</tr>
<tr data-type="Subject">
<td>Subject</td>
<td>
2023-02-15 16:48:21 +01:00
<input name="sub" type="text" tabIndex={3} value={subject} onChange={(event) => setSubject(event.target.value)} />
<input id="post-button" type="submit" value="Post" tabIndex={6} onClick={handlePublishComment} />
2023-02-11 22:00:13 +01:00
</td>
</tr>
<tr data-type="Comment">
<td>Comment</td>
<td>
2023-02-15 16:48:21 +01:00
<textarea name="com" cols="48" rows="4" tabIndex={4} wrap="soft" value={comment} onChange={(event) => setComment(event.target.value)}></textarea>
2023-02-11 22:00:13 +01:00
</td>
</tr>
<tr data-type="File">
<td>Embed File</td>
<td>
<input name="embed" type="text" tabIndex={7} placeholder="Paste link" />
2023-03-09 17:51:56 +01:00
<button id="t-help" type="button" onClick={handleClickHelp} data-tip="Help">?</button>
2023-02-11 22:00:13 +01:00
</td>
</tr>
</tbody>
</PostFormTable>
2023-02-04 22:10:54 +01:00
</PostForm>
2023-02-08 21:49:36 +01:00
<TopBar selectedStyle={selectedStyle}>
2023-02-05 18:44:16 +01:00
<hr />
2023-02-07 13:23:14 +01:00
<span className="style-changer">
Style:
 
2023-02-13 12:05:10 +01:00
<select id="style-selector" onChange={handleStyleChange} value={selectedStyle}>
2023-02-08 21:49:36 +01:00
<option value="Yotsuba">Yotsuba</option>
2023-03-08 12:49:44 +01:00
<option value="Yotsuba-B">Yotsuba B</option>
2023-02-08 21:49:36 +01:00
<option value="Futaba">Futaba</option>
2023-02-07 13:23:14 +01:00
<option value="Burichan">Burichan</option>
<option value="Tomorrow">Tomorrow</option>
<option value="Photon">Photon</option>
</select>
</span>
2023-02-24 18:13:02 +01:00
<div id="catalog-button-desktop">
[
2023-03-10 12:42:26 +01:00
<Link to={`/${selectedAddress}/catalog`}>Catalog</Link>
2023-02-24 18:13:02 +01:00
]
</div>
2023-03-22 15:35:28 +01:00
<div id="stats" style={{float: "right", marginTop: "5px"}}>
{feed.length > 0 ? (null) : (<span>Fetching IPFS...</span>)}
</div>
2023-02-24 18:13:02 +01:00
<div id="catalog-button-mobile">
<span className="btn-wrap">
2023-03-10 12:42:26 +01:00
<Link to={`/${selectedAddress}/catalog`}>Catalog</Link>
2023-02-24 18:13:02 +01:00
</span>
</div>
2023-02-05 18:44:16 +01:00
</TopBar>
2023-03-25 21:38:52 +01:00
<Tooltip id="tooltip" className="tooltip" />
2023-02-15 16:48:21 +01:00
<BoardForm selectedStyle={selectedStyle}>
2023-03-25 21:38:52 +01:00
<div className="board">
2023-03-25 21:44:28 +01:00
{feed.length < 1 ? (
<PostLoader />
) : (
<InfiniteScroll
pageStart={0}
loadMore={tryLoadMore}
hasMore={hasMore}
>
{feed.map(thread => {
const { replies: { pages: { topAll: { comments } } } } = thread;
const { renderedComments, omittedCount } = renderComments(comments);
const commentMediaInfo = getCommentMediaInfo(thread);
const fallbackImgUrl = "/assets/filedeleted-res.gif";
return (
<Fragment key={`fragment1-${thread.cid}`}>
<div key={`t-${thread.cid}`} className="thread">
<div key={`c-${thread.cid}`} className="op-container">
<div key={`po-${thread.cid}`} className="post op">
<hr key={`hr-${thread.cid}`} />
<div key={`pi-${thread.cid}`} className="post-info">
{commentMediaInfo?.url ? (
<div key={`f-${thread.cid}`} className="file" style={{marginBottom: "5px"}}>
<div key={`ft-${thread.cid}`} className="file-text">
Link:&nbsp;
<a key={`fa-${thread.cid}`} href={commentMediaInfo.url} target="_blank">{
commentMediaInfo?.url.length > 30 ?
commentMediaInfo?.url.slice(0, 30) + "(...)" :
commentMediaInfo?.url
}</a>&nbsp;({commentMediaInfo?.type})
2023-03-25 14:54:04 +01:00
</div>
2023-03-25 21:44:28 +01:00
{commentMediaInfo?.type === "webpage" ? (
<span key={`fta-${thread.cid}`} className="file-thumb">
<img key={`fti-${thread.cid}`} src={thread.thumbnailUrl} alt="thumbnail" onError={(e) => e.target.src = fallbackImgUrl} />
2023-02-28 16:34:33 +01:00
</span>
2023-03-25 21:44:28 +01:00
) : null}
{commentMediaInfo?.type === "image" ? (
<span key={`fta-${thread.cid}`} className="file-thumb">
<img key={`fti-${thread.cid}`} src={commentMediaInfo.url} alt={commentMediaInfo.type} onError={(e) => e.target.src = fallbackImgUrl} />
</span>
) : null}
{commentMediaInfo?.type === "video" ? (
<span key={`fta-${thread.cid}`} className="file-thumb">
<VideoThumbnail
videoUrl={commentMediaInfo.url}
thumbnailHandler={(thumbnail) => {
const img = document.querySelector(`img[key="img-${thread.cid}"]`);
if (img) {
img.src = thumbnail;
}
}}
/>
</span>
) : null}
{commentMediaInfo?.type === "audio" ? (
<span key={`fta-${thread.cid}`} className="file-thumb">
<audio key={`fti-${thread.cid}`} src={commentMediaInfo.url} alt={commentMediaInfo.type} onError={(e) => e.target.src = fallbackImgUrl} />
</span>
) : null}
</div>
) : null}
<span key={`nb-${thread.cid}`} className="name-block">
{thread.title ? (
thread.title.length > 75 ?
<Fragment key={`fragment2-${thread.cid}`}>
<span key={`q-${thread.cid}`} className="title"
data-tooltip-id="tooltip"
data-tooltip-content={thread.title}
data-tooltip-place="top">
{thread.title.slice(0, 75) + " (...)"}
</span>
</Fragment>
: <span key={`q-${thread.cid}`} className="title">
{thread.title}
</span>)
: null}&nbsp;
{thread.author.displayName
? thread.author.displayName.length > 20
? <Fragment key={`fragment3-${thread.cid}`}>
<span key={`n-${thread.cid}`} className="name"
data-tooltip-id="tooltip"
data-tooltip-content={thread.author.displayName}
data-tooltip-place="top">
{thread.author.displayName.slice(0, 20) + " (...)"}
</span>
</Fragment>
: <span key={`n-${thread.cid}`} className="name">
{thread.author.displayName}</span>
: <span key={`n-${thread.cid}`} className="name">
Anonymous</span>}
&nbsp;
2023-03-05 14:15:51 +01:00
(u/
2023-02-28 16:34:33 +01:00
{thread.author.address.length > 15 ?
2023-03-25 21:44:28 +01:00
<Fragment key={`fragment4-${thread.cid}`}>
<span key={`pa-${thread.cid}`} className="poster-address"
2023-03-25 21:38:52 +01:00
data-tooltip-id="tooltip"
2023-02-28 16:34:33 +01:00
data-tooltip-content={thread.author.address}
data-tooltip-place="top">
{thread.author.address.slice(0, 15) + "..."}
</span>
2023-03-07 13:07:36 +01:00
</Fragment>
2023-03-25 21:44:28 +01:00
: <span key={`pa-${thread.cid}`} className="poster-address">
2023-02-28 16:34:33 +01:00
{thread.author.address}
2023-03-25 21:44:28 +01:00
</span>})
&nbsp;
<span key={`dt-${thread.cid}`} className="date-time" data-utc="data">{getDate(thread.timestamp)}</span>
&nbsp;
<span key={`pn-${thread.cid}`} className="post-number">
<Link to="" key={`pl1-${thread.cid}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
<button id="reply-button" style={{ all: 'unset', cursor: 'pointer' }} key={`pl2-${thread.cid}`} onClick={handleReplyOpen} title="Reply to this post">{thread.cid.slice(0, 8)}</button>
&nbsp;
<span key={`rl1-${thread.cid}`}>&nbsp;
[
<Link key={`rl2-${thread.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="reply-link" >Reply</Link>
]
2023-02-28 16:34:33 +01:00
</span>
2023-03-25 21:44:28 +01:00
</span>&nbsp;
<button key={`pmb-${thread.cid}`} className="post-menu-button" title="Post menu" style={{ all: 'unset', cursor: 'pointer' }} data-cmd="post-menu"></button>
<div key={`bi-${thread.cid}`} id="backlink-id" className="backlink">
{thread.replies?.pages.topAll.comments
.sort((a, b) => a.timestamp - b.timestamp)
.map((reply) => (
<div key={`div-${reply.cid}`} style={{display: 'inline-block'}}>
<Link key={`ql-${reply.cid}`}
to={handleVoidClick} className="quote-link"
onClick={(event) => handleQuoteClick(reply, event)}>
c/{reply.cid.slice(0, 8)}</Link>
&nbsp;
</div>
))
}
</div>
</span>
{thread.content ? (
thread.content.length > 2000 ?
<Fragment key={`fragment5-${thread.cid}`}>
<blockquote key={`bq-${thread.cid}`}>
{thread.content.slice(0, 2000)}
<span key={`ttl-s-${thread.cid}`} className="ttl"> (...)
<br key={`ttl-s-br1-${thread.cid}`} /><br key={`ttl-s-br2${thread.cid}`} />
Post too long.&nbsp;
<Link key={`ttl-l-${thread.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
&nbsp;to view. </span>
</blockquote>
2023-03-07 13:07:36 +01:00
</Fragment>
2023-03-25 21:44:28 +01:00
: <blockquote key={`bq-${thread.cid}`}>
{thread.content}
</blockquote>)
2023-02-28 16:34:33 +01:00
: null}
2023-03-25 21:44:28 +01:00
</div>
2023-02-26 19:13:46 +01:00
</div>
2023-02-05 22:15:38 +01:00
</div>
2023-03-25 21:44:28 +01:00
<span key={`summary-${thread.cid}`} className="summary">
{omittedCount > 0 ? (
<span key={`oc-${thread.cid}`} className="ttl">
<span key={`oc1-${thread.cid}`}>
{omittedCount} post{omittedCount > 1 ? "s" : ""} omitted. Click&nbsp;
<Link key={`oc2-${thread.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">here</Link>
&nbsp;to view.
</span>
</span>) : null}
</span>
{renderedComments.map(reply => {
return (
<div key={`rc-${reply.cid}-${Math.random()}`} className="reply-container">
<div key={`sa-${reply.cid}`} className="side-arrows">{'>>'}</div>
<div key={`pr-${reply.cid}`} className="post-reply">
<div key={`pi-${reply.cid}`} className="post-info">
<span key={`nb-${reply.cid}`} className="nameblock">
{reply.author.displayName
? reply.author.displayName.length > 12
? <Fragment key={`fragment6-${reply.cid}`}>
<span key={`mob-n-${reply.cid}`} className="name"
data-tooltip-id="tooltip"
data-tooltip-content={reply.author.displayName}
data-tooltip-place="top">
{reply.author.displayName.slice(0, 12) + " (...)"}
</span>
</Fragment>
: <span key={`mob-n-${reply.cid}`} className="name">
{reply.author.displayName}</span>
: <span key={`mob-n-${reply.cid}`} className="name">
Anonymous</span>}
&nbsp;
<span key={`pa-${reply.cid}`} className="poster-address">
(u/
{reply.author.address.length > 12 ?
<Fragment key={`fragment7-${reply.cid}`}>
<span key={`mob-ha-${reply.cid}`}
data-tooltip-id="tooltip"
data-tooltip-content={reply.author.address}
data-tooltip-place="top">
{reply.author.address.slice(0, 12) + "..."}
</span>
</Fragment>
: <span key={`mob-ha-${reply.cid}`}>
{reply.author.address}
</span>}
)
2023-02-28 16:34:33 +01:00
</span>
2023-03-25 21:44:28 +01:00
</span>
&nbsp;
<span key={`dt-${reply.cid}`} className="date-time" data-utc="data">{getDate(reply.timestamp)}</span>
&nbsp;
<span key={`pn-${reply.cid}`} className="post-number">
<Link to="" key={`pl1-${reply.cid}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
<button id="reply-button" style={{ all: 'unset', cursor: 'pointer' }} key={`pl2-${reply.cid}`} onClick={handleReplyOpen} title="Reply to this post">{reply.cid.slice(0, 8)}</button>
</span>&nbsp;
<button key={`pmb-${reply.cid}`} className="post-menu-button" onClick={handleVoidClick} title="Post menu" style={{ all: 'unset', cursor: 'pointer' }} data-cmd="post-menu"></button>
<div id="backlink-id" className="backlink">
{reply.replies?.pages.topAll.comments
.sort((a, b) => a.timestamp - b.timestamp)
.map((reply) => (
<div key={`div-${reply.cid}`} style={{display: 'inline-block'}}>
<Link to={handleVoidClick} key={`ql-${reply.cid}`}
className="quote-link"
onClick={(event) => handleQuoteClick(reply, event)}>
c/{reply.cid.slice(0, 8)}</Link>
&nbsp;
</div>
))
}
</div>
</div>
{reply.content ? (
reply.content.length > 1000 ?
<Fragment key={`fragment8-${reply.cid}`}>
<blockquote key={`pm-${reply.cid}`} className="post-message">
<Link to="" key={`r-pm-${reply.cid}`} className="quotelink" onClick={handleVoidClick}>
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
</Link>
{reply.content.slice(0, 1000)}
<span key={`ttl-s-${reply.cid}`} className="ttl"> (...)
<br key={`ttl-s-br1-${reply.cid}`} /><br key={`ttl-s-br2${reply.cid}`} />
Comment too long.&nbsp;
<Link key={`ttl-l-${reply.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
&nbsp;to view. </span>
</blockquote>
</Fragment>
: <blockquote key={`pm-${reply.cid}`} className="post-message">
<Link to={handleVoidClick} key={`r-pm-${reply.cid}`} className="quotelink" onClick={(event) => handleQuoteClick(reply, event)}>
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
</Link>
{reply.content}
</blockquote>)
: null}
</div>
</div>
)
})}
</div>
<div key={`mob-t-${thread.cid}`} className="thread-mobile">
<hr key={`mob-hr-${thread.cid}`} />
<div key={`mob-c-${thread.cid}`} className="op-container">
<div key={`mob-po-${thread.cid}`} className="post op">
<div key={`mob-pi-${thread.cid}`} className="post-info-mobile">
<button key={`mob-pb-${thread.cid}`} className="post-menu-button-mobile" onClick={handleVoidClick} style={{ all: 'unset', cursor: 'pointer' }}>...</button>
<span key={`mob-nbm-${thread.cid}`} className="name-block-mobile">
{thread.author.displayName
? thread.author.displayName.length > 15
? <Fragment key={`fragment9-${thread.cid}`}>
<span key={`mob-n-${thread.cid}`} className="name-mobile"
data-tooltip-id="tooltip"
data-tooltip-content={thread.author.displayName}
data-tooltip-place="top">
{thread.author.displayName.slice(0, 15) + " (...)"}
</span>
</Fragment>
: <span key={`mob-n-${thread.cid}`} className="name-mobile">
{thread.author.displayName}</span>
: <span key={`mob-n-${thread.cid}`} className="name-mobile">
2023-02-28 16:34:33 +01:00
Anonymous</span>}
2023-02-26 19:13:46 +01:00
&nbsp;
2023-03-25 21:44:28 +01:00
<span key={`mob-pa-${thread.cid}`} className="poster-address-mobile">
2023-03-05 14:15:51 +01:00
(u/
2023-03-25 21:44:28 +01:00
{thread.author.address.length > 15 ?
<Fragment key={`fragment10-${thread.cid}`}>
<span key={`mob-ha-${thread.cid}`} className="highlight-address-mobile"
2023-03-25 21:38:52 +01:00
data-tooltip-id="tooltip"
2023-03-25 21:44:28 +01:00
data-tooltip-content={thread.author.address}
2023-02-28 16:34:33 +01:00
data-tooltip-place="top">
2023-03-25 21:44:28 +01:00
{thread.author.address.slice(0, 15) + "..."}
2023-02-28 16:34:33 +01:00
</span>
2023-03-07 13:07:36 +01:00
</Fragment>
2023-03-25 21:44:28 +01:00
: <span key={`mob-ha-${thread.cid}`} className="highlight-address-mobile">
{thread.author.address}
2023-02-28 16:34:33 +01:00
</span>}
2023-03-01 17:55:35 +01:00
)&nbsp;
2023-02-26 19:13:46 +01:00
</span>
2023-03-25 21:44:28 +01:00
<br key={`mob-br1-${thread.cid}`} />
{thread.title ? (
thread.title.length > 30 ?
<Fragment key={`fragment11-${thread.cid}`}>
<span key={`mob-t-${thread.cid}`} className="subject-mobile"
data-tooltip-id="tooltip"
data-tooltip-content={thread.title}
data-tooltip-place="top">
{thread.title.slice(0, 30) + " (...)"}
</span>
</Fragment>
: <span key={`mob-t-${thread.cid}`} className="subject-mobile">
{thread.title}
</span>)
: null}
2023-02-26 19:13:46 +01:00
</span>
2023-03-25 21:44:28 +01:00
<span key={`mob-dt-${thread.cid}`} className="date-time-mobile">
{getDate(thread.timestamp)}
&nbsp;
<Link to="" key={`mob-no-${thread.cid}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
<button id="reply-button" style={{ all: 'unset', cursor: 'pointer' }} key={`mob-no2-${thread.cid}`} onClick={handleReplyOpen} title="Reply to this post">{thread.cid.slice(0, 8)}</button>
2023-02-26 19:13:46 +01:00
</span>
</div>
2023-03-25 21:44:28 +01:00
{commentMediaInfo?.url ? (
commentMediaInfo.type === "webpage" ? (
<div key={`mob-f-${thread.cid}`} className="file-mobile">
<span key={`mob-ft${thread.cid}`} className="file-thumb-mobile">
<img key={`mob-img-${thread.cid}`} src={thread.thumbnailUrl} alt="thumbnail" onError={(e) => e.target.src = fallbackImgUrl} />
<div key={`mob-fi-${thread.cid}`} className="file-info-mobile">{commentMediaInfo.type}</div>
</span>
</div>
) : commentMediaInfo.type === "image" ? (
<div key={`mob-f-${thread.cid}`} className="file-mobile">
<span key={`mob-ft${thread.cid}`} className="file-thumb-mobile">
<img key={`mob-img-${thread.cid}`} src={commentMediaInfo.url} alt={commentMediaInfo.type} onError={(e) => e.target.src = fallbackImgUrl} />
<div key={`mob-fi-${thread.cid}`} className="file-info-mobile">{commentMediaInfo.type}</div>
</span>
</div>
) : commentMediaInfo.type === "video" ? (
<div key={`mob-f-${thread.cid}`} className="file-mobile">
<span key={`mob-ft${thread.cid}`} className="file-thumb-mobile">
<VideoThumbnail
videoUrl={commentMediaInfo.url}
thumbnailHandler={(thumbnail) => {
const img = document.querySelector(`img[key="img-${thread.cid}"]`);
if (img) {
img.src = thumbnail;
}
}}
/>
<div key={`mob-fi-${thread.cid}`} className="file-info-mobile">{commentMediaInfo.type}</div>
</span>
</div>
) : commentMediaInfo.type === "audio" ? (
<div key={`mob-f-${thread.cid}`} className="file-mobile">
<span key={`mob-ft${thread.cid}`} className="file-thumb-mobile">
<audio key={`mob-img-${thread.cid}`} src={commentMediaInfo.url} alt={commentMediaInfo.type} onError={(e) => e.target.src = fallbackImgUrl} />
<div key={`mob-fi-${thread.cid}`} className="file-info-mobile">{commentMediaInfo.type}</div>
</span>
</div>
) : null
) : null}
{thread.content ? (
thread.content.length > 1500 ?
<Fragment key={`fragment12-${thread.cid}`}>
<blockquote key={`mob-bq-${thread.cid}`} className="post-message-mobile">
{thread.content.slice(0, 1500)}
<span key={`mob-ttl-s-${thread.cid}`} className="ttl"> (...)
<br key={`mob-ttl-s-br1-${thread.cid}`} /><br key={`mob-ttl-s-br2${thread.cid}`} />
Post too long.&nbsp;
<Link key={`mob-ttl-l-${thread.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
&nbsp;to view. </span>
</blockquote>
</Fragment>
: <blockquote key={`mob-bq-${thread.cid}`} className="post-message-mobile">
{thread.content}
</blockquote>)
: null}
</div>
<div key={`mob-pl-${thread.cid}`} className="post-link-mobile">
<span key={`mob-info-${thread.cid}`} className="info-mobile">{thread.replyCount} Replies / ? Images</span>
<Link key={`rl2-${thread.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="button-mobile" >View Thread</Link>
2023-02-26 19:13:46 +01:00
</div>
</div>
2023-03-25 21:44:28 +01:00
{renderedComments.map(reply => {
return (
<div key={`mob-rc1-${Math.random()}`} className="reply-container">
<div key={`mob-pr-${reply.cid}`} className="post-reply">
<div key={`mob-pi-${reply.cid}`} className="post-info-mobile">
<button key={`pmbm-${reply.cid}`} className="post-menu-button-mobile" title="Post menu" style={{ all: 'unset', cursor: 'pointer' }}>...</button>
<span key={`mob-nb-${reply.cid}`} className="name-block-mobile">
{reply.author.displayName
? reply.author.displayName.length > 12
? <Fragment key={`fragment13-${reply.cid}`}>
<span key={`mob-n-${reply.cid}`} className="name-mobile"
data-tooltip-id="tooltip"
data-tooltip-content={reply.author.displayName}
data-tooltip-place="top">
{reply.author.displayName.slice(0, 12) + " (...)"}
</span>
</Fragment>
: <span key={`mob-n-${reply.cid}`} className="name-mobile">
{reply.author.displayName}</span>
: <span key={`mob-n-${reply.cid}`} className="name-mobile">
Anonymous</span>}
&nbsp;
<span key={`mob-pa-${reply.cid}`} className="poster-address-mobile">
(u/
{reply.author.address.length > 10 ?
<Fragment key={`fragment14-${reply.cid}`}>
<span key={`mob-ha-${reply.cid}`} className="highlight-address-mobile"
data-tooltip-id="tooltip"
data-tooltip-content={reply.author.address}
data-tooltip-place="top">
{reply.author.address.slice(0, 10) + "..."}
</span>
</Fragment>
: <span key={`mob-ha-${reply.cid}`} className="highlight-address-mobile">
{reply.author.address}
</span>}
)&nbsp;
</span>
<br key={`mob-br-${reply.cid}`} />
</span>
<span key={`mob-dt-${reply.cid}`} className="date-time-mobile">
{getDate(reply.timestamp)}&nbsp;
<Link to="" key={`mob-pl1-${reply.cid}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
<button id="reply-button" style={{ all: 'unset', cursor: 'pointer' }} key={`mob-pl2-${reply.cid}`} onClick={handleReplyOpen} title="Reply to this post">{reply.cid.slice(0, 8)}</button>
</span>
</div>
{reply.content ? (
reply.content.length > 1000 ?
<Fragment key={`fragment15-${reply.cid}`}>
<blockquote key={`mob-pm-${reply.cid}`} className="post-message">
<Link to="" key={`mob-r-pm-${reply.cid}`} className="quotelink" onClick={handleVoidClick}>
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
</Link>
{reply.content.slice(0, 1000)}
<span key={`mob-ttl-s-${reply.cid}`} className="ttl"> (...)
<br key={`mob-ttl-s-br1-${reply.cid}`} /><br key={`mob-ttl-s-br2${reply.cid}`} />
Comment too long.&nbsp;
<Link key={`mob-ttl-l-${reply.cid}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
&nbsp;to view. </span>
</blockquote>
</Fragment>
: <blockquote key={`mob-pm-${reply.cid}`} className="post-message">
<Link to={handleVoidClick} key={`mob-r-pm-${reply.cid}`} className="quotelink" onClick={(event) => handleQuoteClick(reply, event)}>
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
</Link>
{reply.content}
</blockquote>)
: null}
</div>
</div>
)})}
</div>
</Fragment>
)})}
</InfiniteScroll>
)}
</div>
2023-02-05 22:15:38 +01:00
</BoardForm>
2023-02-04 22:10:54 +01:00
</Container>
2023-02-07 22:55:00 +01:00
);
2023-01-31 23:08:57 +01:00
}
export default Board;