mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
828 lines
39 KiB
React
828 lines
39 KiB
React
import React, { useState, useEffect, useContext, Fragment } from 'react';
|
||
import { Link, useNavigate, useParams, useLocation } from 'react-router-dom';
|
||
import { BoardContext } from '../App';
|
||
import { Container, NavBar, Header, Break, PostFormLink, PostFormTable, PostForm, TopBar, BoardForm } from './styles/Board.styled';
|
||
import ImageBanner from './ImageBanner';
|
||
import { useFeed, useAccountsActions } from '@plebbit/plebbit-react-hooks';
|
||
import InfiniteScroll from 'react-infinite-scroller';
|
||
import { Tooltip } from 'react-tooltip';
|
||
import getDate from '../utils/getDate';
|
||
import renderComments from '../utils/renderComments';
|
||
|
||
|
||
const Board = ({ setBodyStyle }) => {
|
||
const [defaultSubplebbits, setDefaultSubplebbits] = useState([]);
|
||
const { selectedTitle, setSelectedTitle, selectedAddress, setSelectedAddress, setSelectedThread, selectedStyle, setSelectedStyle } = useContext(BoardContext);
|
||
const [showPostFormLink, setShowPostFormLink] = useState(true);
|
||
const [showPostForm, setShowPostForm] = useState(false);
|
||
const [name, setName] = useState('');
|
||
const [subject, setSubject] = useState('');
|
||
const [comment, setComment] = useState('');
|
||
const { publishComment } = useAccountsActions();
|
||
const navigate = useNavigate();
|
||
const location = useLocation();
|
||
const [prevScrollPos, setPrevScrollPos] = useState(0);
|
||
const [visible, setVisible] = useState(true);
|
||
const [endIndex, setEndIndex] = useState(2);
|
||
const { feed, hasMore, loadMore } = useFeed([`${selectedAddress}`], 'new');
|
||
const [selectedFeed, setSelectedFeed] = useState(feed);
|
||
const renderedFeed = selectedFeed.slice(0, endIndex);
|
||
const { subplebbitAddress } = useParams();
|
||
|
||
|
||
// temporary title from JSON, gets subplebbitAddress from URL
|
||
useEffect(() => {
|
||
setSelectedAddress(subplebbitAddress);
|
||
const selectedSubplebbit = defaultSubplebbits.find((subplebbit) => subplebbit.address === subplebbitAddress);
|
||
if (selectedSubplebbit) {
|
||
setSelectedTitle(selectedSubplebbit.title);
|
||
}
|
||
}, [subplebbitAddress, setSelectedAddress, setSelectedTitle, defaultSubplebbits]);
|
||
|
||
// sets useFeed to address from URL
|
||
useEffect(() => {
|
||
setSelectedFeed(feed);
|
||
}, [feed]);
|
||
|
||
// fetches default subplebbits from JSON
|
||
useEffect(() => {
|
||
let didCancel = false;
|
||
fetch(
|
||
"https://raw.githubusercontent.com/plebbit/temporary-default-subplebbits/master/subplebbits.json",
|
||
{ cache: "no-cache" }
|
||
)
|
||
.then((res) => res.json())
|
||
.then(res => {
|
||
if (!didCancel) {
|
||
setDefaultSubplebbits(res);
|
||
}
|
||
});
|
||
return () => {
|
||
didCancel = true;
|
||
};
|
||
}, []);
|
||
|
||
// mobile navbar scroll effect
|
||
useEffect(() => {
|
||
const handleScroll = () => {
|
||
const currentScrollPos = window.pageYOffset;
|
||
|
||
setVisible(prevScrollPos > currentScrollPos || currentScrollPos < 10);
|
||
setPrevScrollPos(currentScrollPos);
|
||
};
|
||
|
||
window.addEventListener('scroll', handleScroll);
|
||
|
||
return () => window.removeEventListener('scroll', handleScroll);
|
||
}, [prevScrollPos, visible]);
|
||
|
||
// reset endIndex whenever selectedAddress changes
|
||
useEffect(() => {
|
||
setEndIndex(2);
|
||
}, [selectedAddress]);
|
||
|
||
// post route handling
|
||
useEffect(() => {
|
||
const path = location.pathname;
|
||
if (path.endsWith('/post')) {
|
||
setShowPostFormLink(false);
|
||
setShowPostForm(true);
|
||
} else {
|
||
setShowPostFormLink(true);
|
||
setShowPostForm(false);
|
||
}
|
||
}, [location.pathname]);
|
||
|
||
|
||
|
||
const tryLoadMore = async () => {
|
||
try {
|
||
loadMore();
|
||
const newFeed = [...selectedFeed, ...feed];
|
||
setSelectedFeed(newFeed);
|
||
setEndIndex(endIndex + 2);
|
||
} catch (e) {
|
||
await new Promise(resolve => setTimeout(resolve, 1000));
|
||
}
|
||
};
|
||
|
||
|
||
const onChallengeVerification = (challengeVerification) => {
|
||
if (challengeVerification.challengeSuccess === true) {
|
||
console.log('challenge success', {publishedCid: challengeVerification.publication.cid})
|
||
}
|
||
else if (challengeVerification.challengeSuccess === false) {
|
||
console.error('challenge failed', {reason: challengeVerification.reason, errors: challengeVerification.errors});
|
||
alert("Error: You seem to have mistyped the CAPTCHA. Please try again.");
|
||
}
|
||
}
|
||
|
||
|
||
const onChallenge = async (challenges, comment) => {
|
||
let challengeAnswers = [];
|
||
try {
|
||
challengeAnswers = await getChallengeAnswersFromUser(challenges)
|
||
}
|
||
catch (error) {
|
||
console.log(error);
|
||
}
|
||
if (challengeAnswers) {
|
||
await comment.publishChallengeAnswers(challengeAnswers)
|
||
}
|
||
}
|
||
|
||
|
||
const onError = (error) => console.error(error)
|
||
|
||
|
||
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 = () => {
|
||
const inputEl = document.getElementById('t-resp');
|
||
const cntEl = document.getElementById('t-cnt');
|
||
cntEl.appendChild(challengeImg);
|
||
inputEl.focus();
|
||
|
||
const handleKeyDown = (event) => {
|
||
if (event.key === 'Enter') {
|
||
const challengeResponse = inputEl.value;
|
||
inputEl.value = '';
|
||
|
||
if (cntEl.contains(challengeImg)) {
|
||
cntEl.removeChild(challengeImg);
|
||
}
|
||
|
||
document.removeEventListener('keydown', handleKeyDown);
|
||
|
||
resolve(challengeResponse);
|
||
}
|
||
};
|
||
|
||
document.addEventListener('keydown', handleKeyDown);
|
||
};
|
||
|
||
challengeImg.onerror = () => {
|
||
reject(new Error('Could not load challenge image'));
|
||
};
|
||
});
|
||
};
|
||
|
||
|
||
|
||
const handleScroll = (event) => {
|
||
const { scrollTop, scrollHeight, clientHeight } = event.currentTarget;
|
||
if (scrollTop + clientHeight >= scrollHeight) {
|
||
setEndIndex(endIndex + 5);
|
||
}
|
||
};
|
||
|
||
|
||
const handleVoidClick = () => {};
|
||
|
||
// desktop navbar board select functionality
|
||
const handleClickTitle = (title, address) => {
|
||
setSelectedTitle(title);
|
||
setSelectedAddress(address);
|
||
setSelectedFeed(feed.filter(feed => feed.title === title));
|
||
};
|
||
|
||
// 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}`);
|
||
}
|
||
|
||
|
||
const handleClickHelp = () => {
|
||
alert("- The CAPTCHA loads after you click \"Post\" \n- The CAPTCHA is case-sensitive. \n- Make sure to not block any cookies set by plebchan.");
|
||
};
|
||
|
||
|
||
const handleClickForm = () => {
|
||
setShowPostFormLink(false);
|
||
setShowPostForm(true);
|
||
navigate(`/${selectedAddress}/post`);
|
||
};
|
||
|
||
|
||
const handleClickThread = (thread) => {
|
||
setSelectedThread(thread);
|
||
}
|
||
|
||
|
||
const handlePublishComment = async () => {
|
||
try {
|
||
const pendingComment = await publishComment({
|
||
content: comment,
|
||
title: subject,
|
||
subplebbitAddress: selectedAddress,
|
||
onChallengeVerification,
|
||
onChallenge,
|
||
onError,
|
||
});
|
||
console.log(`Comment pending with index: ${pendingComment.index}`);
|
||
setName('');
|
||
setSubject('');
|
||
setComment('');
|
||
} catch (error) {
|
||
console.error(error);
|
||
}
|
||
};
|
||
|
||
|
||
const handleStyleChange = (event) => {
|
||
switch (event.target.value) {
|
||
case "Yotsuba":
|
||
setBodyStyle({
|
||
background: "#ffe url(/assets/fade.png) top repeat-x",
|
||
color: "maroon",
|
||
fontFamily: "Arial, Helvetica, sans-serif"
|
||
});
|
||
setSelectedStyle("Yotsuba");
|
||
break;
|
||
|
||
case "Yotsuba B":
|
||
setBodyStyle({
|
||
background: "#eef2ff url(/assets/fade-blue.png) top center repeat-x",
|
||
color: "#000",
|
||
fontFamily: "Arial, Helvetica, sans-serif"
|
||
});
|
||
setSelectedStyle("Yotsuba B");
|
||
break;
|
||
|
||
case "Futaba":
|
||
setBodyStyle({
|
||
background: "#ffe",
|
||
color: "maroon",
|
||
fontFamily: "times new roman, serif"
|
||
});
|
||
setSelectedStyle("Futaba");
|
||
break;
|
||
|
||
case "Burichan":
|
||
setBodyStyle({
|
||
background: "#eef2ff",
|
||
color: "#000",
|
||
fontFamily: "times new roman, serif"
|
||
});
|
||
setSelectedStyle("Burichan");
|
||
break;
|
||
|
||
case "Tomorrow":
|
||
setBodyStyle({
|
||
background: "#1d1f21 none",
|
||
color: "#c5c8c6",
|
||
fontFamily: "Arial, Helvetica, sans-serif"
|
||
});
|
||
setSelectedStyle("Tomorrow");
|
||
break;
|
||
|
||
case "Photon":
|
||
setBodyStyle({
|
||
background: "#eee none",
|
||
color: "#333",
|
||
fontFamily: "Arial, Helvetica, sans-serif"
|
||
});
|
||
setSelectedStyle("Photon");
|
||
break;
|
||
|
||
default:
|
||
setBodyStyle({
|
||
background: "#ffe url(/assets/fade.png) top repeat-x",
|
||
color: "maroon",
|
||
fontFamily: "Arial, Helvetica, sans-serif"
|
||
});
|
||
setSelectedStyle("Yotsuba");
|
||
}
|
||
}
|
||
|
||
|
||
|
||
return (
|
||
<Container>
|
||
<NavBar selectedStyle={selectedStyle}>
|
||
<>
|
||
{defaultSubplebbits.map(subplebbit => (
|
||
<span className="boardList" key={`span-${subplebbit.address}`}>
|
||
[
|
||
<Link to={`/${subplebbit.address}`} key={`a-${subplebbit.address}`} onClick={() => handleClickTitle(subplebbit.title, subplebbit.address)}
|
||
>{subplebbit.title}</Link>
|
||
]
|
||
</span>
|
||
))}
|
||
<span className="nav">
|
||
[
|
||
<Link to="" onClick={handleVoidClick}>Settings</Link>
|
||
]
|
||
[
|
||
<Link to="/" onClick={() => handleStyleChange({target: {value: "Yotsuba"}}
|
||
)}>Home</Link>
|
||
]
|
||
</span>
|
||
<div id="board-nav-mobile" style={{ top: visible ? 0 : '-23px' }}>
|
||
<div className="board-select">
|
||
<strong>Board</strong>
|
||
|
||
<select id="board-select-mobile" value={selectedAddress} onChange={handleSelectChange}>
|
||
{defaultSubplebbits.map(subplebbit => (
|
||
<option key={`option-${subplebbit.address}`} value={subplebbit.address}
|
||
>{subplebbit.title}</option>
|
||
))}
|
||
</select>
|
||
</div>
|
||
<div className="page-jump">
|
||
<Link to="" onClick={handleVoidClick}>Settings</Link>
|
||
|
||
<Link to="/" onClick={() => handleStyleChange({target: {value: "Yotsuba"}}
|
||
)}>Home</Link>
|
||
</div>
|
||
</div>
|
||
<div id="separator-mobile"> </div>
|
||
<div id="separator-mobile"> </div>
|
||
</>
|
||
</NavBar>
|
||
<Header selectedStyle={selectedStyle}>
|
||
<>
|
||
<div className="banner">
|
||
<ImageBanner />
|
||
</div>
|
||
<>
|
||
<div className="board-title">{selectedTitle}</div>
|
||
<div className="board-address">p/{selectedAddress}</div>
|
||
</>
|
||
</>
|
||
</Header>
|
||
<Break selectedStyle={selectedStyle} />
|
||
<PostForm selectedStyle={selectedStyle}>
|
||
<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>
|
||
</PostFormLink>
|
||
<PostFormTable id="post-form" showPostForm={showPostForm} selectedStyle={selectedStyle} className="post-form">
|
||
<tbody>
|
||
<tr data-type="Name">
|
||
<td id="td-name">Name</td>
|
||
<td>
|
||
<input name="name" type="text" tabIndex={1} placeholder="Anonymous" value={name} onChange={(event) => setName(event.target.value)} />
|
||
</td>
|
||
</tr>
|
||
<tr data-type="Subject">
|
||
<td>Subject</td>
|
||
<td>
|
||
<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} />
|
||
</td>
|
||
</tr>
|
||
<tr data-type="Comment">
|
||
<td>Comment</td>
|
||
<td>
|
||
<textarea name="com" cols="48" rows="4" tabIndex={4} wrap="soft" value={comment} onChange={(event) => setComment(event.target.value)}></textarea>
|
||
</td>
|
||
</tr>
|
||
<tr id="captchaFormPart">
|
||
<td>Verification</td>
|
||
<td colSpan={2}>
|
||
<div id="t-root">
|
||
<input id="t-resp" name="t-response" placeholder="Type the CAPTCHA here and hit return" autoComplete='off' type="text" />
|
||
<button id="t-help" type="button" onClick={handleClickHelp} data-tip="Help" tabIndex={-1}>?</button>
|
||
<div id="t-cnt">
|
||
</div>
|
||
</div>
|
||
</td>
|
||
</tr>
|
||
<tr data-type="File">
|
||
<td>Embed File</td>
|
||
<td>
|
||
<input name="embed" type="text" tabIndex={7} placeholder="Paste link" />
|
||
</td>
|
||
</tr>
|
||
<tr></tr>
|
||
</tbody>
|
||
</PostFormTable>
|
||
</PostForm>
|
||
<TopBar selectedStyle={selectedStyle}>
|
||
<hr />
|
||
<span className="style-changer">
|
||
Style:
|
||
|
||
<select id="style-selector" onChange={handleStyleChange} value={selectedStyle}>
|
||
<option value="Yotsuba">Yotsuba</option>
|
||
<option value="Yotsuba B">Yotsuba B</option>
|
||
<option value="Futaba">Futaba</option>
|
||
<option value="Burichan">Burichan</option>
|
||
<option value="Tomorrow">Tomorrow</option>
|
||
<option value="Photon">Photon</option>
|
||
</select>
|
||
</span>
|
||
<div id="catalog-button-desktop">
|
||
[
|
||
<Link to={`/${selectedAddress}/catalog`}>Catalog</Link>
|
||
]
|
||
</div>
|
||
<div id="catalog-button-mobile">
|
||
<span className="btn-wrap">
|
||
<Link to={`/${selectedAddress}/catalog`}>Catalog</Link>
|
||
</span>
|
||
</div>
|
||
</TopBar>
|
||
<BoardForm selectedStyle={selectedStyle}>
|
||
<div onScroll={handleScroll} className="board">
|
||
<InfiniteScroll
|
||
pageStart={0}
|
||
loadMore={tryLoadMore}
|
||
hasMore={hasMore}
|
||
loader={<div key={`loader-${Math.random()}`}>Loading...</div>}
|
||
>
|
||
{renderedFeed.map(thread => {
|
||
const { replies: { pages: { topAll: { comments } } } } = thread;
|
||
const { renderedComments, omittedCount } = renderComments(comments);
|
||
return (
|
||
<Fragment key={`fragment1-${Math.random()}`}>
|
||
<div key={`t-${Math.random()}`} className="thread">
|
||
<div key={`c-${Math.random()}`} className="op-container">
|
||
<div key={`po-${Math.random()}`} className="post op">
|
||
<hr key={`hr-${Math.random()}`} />
|
||
<div key={`pi-${Math.random()}`} className="post-info">
|
||
<div key={`f-${Math.random()}`} className="file">
|
||
<div key={`ft-${Math.random()}`} className="file-text">
|
||
File:
|
||
<a key={`fa-${Math.random()}`} href={`${thread.link}`} target="_blank">filename.something</a> (metadata)
|
||
</div>
|
||
<Link to="" key={`fta-${Math.random()}`} onClick={handleVoidClick} target="_blank" className="file-thumb">
|
||
<img key={`fti-${Math.random()}`} src="/assets/plebchan-psycho.png" alt="filename.something" />
|
||
</Link>
|
||
</div>
|
||
<span key={`nb-${Math.random()}`} className="name-block">
|
||
{thread.title ? (
|
||
thread.title.length > 75 ?
|
||
<Fragment key={`fragment2-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-tm-${Math.random()}`} id="tt-title-mobile" className="tooltip" />
|
||
<span key={`q-${Math.random()}`} className="title"
|
||
data-tooltip-id="tt-title-mobile"
|
||
data-tooltip-content={thread.title}
|
||
data-tooltip-place="top">
|
||
{thread.title.slice(0, 75) + " (...)"}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`q-${Math.random()}`} className="title">
|
||
{thread.title}
|
||
</span>)
|
||
: null}
|
||
{thread.author.displayName
|
||
? thread.author.displayName.length > 20
|
||
? <Fragment key={`fragment3-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-nm-${Math.random()}`} id="tt-name-mobile" className="tooltip" />
|
||
<span key={`n-${Math.random()}`} className="name"
|
||
data-tooltip-id="tt-name-mobile"
|
||
data-tooltip-content={thread.author.displayName}
|
||
data-tooltip-place="top">
|
||
{thread.author.displayName.slice(0, 20) + " (...)"}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`n-${Math.random()}`} className="name">
|
||
{thread.author.displayName}</span>
|
||
: <span key={`n-${Math.random()}`} className="name">
|
||
Anonymous</span>}
|
||
|
||
(u/
|
||
{thread.author.address.length > 15 ?
|
||
<Fragment key={`fragment4-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-am-${Math.random()}`} id="tt-address-mobile" className="tooltip" />
|
||
<span key={`pa-${Math.random()}`} className="poster-address"
|
||
data-tooltip-id="tt-address-mobile"
|
||
data-tooltip-content={thread.author.address}
|
||
data-tooltip-place="top">
|
||
{thread.author.address.slice(0, 15) + "..."}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`pa-${Math.random()}`} className="poster-address">
|
||
{thread.author.address}
|
||
</span>})
|
||
|
||
<span key={`dt-${Math.random()}`} className="date-time" data-utc="data">{getDate(thread.timestamp)}</span>
|
||
|
||
<span key={`pn-${Math.random()}`} className="post-number">
|
||
<Link to="" key={`pl1-${Math.random()}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
|
||
<Link to="" key={`pl2-${Math.random()}`} onClick={handleVoidClick} title="Reply to this post">{thread.cid.slice(0, 8)}</Link>
|
||
|
||
<span key={`rl1-${Math.random()}`}>
|
||
[
|
||
<Link key={`rl2-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="reply-link" >Reply</Link>
|
||
]
|
||
</span>
|
||
</span>
|
||
<Link to="" key={`pmb-${Math.random()}`} className="post-menu-button" onClick={handleVoidClick} title="Post menu" data-cmd="post-menu">▶</Link>
|
||
<div key={`bi-${Math.random()}`} id="backlink-id" className="backlink">
|
||
{thread.replies?.pages.topAll.comments
|
||
.sort((a, b) => a.timestamp - b.timestamp)
|
||
.map((reply) => (
|
||
<div key={`div-${Math.random()}`} style={{display: 'inline-block'}}>
|
||
<Link key={`ql-${Math.random()}`}
|
||
to="" className="quote-link" onClick={handleVoidClick}>
|
||
c/{reply.cid.slice(0, 8)}</Link>
|
||
|
||
</div>
|
||
))
|
||
}
|
||
{/* <span key={`ql1-${Math.random()}`}>
|
||
<Link to="" key={`ql2-${Math.random()}`} className="quote-link" onClick={handleVoidClick}>c/{thread.cid.slice(0, 8)}</Link>
|
||
</span> */}
|
||
</div>
|
||
</span>
|
||
{thread.content ? (
|
||
thread.content.length > 2000 ?
|
||
<Fragment key={`fragment5-${Math.random()}`}>
|
||
<blockquote key={`bq-${Math.random()}`}>
|
||
{thread.content.slice(0, 2000)}
|
||
<span key={`ttl-s-${Math.random()}`} className="ttl"> (...)
|
||
<br key={`ttl-s-br1-${Math.random()}`} /><br key={`ttl-s-br2${Math.random()}`} />
|
||
Post too long.
|
||
<Link key={`ttl-l-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
|
||
to view. </span>
|
||
</blockquote>
|
||
</Fragment>
|
||
: <blockquote key={`bq-${Math.random()}`}>
|
||
{thread.content}
|
||
</blockquote>)
|
||
: null}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span key={`summary-${Math.random()}`} className="summary">
|
||
{omittedCount > 0 ? (
|
||
<span key={`oc-${Math.random()}`} className="ttl">
|
||
<span key={`oc1-${Math.random()}`}>
|
||
{omittedCount} post{omittedCount > 1 ? "s" : ""} omitted. Click
|
||
<Link key={`oc2-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">here</Link>
|
||
to view.
|
||
</span>
|
||
</span>) : null}
|
||
</span>
|
||
{renderedComments.map(reply => {
|
||
return (
|
||
<div key={`pc-${Math.random()}`} className="reply-container">
|
||
<div key={`sa-${Math.random()}`} className="side-arrows">{'>>'}</div>
|
||
<div key={`pr-${Math.random()}`} className="post-reply">
|
||
<div key={`pi-${Math.random()}`} className="post-info">
|
||
<span key={`nb-${Math.random()}`} className="nameblock">
|
||
{reply.author.displayName
|
||
? reply.author.displayName.length > 12
|
||
? <Fragment key={`fragment6-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-nm-${Math.random()}`} id="tt-name" className="tooltip" />
|
||
<span key={`mob-n-${Math.random()}`} className="name"
|
||
data-tooltip-id="tt-name"
|
||
data-tooltip-content={reply.author.displayName}
|
||
data-tooltip-place="top">
|
||
{reply.author.displayName.slice(0, 12) + " (...)"}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-n-${Math.random()}`} className="name">
|
||
{reply.author.displayName}</span>
|
||
: <span key={`mob-n-${Math.random()}`} className="name">
|
||
Anonymous</span>}
|
||
|
||
<span key={`pa-${Math.random()}`} className="poster-address">
|
||
(u/
|
||
{reply.author.address.length > 12 ?
|
||
<Fragment key={`fragment7-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-am-${Math.random()}`} id="tt-address" className="tooltip" />
|
||
<span key={`mob-ha-${Math.random()}`}
|
||
data-tooltip-id="tt-address"
|
||
data-tooltip-content={reply.author.address}
|
||
data-tooltip-place="top">
|
||
{reply.author.address.slice(0, 12) + "..."}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-ha-${Math.random()}`}>
|
||
{reply.author.address}
|
||
</span>}
|
||
)
|
||
</span>
|
||
</span>
|
||
|
||
<span key={`dt-${Math.random()}`} className="date-time" data-utc="data">{getDate(reply.timestamp)}</span>
|
||
|
||
<span key={`pn-${Math.random()}`} className="post-number">
|
||
<Link to="" key={`pl1-${Math.random()}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
|
||
<Link to="" key={`pl2-${Math.random()}`} onClick={handleVoidClick} title="Reply to this post">{reply.cid.slice(0, 8)}</Link>
|
||
</span>
|
||
<Link to="" key={`pmb-${Math.random()}`} className="post-menu-button" onClick={handleVoidClick} title="Post menu" data-cmd="post-menu">▶</Link>
|
||
</div>
|
||
{reply.content ? (
|
||
reply.content.length > 1000 ?
|
||
<Fragment key={`fragment8-${Math.random()}`}>
|
||
<blockquote key={`pm-${Math.random()}`} className="post-message">
|
||
<Link to="" key={`r-pm-${Math.random()}`} className="quotelink" onClick={handleVoidClick}>
|
||
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
|
||
</Link>
|
||
{reply.content.slice(0, 1000)}
|
||
<span key={`ttl-s-${Math.random()}`} className="ttl"> (...)
|
||
<br key={`ttl-s-br1-${Math.random()}`} /><br key={`ttl-s-br2${Math.random()}`} />
|
||
Comment too long.
|
||
<Link key={`ttl-l-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
|
||
to view. </span>
|
||
</blockquote>
|
||
</Fragment>
|
||
: <blockquote key={`pm-${Math.random()}`} className="post-message">
|
||
<Link to="" key={`r-pm-${Math.random()}`} className="quotelink" onClick={handleVoidClick}>
|
||
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
|
||
</Link>
|
||
{reply.content}
|
||
</blockquote>)
|
||
: null}
|
||
</div>
|
||
</div>
|
||
)})}
|
||
</div>
|
||
<div key={`mob-t-${Math.random()}`} className="thread-mobile">
|
||
<hr key={`mob-hr-${Math.random()}`} />
|
||
<div key={`mob-c-${Math.random()}`} className="op-container">
|
||
<div key={`mob-po-${Math.random()}`} className="post op">
|
||
<div key={`mob-pi-${Math.random()}`} className="post-info-mobile">
|
||
<Link to="" key={`mob-pb-${Math.random()}`} className="post-menu-button-mobile" onClick={handleVoidClick}>...</Link>
|
||
<span key={`mob-nbm-${Math.random()}`} className="name-block-mobile">
|
||
{thread.author.displayName
|
||
? thread.author.displayName.length > 15
|
||
? <Fragment key={`fragment9-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-nm-${Math.random()}`} id="tt-name-mobile" className="tooltip" />
|
||
<span key={`mob-n-${Math.random()}`} className="name-mobile"
|
||
data-tooltip-id="tt-name-mobile"
|
||
data-tooltip-content={thread.author.displayName}
|
||
data-tooltip-place="top">
|
||
{thread.author.displayName.slice(0, 15) + " (...)"}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-n-${Math.random()}`} className="name-mobile">
|
||
{thread.author.displayName}</span>
|
||
: <span key={`mob-n-${Math.random()}`} className="name-mobile">
|
||
Anonymous</span>}
|
||
|
||
<span key={`mob-pa-${Math.random()}`} className="poster-address-mobile">
|
||
(u/
|
||
{thread.author.address.length > 15 ?
|
||
<Fragment key={`fragment10-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-am-${Math.random()}`} id="tt-address-mobile" className="tooltip" />
|
||
<span key={`mob-ha-${Math.random()}`} className="highlight-address-mobile"
|
||
data-tooltip-id="tt-address-mobile"
|
||
data-tooltip-content={thread.author.address}
|
||
data-tooltip-place="top">
|
||
{thread.author.address.slice(0, 15) + "..."}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-ha-${Math.random()}`} className="highlight-address-mobile">
|
||
{thread.author.address}
|
||
</span>}
|
||
)
|
||
</span>
|
||
<br key={`mob-br1-${Math.random()}`} />
|
||
{thread.title ? (
|
||
thread.title.length > 30 ?
|
||
<Fragment key={`fragment11-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-tm-${Math.random()}`} id="tt-title-mobile" className="tooltip" />
|
||
<span key={`mob-t-${Math.random()}`} className="subject-mobile"
|
||
data-tooltip-id="tt-title-mobile"
|
||
data-tooltip-content={thread.title}
|
||
data-tooltip-place="top">
|
||
{thread.title.slice(0, 30) + " (...)"}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-t-${Math.random()}`} className="subject-mobile">
|
||
{thread.title}
|
||
</span>)
|
||
: null}
|
||
</span>
|
||
<span key={`mob-dt-${Math.random()}`} className="date-time-mobile">
|
||
{getDate(thread.timestamp)}
|
||
|
||
<Link to="" key={`mob-no-${Math.random()}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
|
||
<Link to="" key={`mob-no2-${Math.random()}`} onClick={handleVoidClick} title="Reply to this post">{thread.cid.slice(0, 8)}</Link>
|
||
</span>
|
||
</div>
|
||
<div key={`mob-f-${Math.random()}`} className="file-mobile">
|
||
<Link to="" key={`mob-ft${Math.random()}`} className="file-thumb-mobile" onClick={handleVoidClick} target="_blank">
|
||
<img key={`mob-img-${Math.random()}`} src="/assets/plebchan-psycho.png" alt="" />
|
||
<div key={`mob-fi-${Math.random()}`} className="file-info-mobile">58 KB JPG</div>
|
||
</Link>
|
||
</div>
|
||
{thread.content ? (
|
||
thread.content.length > 1500 ?
|
||
<Fragment key={`fragment12-${Math.random()}`}>
|
||
<blockquote key={`mob-bq-${Math.random()}`} className="post-message-mobile">
|
||
{thread.content.slice(0, 1500)}
|
||
<span key={`mob-ttl-s-${Math.random()}`} className="ttl"> (...)
|
||
<br key={`mob-ttl-s-br1-${Math.random()}`} /><br key={`mob-ttl-s-br2${Math.random()}`} />
|
||
Post too long.
|
||
<Link key={`mob-ttl-l-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
|
||
to view. </span>
|
||
</blockquote>
|
||
</Fragment>
|
||
: <blockquote key={`mob-bq-${Math.random()}`} className="post-message-mobile">
|
||
{thread.content}
|
||
</blockquote>)
|
||
: null}
|
||
</div>
|
||
<div key={`mob-pl-${Math.random()}`} className="post-link-mobile">
|
||
<span key={`mob-info-${Math.random()}`} className="info-mobile">{thread.replyCount} Replies / ? Images</span>
|
||
<Link key={`rl2-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="button-mobile" >View Thread</Link>
|
||
</div>
|
||
</div>
|
||
{renderedComments.map(reply => {
|
||
return (
|
||
<div key={`mob-rc-${Math.random()}`} className="reply-container">
|
||
<div key={`mob-pr-${Math.random()}`} className="post-reply">
|
||
<div key={`mob-pi-${Math.random()}`} className="post-info-mobile">
|
||
<a key={`pmbm-${Math.random()}`} className="post-menu-button-mobile" title="Post menu">...</a>
|
||
<span key={`mob-nb-${Math.random()}`} className="name-block-mobile">
|
||
{reply.author.displayName
|
||
? reply.author.displayName.length > 12
|
||
? <Fragment key={`fragment13-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-nm-${Math.random()}`} id="tt-name-mobile" className="tooltip" />
|
||
<span key={`mob-n-${Math.random()}`} className="name-mobile"
|
||
data-tooltip-id="tt-name-mobile"
|
||
data-tooltip-content={reply.author.displayName}
|
||
data-tooltip-place="top">
|
||
{reply.author.displayName.slice(0, 12) + " (...)"}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-n-${Math.random()}`} className="name-mobile">
|
||
{reply.author.displayName}</span>
|
||
: <span key={`mob-n-${Math.random()}`} className="name-mobile">
|
||
Anonymous</span>}
|
||
|
||
<span key={`mob-pa-${Math.random()}`} className="poster-address-mobile">
|
||
(u/
|
||
{reply.author.address.length > 10 ?
|
||
<Fragment key={`fragment14-${Math.random()}`}>
|
||
<Tooltip key={`mob-tt-am-${Math.random()}`} id="tt-address-mobile" className="tooltip" />
|
||
<span key={`mob-ha-${Math.random()}`} className="highlight-address-mobile"
|
||
data-tooltip-id="tt-address-mobile"
|
||
data-tooltip-content={reply.author.address}
|
||
data-tooltip-place="top">
|
||
{reply.author.address.slice(0, 10) + "..."}
|
||
</span>
|
||
</Fragment>
|
||
: <span key={`mob-ha-${Math.random()}`} className="highlight-address-mobile">
|
||
{reply.author.address}
|
||
</span>}
|
||
)
|
||
</span>
|
||
<br key={`mob-br-${Math.random()}`} />
|
||
</span>
|
||
<span key={`mob-dt-${Math.random()}`} className="date-time-mobile">
|
||
{getDate(reply.timestamp)}
|
||
<Link to="" key={`mob-pl1-${Math.random()}`} onClick={handleVoidClick} title="Link to this post">c/</Link>
|
||
<Link to="" key={`mob-pl2-${Math.random()}`} onClick={handleVoidClick} title="Reply to this post">{reply.cid.slice(0, 8)}</Link>
|
||
</span>
|
||
</div>
|
||
{reply.content ? (
|
||
reply.content.length > 1000 ?
|
||
<Fragment key={`fragment15-${Math.random()}`}>
|
||
<blockquote key={`mob-pm-${Math.random()}`} className="post-message">
|
||
<Link to="" key={`mob-r-pm-${Math.random()}`} className="quotelink" onClick={handleVoidClick}>
|
||
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
|
||
</Link>
|
||
{reply.content.slice(0, 1000)}
|
||
<span key={`mob-ttl-s-${Math.random()}`} className="ttl"> (...)
|
||
<br key={`mob-ttl-s-br1-${Math.random()}`} /><br key={`mob-ttl-s-br2${Math.random()}`} />
|
||
Comment too long.
|
||
<Link key={`mob-ttl-l-${Math.random()}`} to={`/${selectedAddress}/thread/${thread.cid}`} onClick={() => handleClickThread(thread.cid)} className="ttl-link">Click here</Link>
|
||
to view. </span>
|
||
</blockquote>
|
||
</Fragment>
|
||
: <blockquote key={`mob-pm-${Math.random()}`} className="post-message">
|
||
<Link to="" key={`mob-r-pm-${Math.random()}`} className="quotelink" onClick={handleVoidClick}>
|
||
{`c/${reply.parentCid.slice(0, 8)}`}{<br />}
|
||
</Link>
|
||
{reply.content}
|
||
</blockquote>)
|
||
: null}
|
||
</div>
|
||
</div>
|
||
)})}
|
||
</div>
|
||
</Fragment>
|
||
)})}
|
||
</InfiniteScroll>
|
||
</div>
|
||
</BoardForm>
|
||
</Container>
|
||
);
|
||
}
|
||
|
||
export default Board; |