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

1658 lines
65 KiB
React
Raw Normal View History

2023-08-24 15:28:49 +02:00
import React, { useCallback, useLayoutEffect, useEffect, useMemo, useRef, useState } from 'react';
import { createPortal } from 'react-dom';
2023-04-21 10:47:39 +02:00
import { Helmet } from 'react-helmet-async';
import { Link, useNavigate, useParams } from 'react-router-dom';
import { confirmAlert } from 'react-confirm-alert';
import { Tooltip } from 'react-tooltip';
2023-08-04 21:33:51 +02:00
import { Virtuoso } from 'react-virtuoso';
import { useAccount, useFeed, usePublishComment, usePublishCommentEdit, useSubplebbit, useSubscribe } from '@plebbit/plebbit-react-hooks';
2023-03-25 14:54:04 +01:00
import { debounce } from 'lodash';
import { Container, NavBar, Header, Break, PostForm, PostFormLink, PostFormTable, PostMenu, BoardForm } from '../styled/views/Board.styled';
2023-09-08 14:49:30 +02:00
import { Threads, PostPreview, PostMenuCatalog } from '../styled/views/Catalog.styled';
2023-08-13 21:53:04 +02:00
import { TopBar, Footer } from '../styled/views/Thread.styled';
import { AlertModal } from '../styled/modals/AlertModal.styled';
import EditModal from '../modals/EditModal';
import CreateBoardModal from '../modals/CreateBoardModal';
import ModerationModal from '../modals/ModerationModal';
2023-05-24 12:15:43 +02:00
import SettingsModal from '../modals/SettingsModal';
2023-08-22 16:18:55 +02:00
import BoardSettings from '../BoardSettings';
import BoardStats from '../BoardStats';
import CatalogLoader from '../CatalogLoader';
import ImageBanner from '../ImageBanner';
import OfflineIndicator from '../OfflineIndicator';
import VerifiedAuthor from '../VerifiedAuthor';
2023-07-10 11:15:35 +02:00
import countLinks from '../../utils/countLinks';
2023-03-23 15:49:57 +01:00
import getCommentMediaInfo from '../../utils/getCommentMediaInfo';
2023-08-24 15:28:49 +02:00
import getFormattedTime from '../../utils/getFormattedTime';
2023-08-22 14:17:38 +02:00
import handleShareClick from '../../utils/handleShareClick';
2023-03-20 17:08:05 +01:00
import handleStyleChange from '../../utils/handleStyleChange';
2023-06-27 10:35:21 +02:00
import useAnonModeRef from '../../hooks/useAnonModeRef';
2023-03-20 17:08:05 +01:00
import useClickForm from '../../hooks/useClickForm';
2023-04-04 14:42:22 +02:00
import useError from '../../hooks/useError';
2023-05-09 15:58:19 +02:00
import useStateString from '../../hooks/useStateString';
import useSuccess from '../../hooks/useSuccess';
2023-06-27 10:35:21 +02:00
import useAnonModeStore from '../../hooks/stores/useAnonModeStore';
2023-08-04 21:33:51 +02:00
import useFeedRows from '../../hooks/useFeedRows';
2023-06-16 14:42:23 +02:00
import useGeneralStore from '../../hooks/stores/useGeneralStore';
2023-08-04 21:33:51 +02:00
import useWindowWidth from '../../hooks/useWindowWidth';
2023-08-13 16:25:16 +02:00
import packageJson from '../../../package.json';
const {version} = packageJson;
let lastVirtuosoStates = {};
2023-09-10 14:12:25 +02:00
const commitRef = process?.env?.REACT_APP_COMMIT_REF ? ` ${process.env.REACT_APP_COMMIT_REF.slice(0, 7)}` : '';
2023-02-19 16:48:46 +01:00
2023-03-02 18:19:08 +01:00
2023-08-09 12:11:53 +02:00
const CatalogPost = ({post}) => {
const {
editedComment,
setDeletePost,
setIsAuthorDelete,
captchaResponse, setCaptchaResponse,
selectedAddress,
setIsModerationOpen,
setChallengesArray,
setIsAuthorEdit,
setIsCaptchaOpen,
setIsEditModalOpen,
isModerator,
setModeratingCommentCid,
setOriginalCommentContent,
setPendingComment,
setResolveCaptchaPromise,
selectedStyle,
setSelectedThread,
} = useGeneralStore(state => state);
const thread = post;
const commentMediaInfo = getCommentMediaInfo(thread);
const linkCount = countLinks(thread);
const fallbackImgUrl = "assets/filedeleted-res.gif";
const [isHoveringOnThread, setIsHoveringOnThread] = useState(false);
const [menuPosition, setMenuPosition] = useState({top: 0, left: 0});
2023-09-08 14:49:30 +02:00
const [popupPosition, setPopupPosition] = useState({top: 0, left: 0});
2023-08-09 12:11:53 +02:00
const [openMenuCid, setOpenMenuCid] = useState(null);
const [triggerPublishCommentEdit, setTriggerPublishCommentEdit] = useState(false);
const [isImageSearchOpen, setIsImageSearchOpen] = useState(false);
const [isClientRedirectMenuOpen, setIsClientRedirectMenuOpen] = useState(false);
2023-08-09 12:11:53 +02:00
const [commentCid, setCommentCid] = useState(null);
const threadMenuRefs = useRef({});
2023-09-08 14:49:30 +02:00
const threadRefs = useRef({});
2023-08-09 12:11:53 +02:00
const postMenuRef = useRef(null);
2023-09-08 14:49:30 +02:00
const popupRef = useRef(null);
const imageRef = useRef(null);
2023-08-09 12:11:53 +02:00
const postMenuCatalogRef = useRef(null);
2023-08-31 17:16:29 +02:00
const textRef = useRef(null);
2023-08-09 12:11:53 +02:00
const { subplebbitAddress } = useParams();
const [, setNewErrorMessage] = useError();
const [, setNewSuccessMessage] = useSuccess();
const subplebbit = useSubplebbit({subplebbitAddress: selectedAddress});
const account = useAccount();
2023-09-08 14:49:30 +02:00
const [spaceOnRight, setSpaceOnRight] = useState(null);
2023-08-22 21:45:23 +07:00
const [isCalculationDone,setIsCalculationDone] = useState(false);
2023-08-24 15:28:49 +02:00
const [hoverTimeoutId, setHoverTimeoutId] = useState(null);
const [isHoveringForMenu, setIsHoveringForMenu] = useState(false);
2023-08-31 17:16:29 +02:00
const textRect = textRef.current?.getBoundingClientRect();
const imageRect = imageRef.current?.getBoundingClientRect();
2023-09-07 15:50:27 +02:00
const popupRect = popupRef.current?.getBoundingClientRect();
2023-08-31 17:16:29 +02:00
const isMediaShowed = (thread.link && commentMediaInfo && (
commentMediaInfo.type === 'image' ||
commentMediaInfo.type === 'video' ||
(commentMediaInfo.type === 'webpage' &&
commentMediaInfo.thumbnail) ||
(commentMediaInfo.type === 'iframe' &&
commentMediaInfo.thumbnail))) ? true : false;
2023-08-22 21:45:23 +07:00
2023-09-08 15:48:33 +02:00
const { left: textLeft, right: textRight, width: textWidth } = textRef.current?.getBoundingClientRect() || {};
const { left: imageLeft, right: imageRight, width: imageWidth } = imageRef.current?.getBoundingClientRect() || {};
useLayoutEffect(() => {
const executeLayoutEffectLogic = () => {
let ref;
if (isMediaShowed) {
ref = imageRef.current;
2023-09-08 14:49:30 +02:00
} else {
2023-09-08 15:48:33 +02:00
ref = textRef.current;
}
if (ref && popupRef.current) {
const rect = ref.getBoundingClientRect();
const viewportWidth = document.documentElement.clientWidth;
const spaceRight = viewportWidth - (rect.left + rect.width);
const spaceLeft = rect.left;
if (spaceRight < 200 && spaceLeft > spaceRight && spaceLeft < 500) {
popupRef.current.style.maxWidth = `calc(
100vw -
${isMediaShowed ? imageWidth : textWidth}px
- ${spaceRight + 40}px
)`;
} else if (spaceRight < 200 && spaceLeft < spaceRight) {
popupRef.current.style.maxWidth = `calc(100vw - ${isMediaShowed ? imageWidth : textWidth}px)`;
} else {
popupRef.current.style.maxWidth = `500px`;
}
setSpaceOnRight(spaceRight);
setIsCalculationDone(true);
2023-09-08 14:49:30 +02:00
}
2023-09-07 15:50:27 +02:00
};
2023-09-08 15:48:33 +02:00
if (isHoveringOnThread) {
const timeoutId = setTimeout(executeLayoutEffectLogic, 250);
return () => {
clearTimeout(timeoutId);
setIsCalculationDone(false);
};
}
}, [isHoveringOnThread, isMediaShowed, textLeft, textRight, imageLeft, imageRight, textWidth, imageWidth]);
2023-08-24 15:28:49 +02:00
2023-08-22 21:45:23 +07:00
const handleMouseOnLeaveThread = () => {
2023-08-24 15:28:49 +02:00
if (hoverTimeoutId) {
clearTimeout(hoverTimeoutId);
setHoverTimeoutId(null);
setIsHoveringOnThread("")
} else if (isHoveringOnThread !== "") {
setIsHoveringOnThread("");
setIsCalculationDone(false);
}
};
2023-08-09 12:11:53 +02:00
2023-08-24 15:28:49 +02:00
2023-08-09 12:11:53 +02:00
const handleOutsideClick = useCallback((e) => {
if (openMenuCid !== null && !postMenuRef.current.contains(e.target) && !postMenuCatalogRef.current.contains(e.target)) {
setOpenMenuCid(null);
}
}, [openMenuCid]);
const handleOptionClick = () => {
setOpenMenuCid(null);
};
useEffect(() => {
if (openMenuCid !== null) {
document.addEventListener('click', handleOutsideClick);
} else {
document.removeEventListener('click', handleOutsideClick);
}
return () => {
document.removeEventListener('click', handleOutsideClick);
};
}, [openMenuCid, handleOutsideClick]);
const handleAuthorDeleteClick = (comment) => {
handleOptionClick(comment.cid);
confirmAlert({
customUI: ({ onClose }) => {
return (
2023-08-13 21:53:04 +02:00
<AlertModal selectedStyle={selectedStyle}>
2023-08-09 12:11:53 +02:00
<div className='author-delete-alert'>
<p>Are you sure you want to delete this post?</p>
<div className="author-delete-buttons">
<button onClick={onClose}>No</button>
<button
onClick={() => {
setIsAuthorDelete(true);
setIsAuthorEdit(false);
setPublishCommentEditOptions(prevOptions => ({
...prevOptions,
commentCid: comment.cid,
subplebbitAddress: comment.subplebbitAddress,
deleted: true,
}));
setTriggerPublishCommentEdit(true);
onClose();
}}
>
Yes
</button>
</div>
</div>
2023-08-13 21:53:04 +02:00
</AlertModal>
2023-08-09 12:11:53 +02:00
);
}
});
};
const handleAuthorEditClick = (comment) => {
handleOptionClick(comment.cid);
setIsAuthorEdit(true);
setIsAuthorDelete(false);
setCommentCid(comment.cid);
setOriginalCommentContent(comment.content);
setIsEditModalOpen(true);
}
const onChallengeVerification = (challengeVerification) => {
if (challengeVerification.challengeSuccess === true) {
setNewSuccessMessage('Challenge Success');
}
else if (challengeVerification.challengeSuccess === false) {
setNewErrorMessage(`Challenge Failed, reason: ${challengeVerification.reason}. Errors: ${challengeVerification.errors}`);
console.log('challenge failed', challengeVerification);
}
};
const onChallenge = async (challenges, comment) => {
setPendingComment(comment);
let challengeAnswers = [];
try {
challengeAnswers = await getChallengeAnswersFromUser(challenges)
}
catch (error) {
setNewErrorMessage(error.message); console.log(error);
}
if (challengeAnswers) {
await comment.publishChallengeAnswers(challengeAnswers)
}
};
const [publishCommentEditOptions, setPublishCommentEditOptions] = useState({
commentCid: commentCid,
content: editedComment || undefined,
subplebbitAddress: selectedAddress || subplebbitAddress,
onChallenge,
onChallengeVerification,
onError: (error) => {
setNewErrorMessage(error.message); console.log(error);
},
});
const { publishCommentEdit } = usePublishCommentEdit(publishCommentEditOptions);
useEffect(() => {
setPublishCommentEditOptions((prevOptions) => ({
...prevOptions,
commentCid: commentCid,
content: editedComment || undefined,
}));
}, [commentCid, editedComment]);
useEffect(() => {
if (editedComment !== '') {
setTriggerPublishCommentEdit(true);
}
}, [editedComment]);
useEffect(() => {
if (publishCommentEditOptions && triggerPublishCommentEdit) {
(async () => {
await publishCommentEdit();
setTriggerPublishCommentEdit(false);
})();
}
}, [publishCommentEditOptions, triggerPublishCommentEdit, publishCommentEdit]);
const getChallengeAnswersFromUser = async (challenges) => {
setChallengesArray(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 = () => {
setIsCaptchaOpen(true);
const handleKeyDown = async (event) => {
if (event.key === 'Enter') {
const currentCaptchaResponse = captchaResponse;
resolve(currentCaptchaResponse);
setIsCaptchaOpen(false);
document.removeEventListener('keydown', handleKeyDown);
event.preventDefault();
}
};
setCaptchaResponse('');
document.addEventListener('keydown', handleKeyDown);
setResolveCaptchaPromise(resolve);
};
challengeImg.onerror = () => {
reject(setNewErrorMessage('Could not load challenges'));
};
});
};
2023-08-13 12:05:43 +02:00
let displayWidth, displayHeight;
if (thread.linkWidth && thread.linkHeight) {
let scale = Math.min(1, 150 / Math.max(thread.linkWidth, thread.linkHeight));
displayWidth = `${thread.linkWidth * scale}px`;
displayHeight = `${thread.linkHeight * scale}px`;
2023-08-24 15:28:49 +02:00
} else if (thread.link) {
2023-08-13 12:05:43 +02:00
displayWidth = '150px';
displayHeight = '150px';
2023-08-24 15:28:49 +02:00
} else {
displayWidth = '0px';
displayHeight = '0px';
2023-08-13 12:05:43 +02:00
}
2023-08-09 12:11:53 +02:00
if (post.type === 'rules') {
return (
2023-09-08 15:29:40 +02:00
<>
2023-08-22 21:48:05 +07:00
{isHoveringOnThread === 'rules' ?
2023-09-08 15:29:40 +02:00
createPortal(
<PostPreview selectedStyle={selectedStyle}>
<div ref={popupRef}
className="post-preview"
onMouseOver={() => handleMouseOnLeaveThread()}
2023-08-09 12:11:53 +02:00
style={{
2023-09-08 15:29:40 +02:00
visibility: isCalculationDone ? 'visible' : 'hidden',
left:
isCalculationDone && spaceOnRight > 250 ? textRect.right + 5 :
isCalculationDone && spaceOnRight < 250 ? textRect.left - popupRect.width - 5
: 'auto',
top: popupPosition.top + 5,
}}>
<span className="post-subject" >
Rules 
</span> by 
<span className="post-author-admin"> ## Board Admins </span>
<span className='post-ago'>
{thread.timestamp ? getFormattedTime(thread.timestamp) : null}
</span>
2023-08-09 12:11:53 +02:00
</div>
2023-09-08 15:29:40 +02:00
</PostPreview>, document.body
)
: null }
<div className='thread'
ref={el => {
threadRefs.current['rules'] = el;
2023-09-05 21:40:29 +02:00
}}
2023-09-08 15:29:40 +02:00
onMouseLeave={()=>{handleMouseOnLeaveThread()}}>
<BoardForm selectedStyle={selectedStyle} style={{all: 'unset'}}
onMouseOver={() => {
setIsHoveringForMenu('rules');
handleMouseOnLeaveThread();
}}
onMouseLeave={() => setIsHoveringForMenu(false)}>
<div className='meta' title="(R)eplies / (L)ink Replies">
R:&nbsp;<b>0</b>&nbsp;/&nbsp;L:&nbsp;<b>0</b>
<div className='thread-icons'
style={{position: 'absolute', top: '-2px', right: '15px'}}>
<span className="thread-icon sticky-icon" title="Sticky"
style={{
imageRendering: "pixelated",}} />
<span className="thread-icon closed-icon" title="Closed"
style={{
imageRendering: "pixelated",}} />
</div>
<PostMenu
style={{ display: isHoveringForMenu === "rules" ? 'inline-block' : 'none',
position: 'absolute', lineHeight: '1em', marginTop: '-1px', outline: 'none',
zIndex: '999'}}
title="Post menu"
ref={el => {
threadMenuRefs.current["rules"] = el;
postMenuRef.current = el;
}}
className='post-menu-button'
id='post-menu-button-catalog'
rotated={openMenuCid === "rules"}
onClick={(event) => {
event.stopPropagation();
const rect = threadMenuRefs.current["rules"].getBoundingClientRect();
setMenuPosition({top: rect.top + window.scrollY, left: rect.left});
setOpenMenuCid(prevCid => (prevCid === "rules" ? null : "rules"));
}}
>
</PostMenu>
2023-08-09 12:11:53 +02:00
</div>
2023-09-08 15:29:40 +02:00
{createPortal(
<PostMenuCatalog selectedStyle={selectedStyle}
ref={el => {postMenuCatalogRef.current = el}}
onClick={(event) => event.stopPropagation()}
style={{position: "absolute",
top: menuPosition.top + 7,
left: menuPosition.left}}>
<div className={`post-menu-thread post-menu-thread-${"rules"}`}
style={{ display: openMenuCid === "rules" ? 'block' : 'none' }}
>
<ul className="post-menu-catalog">
<li onClick={() => {
handleOptionClick("rules");
handleShareClick(selectedAddress, "rules");
}}>Share thread</li>
{/* {isModerator ? (
<>
change rules
</>
) : null} */}
</ul>
</div>
</PostMenuCatalog>, document.body
)}
</BoardForm>
<Link style={{all: "unset", cursor: "pointer"}} to={`/p/${selectedAddress}/rules`}>
<div className="teaser" style={{maxHeight: '312px'}}>
2023-09-09 17:17:29 +02:00
<div style={{cursor: 'pointer'}}>
2023-09-08 15:29:40 +02:00
<span ref={textRef}
onMouseOver={() => {
setIsHoveringOnThread('rules');
setIsHoveringForMenu('rules');
const rect = threadRefs.current['rules'].getBoundingClientRect();
setPopupPosition({top: rect.top + window.scrollY, left: rect.left});
}}
onMouseLeave={() => setIsHoveringForMenu(false)}>
<b>Rules</b>
{": " + subplebbit.rules?.map((rule, index) => `${index + 1}. ${rule}`).join(' ')}
</span>
</div>
</div>
</Link>
</div>
</>
2023-08-09 12:11:53 +02:00
)
} else if (post.type === 'description') {
return (
<>
2023-09-08 15:29:40 +02:00
{isHoveringOnThread === 'description' ?
createPortal(
<PostPreview selectedStyle={selectedStyle}>
<div ref={popupRef}
className="post-preview"
onMouseOver={() => handleMouseOnLeaveThread()}
style={{
visibility: isCalculationDone ? 'visible' : 'hidden',
left:
isCalculationDone && spaceOnRight > 250
? subplebbit.suggestedAvatarUrl ? imageRect.right + 5 : textRect.right + 5 :
isCalculationDone && spaceOnRight < 250
? subplebbit.suggestedAvatarUrl ? imageRect.left - popupRect.width - 5 : textRect.left - popupRect.width - 5
: 'auto',
top: popupPosition.top + 5,
}}>
<span className="post-subject" >
Welcome to {subplebbit.title || subplebbit.address}
</span> by 
<span className="post-author-admin"> ## Board Admins </span>
<span className='post-ago'>
{thread.timestamp ? getFormattedTime(thread.timestamp) : null}
</span>
</div>
</PostPreview>, document.body
)
: null }
2023-08-09 12:11:53 +02:00
<div className='thread'
2023-09-08 15:29:40 +02:00
ref={el => {
threadRefs.current['description'] = el;
}}
2023-08-22 21:45:23 +07:00
onMouseLeave={()=>{handleMouseOnLeaveThread()}}>
2023-08-09 12:11:53 +02:00
<Link style={{all: 'unset', cursor: 'pointer'}} to={`/p/${selectedAddress}/description`}>
{subplebbit.suggested?.avatarUrl ? (
<img className='card'
2023-08-24 15:28:49 +02:00
onMouseOver={() => {
2023-09-08 15:29:40 +02:00
setIsHoveringOnThread('description');
2023-08-24 15:28:49 +02:00
setIsHoveringForMenu('description');
2023-09-08 15:29:40 +02:00
const rect = threadRefs.current['description'].getBoundingClientRect();
setPopupPosition({top: rect.top + window.scrollY, left: rect.left});
2023-08-24 15:28:49 +02:00
}}
2023-09-05 21:40:29 +02:00
onMouseLeave={() => setIsHoveringForMenu(false)}
2023-08-09 12:11:53 +02:00
src={subplebbit.suggested.avatarUrl} alt="board avatar" />
) : null}
</Link>
{subplebbit.suggested?.avatarUrl ? (
<div className='thread-icons'>
<span className="thread-icon sticky-icon" title="Sticky"
style={{
imageRendering: "pixelated",}} />
<span className="thread-icon closed-icon" title="Closed"
style={{
imageRendering: "pixelated",}} />
</div>
) : null}
2023-08-24 15:28:49 +02:00
<BoardForm selectedStyle={selectedStyle} style={{all: 'unset'}}
onMouseOver={() => {
setIsHoveringForMenu('description');
2023-09-05 21:40:29 +02:00
handleMouseOnLeaveThread();
}}
onMouseLeave={() => setIsHoveringForMenu(false)}>
2023-08-24 15:28:49 +02:00
<div className='meta' title="(R)eplies / (L)ink Replies">
2023-08-09 12:11:53 +02:00
R:&nbsp;<b>0</b>&nbsp;/&nbsp;L:&nbsp;<b>0</b>
{subplebbit.suggested?.avatarUrl ? null : (
<div className='thread-icons'
style={{position: 'absolute', top: '-2px', right: '15px'}}>
<span className="thread-icon sticky-icon" title="Sticky"
style={{
imageRendering: "pixelated",}} />
<span className="thread-icon closed-icon" title="Closed"
style={{
imageRendering: "pixelated",}} />
</div>
)}
<PostMenu
2023-08-24 15:28:49 +02:00
style={{ display: isHoveringForMenu === "description" ? 'inline-block' : 'none',
2023-08-09 12:11:53 +02:00
position: 'absolute', lineHeight: '1em', marginTop: '-1px', outline: 'none',
zIndex: '999'}}
title="Post menu"
ref={el => {
threadMenuRefs.current["description"] = el;
postMenuRef.current = el;
}}
className='post-menu-button'
id='post-menu-button-catalog'
rotated={openMenuCid === "description"}
onClick={(event) => {
event.stopPropagation();
const rect = threadMenuRefs.current["description"].getBoundingClientRect();
setMenuPosition({top: rect.top + window.scrollY, left: rect.left});
setOpenMenuCid(prevCid => (prevCid === "description" ? null : "description"));
}}
>
</PostMenu>
</div>
{createPortal(
<PostMenuCatalog selectedStyle={selectedStyle}
ref={el => {postMenuCatalogRef.current = el}}
onClick={(event) => event.stopPropagation()}
style={{position: "absolute",
top: menuPosition.top + 7,
left: menuPosition.left}}>
<div className={`post-menu-thread post-menu-thread-${"description"}`}
style={{ display: openMenuCid === "description" ? 'block' : 'none' }}
>
<ul className="post-menu-catalog">
2023-08-22 14:17:38 +02:00
<li onClick={() => {
handleOptionClick("description");
handleShareClick(selectedAddress, "description");
}}>Share thread</li>
2023-08-09 12:11:53 +02:00
{/* {isModerator ? (
<>
change description
</>
) : null} */}
{subplebbit.suggested?.avatarUrl ? (
<li
onMouseOver={() => {setIsImageSearchOpen(true)}}
onMouseLeave={() => {setIsImageSearchOpen(false)}}>
Image search »
<ul className="dropdown-menu post-menu-catalog"
style={{display: isImageSearchOpen ? 'block': 'none'}}>
<li onClick={() => handleOptionClick("description")}>
<a
href={`https://lens.google.com/uploadbyurl?url=${subplebbit.suggested.avatarUrl}`}
target="_blank" rel="noreferrer"
>Google</a>
</li>
<li onClick={() => handleOptionClick("description")}>
<a
href={`https://yandex.com/images/search?url=${subplebbit.suggested.avatarUrl}`}
target="_blank" rel="noreferrer"
>Yandex</a>
</li>
<li onClick={() => handleOptionClick("description")}>
<a
href={`https://saucenao.com/search.php?url=${subplebbit.suggested.avatarUrl}`}
target="_blank" rel="noreferrer"
>SauceNAO</a>
</li>
</ul>
</li>
) : null}
</ul>
</div>
</PostMenuCatalog>, document.body
)}
</BoardForm>
<Link style={{all: "unset", cursor: "pointer"}} to={`/p/${selectedAddress}/description`}
2023-09-08 15:29:40 +02:00
onClick={() => setSelectedThread("description")}>
<div className="teaser" style={{maxHeight: '170px'}}>
2023-09-09 17:17:29 +02:00
<div style={{cursor: 'pointer'}}>
2023-09-08 15:29:40 +02:00
<span ref={textRef}
onMouseOver={() => {
setIsHoveringOnThread('description');
setIsHoveringForMenu('description');
const rect = threadRefs.current['description'].getBoundingClientRect();
setPopupPosition({top: rect.top + window.scrollY, left: rect.left});
}}
onMouseLeave={() => setIsHoveringForMenu(false)}>
<b>Welcome to {subplebbit.title || subplebbit.address}!</b>
{": " + subplebbit.description}
</span>
2023-08-09 12:11:53 +02:00
</div>
2023-09-08 15:29:40 +02:00
</div>
</Link>
2023-08-09 12:11:53 +02:00
</div>
</>
)
} else {
return (
2023-09-08 14:49:30 +02:00
<>
2023-09-01 21:43:36 +02:00
{isHoveringOnThread === thread.cid ?
2023-09-08 14:49:30 +02:00
createPortal(
<PostPreview selectedStyle={selectedStyle}>
<div ref={popupRef}
className="post-preview"
onMouseOver={() => handleMouseOnLeaveThread()}
style={{
visibility: isCalculationDone ? 'visible' : 'hidden',
left:
isCalculationDone && spaceOnRight > 250
? isMediaShowed ? imageRect.right + 5 : textRect.right + 5 :
isCalculationDone && spaceOnRight < 250
? isMediaShowed ? imageRect.left - popupRect.width - 5 : textRect.left - popupRect.width - 5
: 'auto',
top: popupPosition.top + 5,
2023-09-07 15:50:27 +02:00
}}>
2023-09-08 14:49:30 +02:00
<span className="post-subject" >
{thread.title ? `${thread.title} ` : "Posted "}
</span>
by
<span className="post-author">
{thread.author.displayName ?` ${thread.author.displayName} ` : " Anonymous "}
</span>
<span className='post-ago'>
{thread.timestamp ? getFormattedTime(thread.timestamp) : null}
</span>
2023-09-01 21:43:36 +02:00
{thread.replyCount > 0 ?
2023-09-08 14:49:30 +02:00
<div className='post-last'>
2023-09-07 15:50:27 +02:00
Last reply by
2023-09-08 14:49:30 +02:00
<span className="post-author"> Anonymous </span>
<span className='post-ago'>{getFormattedTime(thread.lastReplyTimestamp)}</span>
</div>
2023-09-01 21:43:36 +02:00
: null}
</div>
2023-09-08 14:49:30 +02:00
</PostPreview>, document.body
)
2023-09-01 21:43:36 +02:00
: null }
2023-09-08 14:49:30 +02:00
<div key={`thread-`} className="thread"
ref={el => {
threadRefs.current[thread.cid] = el;
}}
onMouseLeave={()=>{handleMouseOnLeaveThread()}}>
{commentMediaInfo?.url ? (
<Link style={{all: "unset", cursor: "pointer"}} key={`link-`} to={`/p/${selectedAddress}/c/${thread.cid}`}
onClick={() => setSelectedThread(thread.cid)}
onMouseOver={() => {
setIsHoveringOnThread(thread.cid);
setIsHoveringForMenu(thread.cid);
const rect = threadRefs.current[thread.cid].getBoundingClientRect();
setPopupPosition({top: rect.top + window.scrollY, left: rect.left});
}}
onMouseLeave={() => setIsHoveringForMenu(false)}>
{commentMediaInfo?.type === "webpage" ? (
thread.thumbnailUrl ? (
<span className="file-thumb" style={{width: displayWidth, height: displayHeight}}>
<img className="card" ref={imageRef} key={`img-`}
src={commentMediaInfo.thumbnail} alt={commentMediaInfo.type}
onError={(e) => {
e.target.src = fallbackImgUrl
e.target.onerror = null;
}} />
</span>
) : null
) : null}
{commentMediaInfo?.type === "iframe" && (thread.thumbnailUrl || commentMediaInfo.thumbnail) ? (
2023-08-13 12:05:43 +02:00
<span className="file-thumb" style={{width: displayWidth, height: displayHeight}}>
2023-08-31 17:16:29 +02:00
<img className="card" ref={imageRef} key={`img-`}
2023-08-13 12:05:43 +02:00
src={commentMediaInfo.thumbnail} alt={commentMediaInfo.type}
2023-09-08 14:49:30 +02:00
onError={(e) => { e.target.src = fallbackImgUrl }} />
</span>
) : null}
{commentMediaInfo?.type === "image" ? (
<span className="file-thumb" style={{width: displayWidth, height: displayHeight}}>
<img className="card" ref={imageRef} key={`img-`}
src={commentMediaInfo.url} alt={commentMediaInfo.type}
2023-08-13 12:05:43 +02:00
onError={(e) => {
e.target.src = fallbackImgUrl
2023-09-08 14:49:30 +02:00
e.target.onerror = null;}} />
2023-08-13 12:05:43 +02:00
</span>
2023-09-08 14:49:30 +02:00
) : null}
{commentMediaInfo?.type === "video" ? (
<span className="file-thumb" style={{width: displayWidth, height: displayHeight}}>
<video className="card" ref={imageRef} key={`fti-`}
src={commentMediaInfo.url}
alt={commentMediaInfo.type}
onError={(e) => e.target.src = fallbackImgUrl} />
</span>
) : null}
{commentMediaInfo?.type === "audio" ? (
<audio className="card" ref={imageRef} controls
key={`fti-`}
2023-08-13 12:05:43 +02:00
src={commentMediaInfo.url}
alt={commentMediaInfo.type}
2023-09-08 14:49:30 +02:00
onError={(e) => e.target.src = fallbackImgUrl} />
) : null}
</Link>
2023-08-09 12:11:53 +02:00
) : null}
2023-09-08 14:49:30 +02:00
{isMediaShowed ? (
<div key={`ti-`} className="thread-icons" >
{thread.pinned ? (
<span key={`si-`} className="thread-icon sticky-icon" title="Sticky"
style={{
imageRendering: "pixelated",}} />
) : null}
{thread.locked ? (
<span key={`li-`} className="thread-icon closed-icon" title="Closed"
style={{
imageRendering: "pixelated",}} />
2023-08-09 12:11:53 +02:00
) : null}
</div>
2023-09-08 14:49:30 +02:00
) : null}
<BoardForm selectedStyle={selectedStyle}
onMouseOver={() => {
setIsHoveringForMenu(thread.cid);
handleMouseOnLeaveThread();
}}
onMouseLeave={() => setIsHoveringForMenu(false)}
style={{ all: "unset"}}>
<div key={`meta-`} className="meta" title="(R)eplies / (L)ink Replies" >
R:&nbsp;<b key={`b-`}>{thread.replyCount}</b>
{linkCount > 0 ? (
<>
&nbsp;/
L:&nbsp;<b key={`i-`}>{linkCount}</b>
</>
) : null}
{isMediaShowed ? null : (
<div className='thread-icons'
style={{position: 'absolute', top: '-2px', right: '15px'}}>
{thread.pinned ? (
<span key={`si-`} className="thread-icon sticky-icon" title="Sticky"
style={{
imageRendering: "pixelated",}} />
) : null}
{thread.locked ? (
<span key={`li-`} className="thread-icon closed-icon" title="Closed"
style={{
imageRendering: "pixelated",}} />
) : null}
</div>
)}
<PostMenu
style={{ display: isHoveringForMenu === thread.cid ? 'inline-block' : 'none',
position: 'absolute', lineHeight: '1em', marginTop: '-1px', outline: 'none',
zIndex: '999'}}
key={`pmb-`}
title="Post menu"
ref={el => {
threadMenuRefs.current[thread.cid] = el;
postMenuRef.current = el;
}}
className='post-menu-button'
id='post-menu-button-catalog'
rotated={openMenuCid === thread.cid}
onClick={(event) => {
event.stopPropagation();
const rect = threadMenuRefs.current[thread.cid].getBoundingClientRect();
setMenuPosition({top: rect.top + window.scrollY, left: rect.left});
setOpenMenuCid(prevCid => (prevCid === thread.cid ? null : thread.cid));
}}
>
</PostMenu>
</div>
{createPortal(
<PostMenuCatalog selectedStyle={selectedStyle}
ref={el => {postMenuCatalogRef.current = el}}
onClick={(event) => event.stopPropagation()}
style={{position: "absolute",
top: menuPosition.top + 7,
left: menuPosition.left}}>
<div className={`post-menu-thread post-menu-thread-${thread.cid}`}
style={{ display: openMenuCid === thread.cid ? 'block' : 'none' }}
>
<ul className="post-menu-catalog">
<li onClick={() => {
handleOptionClick(thread.cid);
handleShareClick(selectedAddress, thread.cid);
}}>Share thread</li>
<VerifiedAuthor commentCid={thread.cid}>{({ authorAddress }) => (
<>
{authorAddress === account?.author.address ||
authorAddress === account?.signer.address ? (
<>
<li onClick={() => handleAuthorEditClick(thread)}>Edit post</li>
<li onClick={() => handleAuthorDeleteClick(thread)}>Delete post</li>
</>
) : null}
{isModerator ? (
<>
{authorAddress === account?.author.address ||
authorAddress === account?.signer.address ? (
null
) : (
<li onClick={() => {
setModeratingCommentCid(thread.cid)
setIsModerationOpen(true);
handleOptionClick(thread.cid);
setDeletePost(true);
}}>
Delete post
</li>
)}
<li
onClick={() => {
2023-08-09 12:11:53 +02:00
setModeratingCommentCid(thread.cid)
setIsModerationOpen(true);
handleOptionClick(thread.cid);
}}>
2023-09-08 14:49:30 +02:00
Mod tools
2023-08-09 12:11:53 +02:00
</li>
2023-09-08 14:49:30 +02:00
</>
) : null}
</>
)}</VerifiedAuthor>
{isMediaShowed ? (
<li
onMouseOver={() => {setIsImageSearchOpen(true)}}
onMouseLeave={() => {setIsImageSearchOpen(false)}}>
Image search »
<ul className="dropdown-menu post-menu-catalog"
style={{display: isImageSearchOpen ? 'block': 'none'}}>
<li onClick={() => handleOptionClick(thread.cid)}>
<a
href={`https://lens.google.com/uploadbyurl?url=${commentMediaInfo.url}`}
target="_blank" rel="noreferrer"
>Google</a>
</li>
<li onClick={() => handleOptionClick(thread.cid)}>
<a
href={`https://yandex.com/images/search?url=${commentMediaInfo.url}`}
target="_blank" rel="noreferrer"
>Yandex</a>
</li>
<li onClick={() => handleOptionClick(thread.cid)}>
<a
href={`https://saucenao.com/search.php?url=${commentMediaInfo.url}`}
target="_blank" rel="noreferrer"
>SauceNAO</a>
</li>
</ul>
</li>
) : null
}
<li
onMouseOver={() => {setIsClientRedirectMenuOpen(true)}}
onMouseLeave={() => {setIsClientRedirectMenuOpen(false)}}>
View on »
<ul className="dropdown-menu post-menu-catalog"
style={{display: isClientRedirectMenuOpen ? 'block': 'none'}}>
<li onClick={() => handleOptionClick(thread.cid)}>
<a
href={`https://plebbitapp.eth.limo/#/p/${selectedAddress}/c/${thread.cid}`}
target="_blank" rel="noreferrer"
>Plebbit</a>
</li>
{/* <li onClick={() => handleOptionClick(thread.cid)}>
<a
href={`https://seedit.eth.limo/#/p/${selectedAddress}/c/${thread.cid}`}
target="_blank" rel="noreferrer"
>Seedit</a>
</li> */}
<li onClick={() => handleOptionClick(thread.cid)}>
<a
href={`https://plebones.netlify.app/#/p/${selectedAddress}/c/${thread.cid}`}
target="_blank" rel="noreferrer"
>Plebones</a>
</li>
</ul>
</li>
</ul>
</div>
</PostMenuCatalog>, document.body
)}
</BoardForm>
<Link style={{all: "unset", cursor: "pointer"}} key={`link2-`} to={`/p/${selectedAddress}/c/${thread.cid}`}
onClick={() => setSelectedThread(thread.cid)}>
<div key={`t-`} className="teaser" style={{maxHeight: `calc(320px - ${displayHeight})`}}>
2023-09-09 17:17:29 +02:00
<div style={{cursor:"pointer"}}>
2023-09-08 14:49:30 +02:00
<span key={`teaser-width${thread.cid}`} ref={textRef}
onMouseOver={() => {
setIsHoveringOnThread(thread.cid);
setIsHoveringForMenu(thread.cid);
const rect = threadRefs.current[thread.cid].getBoundingClientRect();
setPopupPosition({top: rect.top + window.scrollY, left: rect.left});
}}
onMouseLeave={() => setIsHoveringForMenu(false)}>
<b key={`b2-`}>{thread.title ? `${thread.title}` : null}</b>
{thread.content ? `: ${thread.content}` : null}
</span>
</div>
</div>
</Link>
</div>
</>
2023-08-09 12:11:53 +02:00
)
}
};
const CatalogRow = ({row}) => {
const posts = []
for (const post of row) {
posts.push(<CatalogPost key={post?.cid} post={post} />)
}
return <div>{posts}</div>
}
2023-03-20 17:08:05 +01:00
const Catalog = () => {
2023-03-13 14:29:34 +01:00
const {
2023-04-22 17:37:53 +02:00
captchaResponse, setCaptchaResponse,
2023-04-10 21:34:37 +02:00
setChallengesArray,
2023-03-20 17:08:05 +01:00
defaultSubplebbits,
2023-04-09 20:55:55 +02:00
setIsCaptchaOpen,
isModerationOpen, setIsModerationOpen,
2023-08-09 12:11:53 +02:00
setIsModerator,
2023-03-20 17:08:05 +01:00
isSettingsOpen, setIsSettingsOpen,
2023-08-09 12:11:53 +02:00
originalCommentContent,
2023-04-10 21:34:37 +02:00
setPendingComment,
2023-04-24 15:48:30 +02:00
setPendingCommentIndex,
setResolveCaptchaPromise,
2023-03-20 17:08:05 +01:00
selectedAddress, setSelectedAddress,
2023-03-13 14:29:34 +01:00
selectedStyle,
2023-03-20 17:08:05 +01:00
selectedTitle, setSelectedTitle,
showPostForm,
2023-04-09 20:55:55 +02:00
showPostFormLink,
2023-04-08 13:27:17 +02:00
} = useGeneralStore(state => state);
2023-03-13 14:29:34 +01:00
2023-06-27 10:35:21 +02:00
const { anonymousMode } = useAnonModeStore();
2023-07-31 08:59:17 +02:00
2023-04-03 15:08:45 +02:00
const nameRef = useRef();
const subjectRef = useRef();
const commentRef = useRef();
const linkRef = useRef();
2023-06-27 10:35:21 +02:00
const selectedThreadCidRef = useRef(null);
2023-08-04 21:33:51 +02:00
const virtuosoRef = useRef();
2023-04-03 15:08:45 +02:00
2023-02-19 16:48:46 +01:00
const navigate = useNavigate();
2023-07-31 08:59:17 +02:00
2023-06-14 16:24:25 +02:00
const [, setNewErrorMessage] = useError();
const [, setNewSuccessMessage] = useSuccess();
2023-07-31 08:59:17 +02:00
2023-05-21 14:06:07 +02:00
const [triggerPublishComment, setTriggerPublishComment] = useState(false);
2023-02-24 20:57:51 +01:00
const [prevScrollPos, setPrevScrollPos] = useState(0);
const [visible, setVisible] = useState(true);
const [isEditModalOpen, setIsEditModalOpen] = useState(false);
const [deletePost, setDeletePost] = useState(false);
2023-06-27 10:35:21 +02:00
const [executeAnonMode, setExecuteAnonMode] = useState(false);
const [isCreateBoardOpen, setIsCreateBoardOpen] = useState(false);
2023-06-16 13:48:40 +02:00
2023-08-04 21:33:51 +02:00
useAnonModeRef(selectedThreadCidRef, anonymousMode && executeAnonMode);
2023-07-30 22:15:09 +02:00
const account = useAccount();
2023-08-04 21:33:51 +02:00
const { feed, hasMore, loadMore } = useFeed({subplebbitAddresses: [`${selectedAddress}`], sortType: 'active'});
2023-07-31 08:59:17 +02:00
const { subplebbitAddress } = useParams();
const subplebbit = useSubplebbit({subplebbitAddress: selectedAddress});
2023-05-15 04:44:33 +00:00
const stateString = useStateString(subplebbit);
2023-08-04 21:33:51 +02:00
let feedWithDescriptionAndRules = [...feed];
2023-05-21 14:06:07 +02:00
2023-08-09 12:11:53 +02:00
2023-07-25 21:10:22 +02:00
if (subplebbit.rules) {
2023-08-04 21:33:51 +02:00
feedWithDescriptionAndRules.unshift({ type: 'rules', content: subplebbit.rules });
2023-07-25 21:10:22 +02:00
}
2023-08-09 12:11:53 +02:00
2023-07-25 21:10:22 +02:00
if (subplebbit.description) {
2023-08-04 21:33:51 +02:00
feedWithDescriptionAndRules.unshift({ type: 'description', content: subplebbit.description });
}
2023-08-09 12:11:53 +02:00
2023-07-25 21:10:22 +02:00
2023-08-04 21:33:51 +02:00
const columnWidth = 180;
const windowWidth = useWindowWidth();
const columnCount = Math.floor(windowWidth / columnWidth);
const rows = useFeedRows(feedWithDescriptionAndRules, columnCount);
2023-07-25 21:10:22 +02:00
useEffect(() => {
2023-07-31 08:59:17 +02:00
if (subplebbit.roles !== undefined) {
const role = subplebbit.roles[account?.author.address]?.role;
2023-07-31 08:59:17 +02:00
if (role === 'moderator' || role === 'admin' || role === 'owner') {
setIsModerator(true);
} else {
setIsModerator(false);
}
}
2023-08-09 12:11:53 +02:00
}, [account?.author.address, subplebbit.roles, setIsModerator]);
2023-05-21 14:06:07 +02:00
useEffect(() => {
setSelectedAddress(subplebbitAddress);
}, [subplebbitAddress, setSelectedAddress]);
2023-05-09 15:58:19 +02:00
const errorString = useMemo(() => {
if (subplebbit?.state === 'failed') {
let errorString = 'Failed fetching board "' + selectedAddress + '".';
if (subplebbit.error) {
errorString += `: ${subplebbit.error.toString().slice(0, 300)}`
}
return errorString
}
}, [subplebbit?.state, subplebbit?.error, selectedAddress])
2023-05-21 14:06:07 +02:00
2023-05-09 15:58:19 +02:00
useEffect(() => {
2023-06-14 16:24:25 +02:00
if (errorString) {
setNewErrorMessage(errorString);
2023-05-09 15:58:19 +02:00
}
2023-06-14 16:24:25 +02:00
}, [errorString, setNewErrorMessage]);
2023-07-31 08:59:17 +02:00
const { subscribed, subscribe, unsubscribe } = useSubscribe({subplebbitAddress: selectedAddress});
2023-03-02 18:19:08 +01:00
useEffect(() => {
const selectedSubplebbit = defaultSubplebbits.find((subplebbit) => subplebbit.address === subplebbitAddress);
if (subplebbitAddress) {
setSelectedAddress(subplebbitAddress);
} else if (subplebbit?.address) {
setSelectedAddress(subplebbit.address)
}
2023-03-02 18:19:08 +01:00
if (selectedSubplebbit) {
setSelectedTitle(selectedSubplebbit.title);
} else if (subplebbit?.title) {
setSelectedTitle(subplebbit.title);
2023-03-02 18:19:08 +01:00
}
}, [subplebbitAddress, setSelectedAddress, setSelectedTitle, defaultSubplebbits, subplebbit?.address, subplebbit?.title]);
2023-03-02 18:19:08 +01:00
2023-03-25 14:54:04 +01:00
// mobile navbar scroll effect
2023-03-02 18:19:08 +01:00
useEffect(() => {
2023-03-25 14:54:04 +01:00
const debouncedHandleScroll = debounce(() => {
2023-03-02 18:19:08 +01:00
const currentScrollPos = window.pageYOffset;
setVisible(prevScrollPos > currentScrollPos || currentScrollPos < 10);
setPrevScrollPos(currentScrollPos);
2023-03-25 14:54:04 +01:00
}, 50);
2023-07-31 08:59:17 +02:00
2023-03-25 14:54:04 +01:00
window.addEventListener('scroll', debouncedHandleScroll);
2023-07-31 08:59:17 +02:00
2023-03-25 14:54:04 +01:00
return () => window.removeEventListener('scroll', debouncedHandleScroll);
2023-03-02 18:19:08 +01:00
}, [prevScrollPos, visible]);
2023-02-19 16:48:46 +01:00
const onChallengeVerification = (challengeVerification) => {
if (challengeVerification.challengeSuccess === true) {
if (challengeVerification.publication?.cid !== undefined) {
navigate(`/p/${subplebbitAddress}/c/${challengeVerification.publication?.cid}`);
console.log('challenge success');
} else {
2023-06-14 16:24:25 +02:00
setNewSuccessMessage('Challenge Success');
}
2023-02-19 16:48:46 +01:00
}
else if (challengeVerification.challengeSuccess === false) {
setNewErrorMessage(`Challenge Failed, reason: ${challengeVerification.reason}. Errors: ${challengeVerification.errors}`);
console.log('challenge failed', challengeVerification);
2023-02-19 16:48:46 +01:00
}
};
2023-03-02 18:19:08 +01:00
2023-02-19 16:48:46 +01:00
const onChallenge = async (challenges, comment) => {
2023-04-10 21:34:37 +02:00
setPendingComment(comment);
2023-02-19 16:48:46 +01:00
let challengeAnswers = [];
2023-07-31 08:59:17 +02:00
2023-02-19 16:48:46 +01:00
try {
challengeAnswers = await getChallengeAnswersFromUser(challenges)
}
catch (error) {
2023-07-02 11:45:56 +02:00
setNewErrorMessage(error.message); console.log(error);
2023-02-19 16:48:46 +01:00
}
if (challengeAnswers) {
await comment.publishChallengeAnswers(challengeAnswers)
}
2023-04-03 15:08:45 +02:00
};
2023-07-31 08:59:17 +02:00
2023-04-16 11:21:05 +02:00
2023-04-23 15:14:49 +02:00
useEffect(() => {
setPublishCommentOptions((prevPublishCommentOptions) => ({
...prevPublishCommentOptions,
subplebbitAddress: selectedAddress,
}));
}, [selectedAddress]);
2023-07-31 08:59:17 +02:00
2023-04-23 15:14:49 +02:00
const [publishCommentOptions, setPublishCommentOptions] = useState({
subplebbitAddress: selectedAddress,
onChallenge,
2023-04-16 11:21:05 +02:00
onChallengeVerification,
onError: (error) => {
2023-07-02 11:45:56 +02:00
setNewErrorMessage(error.message); console.log(error);
},
});
2023-07-31 08:59:17 +02:00
2023-04-12 14:02:35 +02:00
const { publishComment, index } = usePublishComment(publishCommentOptions);
useEffect(() => {
if (index !== undefined) {
2023-04-24 15:48:30 +02:00
setPendingCommentIndex(index);
2023-08-09 12:11:53 +02:00
navigate(`/profile/c/${index}`);
2023-04-12 14:02:35 +02:00
}
2023-04-27 11:42:51 +02:00
}, [index, navigate, setPendingCommentIndex]);
2023-04-16 11:21:05 +02:00
2023-07-31 08:59:17 +02:00
2023-04-27 12:36:21 +02:00
const resetFields = useCallback(() => {
2023-04-25 22:07:33 +02:00
if (nameRef.current) {
nameRef.current.value = '';
}
if (subjectRef.current) {
subjectRef.current.value = '';
}
if (commentRef.current) {
commentRef.current.value = '';
}
if (linkRef.current) {
linkRef.current.value = '';
}
2023-04-27 12:36:21 +02:00
}, []);
2023-04-12 14:02:35 +02:00
const handleSubmit = async (event) => {
event.preventDefault();
2023-07-31 08:59:17 +02:00
if (subjectRef.current.value === "") {
2023-06-14 16:24:25 +02:00
setNewErrorMessage('Subject field is mandatory');
return;
}
setPublishCommentOptions((prevPublishCommentOptions) => ({
...prevPublishCommentOptions,
2023-04-16 11:21:05 +02:00
author: {
displayName: nameRef.current.value || undefined,
...(anonymousMode ? {} : {address: account?.author.address}),
2023-04-16 11:21:05 +02:00
},
title: subjectRef.current.value || undefined,
content: commentRef.current.value || undefined,
link: linkRef.current.value || undefined,
}));
2023-04-27 12:36:21 +02:00
setTriggerPublishComment(true);
};
2023-06-16 13:48:40 +02:00
2023-06-29 18:10:27 +02:00
const updateSigner = useCallback(async () => {
if (anonymousMode) {
setExecuteAnonMode(true);
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
let storedSigners = JSON.parse(localStorage.getItem('storedSigners')) || {};
let signer;
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
if (!storedSigners[selectedThreadCidRef]) {
signer = await account?.plebbit.createSigner();
storedSigners[selectedThreadCidRef] = { privateKey: signer?.privateKey, address: signer?.address };
localStorage.setItem('storedSigners', JSON.stringify(storedSigners));
} else {
const signerPrivateKey = storedSigners[selectedThreadCidRef].privateKey;
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
try {
2023-07-31 08:59:17 +02:00
signer = await account?.plebbit.createSigner({type: 'ed25519', privateKey: signerPrivateKey});
2023-06-29 18:10:27 +02:00
} catch (error) {
console.log(error);
2023-06-27 10:35:21 +02:00
}
2023-06-29 18:10:27 +02:00
}
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
setPublishCommentOptions(prevPublishCommentOptions => {
const newPublishCommentOptions = {
2023-06-27 10:35:21 +02:00
...prevPublishCommentOptions,
signer,
author: {
...prevPublishCommentOptions.author,
address: signer?.address,
2023-06-27 10:35:21 +02:00
},
2023-06-29 18:10:27 +02:00
};
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
if (JSON.stringify(prevPublishCommentOptions) !== JSON.stringify(newPublishCommentOptions)) {
return newPublishCommentOptions;
}
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
return prevPublishCommentOptions;
});
}
}, [selectedThreadCidRef, anonymousMode, account]);
2023-07-31 08:59:17 +02:00
2023-06-29 18:10:27 +02:00
useEffect(() => {
2023-06-27 10:35:21 +02:00
updateSigner();
2023-06-29 18:10:27 +02:00
}, [updateSigner]);
2023-06-27 10:35:21 +02:00
useEffect(() => {
2023-05-12 21:32:33 +02:00
if (publishCommentOptions && triggerPublishComment) {
(async () => {
2023-06-07 18:26:03 +02:00
await publishComment();
resetFields();
})();
2023-06-07 21:24:17 +02:00
setTriggerPublishComment(false);
2023-06-27 10:35:21 +02:00
setExecuteAnonMode(false);
}
2023-06-07 18:26:03 +02:00
}, [publishCommentOptions, triggerPublishComment, publishComment, resetFields]);
2023-07-31 08:59:17 +02:00
2023-02-19 16:48:46 +01:00
const getChallengeAnswersFromUser = async (challenges) => {
2023-04-10 21:34:37 +02:00
setChallengesArray(challenges);
2023-07-31 08:59:17 +02:00
2023-02-19 16:48:46 +01:00
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;
2023-07-31 08:59:17 +02:00
2023-02-19 16:48:46 +01:00
challengeImg.onload = () => {
2023-03-12 22:07:15 +01:00
setIsCaptchaOpen(true);
2023-07-31 08:59:17 +02:00
2023-04-16 11:21:05 +02:00
const handleKeyDown = async (event) => {
2023-02-19 16:48:46 +01:00
if (event.key === 'Enter') {
2023-04-22 17:37:53 +02:00
const currentCaptchaResponse = captchaResponse;
2023-04-16 11:21:05 +02:00
resolve(currentCaptchaResponse);
2023-03-12 22:07:15 +01:00
setIsCaptchaOpen(false);
2023-02-19 16:48:46 +01:00
document.removeEventListener('keydown', handleKeyDown);
2023-04-03 15:08:45 +02:00
event.preventDefault();
2023-02-19 16:48:46 +01:00
}
};
2023-03-12 22:07:15 +01:00
setCaptchaResponse('');
2023-02-19 16:48:46 +01:00
document.addEventListener('keydown', handleKeyDown);
2023-07-31 08:59:17 +02:00
setResolveCaptchaPromise(resolve);
2023-02-19 16:48:46 +01:00
};
2023-07-31 08:59:17 +02:00
2023-02-19 16:48:46 +01:00
challengeImg.onerror = () => {
2023-06-14 16:24:25 +02:00
reject(setNewErrorMessage('Could not load challenges'));
2023-02-19 16:48:46 +01:00
};
});
};
2023-04-03 15:08:45 +02:00
// mobile navbar board select functionality
2023-02-27 18:16:47 +01:00
const handleSelectChange = (event) => {
const selected = event.target.value;
2023-05-03 11:01:41 +02:00
if (selected === 'subscriptions') {
2023-05-07 17:22:55 +02:00
navigate(`/p/subscriptions`);
2023-05-03 11:01:41 +02:00
return;
2023-05-16 16:37:50 +02:00
} else if (selected === 'all') {
navigate(`/p/all`);
return;
2023-05-03 11:01:41 +02:00
}
2023-02-27 18:16:47 +01:00
const selectedTitle = defaultSubplebbits.find((subplebbit) => subplebbit.address === selected).title;
setSelectedTitle(selectedTitle);
setSelectedAddress(selected);
2023-04-08 22:30:44 +02:00
navigate(`/p/${selected}`);
2023-02-19 16:48:46 +01:00
};
const handleSubscribe = async () => {
try {
if (subscribed === false) {
await subscribe(selectedAddress);
} else if (subscribed === true) {
await unsubscribe(selectedAddress);
}
} catch (error) {
2023-07-02 11:45:56 +02:00
setNewErrorMessage(error.message); console.log(error);
}
};
2023-03-02 18:19:08 +01:00
2023-05-07 16:50:05 +02:00
2023-08-04 21:33:51 +02:00
useEffect(() => {
const setLastVirtuosoState = () => {
virtuosoRef.current?.getState((snapshot) => {
if (snapshot?.scrollTop === 0 || snapshot?.ranges?.length) {
lastVirtuosoStates[`${selectedAddress}-catalog`] = snapshot;
}
});
};
window.addEventListener('scroll', setLastVirtuosoState);
return () => window.removeEventListener('scroll', setLastVirtuosoState);
}, [selectedAddress]);
const lastVirtuosoState = lastVirtuosoStates[`${selectedAddress}-catalog`];
2023-02-19 16:48:46 +01:00
return (
2023-04-21 10:47:39 +02:00
<>
<Helmet>
<title>{((selectedTitle ? selectedTitle : selectedAddress) + " - Catalog - plebchan")}</title>
</Helmet>
<Container>
<CreateBoardModal
2023-07-31 08:59:17 +02:00
selectedStyle={selectedStyle}
isOpen={isCreateBoardOpen}
closeModal={() => setIsCreateBoardOpen(false)} />
2023-04-21 10:47:39 +02:00
<SettingsModal
2023-07-31 08:59:17 +02:00
selectedStyle={selectedStyle}
isOpen={isSettingsOpen}
closeModal={() => setIsSettingsOpen(false)} />
<ModerationModal
selectedStyle={selectedStyle}
isOpen={isModerationOpen}
closeModal={() => {setIsModerationOpen(false); setDeletePost(false)}}
deletePost={deletePost} />
<EditModal
2023-07-31 08:59:17 +02:00
selectedStyle={selectedStyle}
isOpen={isEditModalOpen}
closeModal={() => setIsEditModalOpen(false)}
originalCommentContent={originalCommentContent} />
2023-04-21 10:47:39 +02:00
<NavBar selectedStyle={selectedStyle}>
<>
2023-07-31 08:59:17 +02:00
<span className="boardList">
[
2023-07-14 14:32:33 +02:00
<Link to={`/p/all`} onClick={() => window.scrollTo(0, 0)}>All</Link>
2023-07-31 08:59:17 +02:00
 / 
2023-07-14 14:32:33 +02:00
<Link to={`/p/subscriptions`} onClick={() => window.scrollTo(0, 0)}>Subscriptions</Link>
2023-07-31 08:59:17 +02:00
]&nbsp;[
{defaultSubplebbits.map((subplebbit, index) => (
<span className="boardList" key={`span-${subplebbit.address}`}>
{index === 0 ? null : "\u00a0"}
<Link to={`/p/${subplebbit.address}`} key={`a-${subplebbit.address}`} onClick={() => {
setSelectedTitle(subplebbit.title);
setSelectedAddress(subplebbit.address);
}}
>{subplebbit.title ? subplebbit.title : subplebbit.address}</Link>
{index !== defaultSubplebbits.length - 1 ? " /" : null}
</span>
))}
]
</span>
2023-05-01 21:58:19 +02:00
<span className="nav">
[
2023-07-31 08:59:17 +02:00
<span id="button-span" style={{cursor: 'pointer'}} onClick={
() => {
window.electron && window.electron.isElectron ? (
setIsCreateBoardOpen(true)
) : (
alert(
'You can create a board with the desktop version of plebchan:\nhttps://github.com/plebbit/plebchan/releases/latest\n\nIf you are comfortable with the command line, use plebbit-cli:\nhttps://github.com/plebbit/plebbit-cli\n\n'
2023-04-30 17:37:19 +02:00
)
2023-07-31 08:59:17 +02:00
)
}
2023-05-27 12:33:25 +02:00
}>Create Board</span>
2023-04-30 17:37:19 +02:00
]
2023-02-19 16:48:46 +01:00
[
2023-04-08 22:30:44 +02:00
<Link to={`/p/${selectedAddress}/catalog/settings`} onClick={() => setIsSettingsOpen(true)}>Settings</Link>
2023-04-21 10:47:39 +02:00
]
[
2023-05-27 12:55:16 +02:00
<Link to="/">Home</Link>
2023-04-21 10:47:39 +02:00
]
</span>
<div id="board-nav-mobile" style={{ top: visible ? 0 : '-23px' }}>
2023-05-27 11:04:23 +02:00
<div className="nav-container">
<div className="board-select">
<strong>Board</strong>
&nbsp;
<select id="board-select-mobile" value={selectedAddress} onChange={handleSelectChange}>
<option value="all">All</option>
2023-06-17 20:24:38 +02:00
<option value="subscriptions">Subscriptions</option>
2023-08-15 17:31:31 +02:00
{!defaultSubplebbits.some(subplebbit => subplebbit.address === selectedAddress) && (
<option value={selectedAddress}>{selectedAddress}</option>
)}
2023-05-27 11:04:23 +02:00
{defaultSubplebbits.map(subplebbit => (
2023-07-31 08:59:17 +02:00
<option key={`option-${subplebbit.address}`} value={subplebbit.address}
>{subplebbit.title ? subplebbit.title : subplebbit.address}</option>
))}
</select> 
<span id="button-span" style={{cursor: 'pointer'}} onClick={
() => alert(
'You can create a board with the desktop version of plebchan:\nhttps://github.com/plebbit/plebchan/releases/latest\n\nIf you are comfortable with the command line, use plebbit-cli:\nhttps://github.com/plebbit/plebbit-cli\n\n'
2023-04-30 17:37:19 +02:00
)
2023-05-27 11:04:23 +02:00
}>Create Board</span>
</div>
<div className="page-jump">
<Link to={`/p/${selectedAddress}/catalog/settings`} onClick={() => setIsSettingsOpen(true)}>Settings</Link>
&nbsp;
2023-07-31 08:59:17 +02:00
<Link to="/" onClick={() => {handleStyleChange({target: {value: "Yotsuba"}}); window.scrollTo(0, 0);}}>Home</Link>
2023-05-27 11:04:23 +02:00
</div>
2023-04-21 10:47:39 +02:00
</div>
2023-02-23 16:45:29 +01:00
</div>
2023-04-21 10:47:39 +02:00
<div id="separator-mobile">&nbsp;</div>
<div id="separator-mobile">&nbsp;</div>
</>
</NavBar>
<Header selectedStyle={selectedStyle}>
<>
<div className="banner">
<ImageBanner />
</div>
2023-07-31 08:59:17 +02:00
<>
2023-06-27 16:42:39 +02:00
<div className="board-title">{subplebbit.title ?? null}</div>
<div className="board-address">p/{subplebbit.address}
2023-07-31 08:59:17 +02:00
<OfflineIndicator
address={subplebbit.address}
className="offline"
tooltipPlace="top" />
</div>
2023-07-31 08:59:17 +02:00
</>
2023-04-21 10:47:39 +02:00
</>
</Header>
<Break selectedStyle={selectedStyle} />
<PostForm selectedStyle={selectedStyle}>
<PostFormLink id="post-form-link" showPostFormLink={showPostFormLink} selectedStyle={selectedStyle} >
<div id="post-form-link-desktop">
[
2023-07-31 08:59:17 +02:00
<Link to={`/p/${subplebbitAddress}/catalog/post`} onClick={useClickForm()} onMouseOver={(event) => event.target.style.cursor='pointer'}>Start a New Thread</Link>
2023-04-21 10:47:39 +02:00
]
</div>
<div id="post-form-link-mobile">
<span className="btn-wrap">
2023-07-31 08:59:17 +02:00
<Link to={`/p/${subplebbitAddress}/catalog/post`} onClick={useClickForm()} onMouseOver={(event) => event.target.style.cursor='pointer'}>Start a New Thread</Link>
2023-04-21 10:47:39 +02:00
</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>
2023-06-27 10:35:21 +02:00
{account && account?.author && account?.author.displayName ? (
<input name="name" type="text" tabIndex={1} value={account?.author?.displayName} ref={nameRef} disabled />
) : (
<input name="name" type="text" placeholder="Anonymous" tabIndex={1} ref={nameRef} />
)}
2023-04-21 10:47:39 +02:00
</td>
</tr>
<tr data-type="Subject">
<td>Subject</td>
<td>
2023-07-31 08:59:17 +02:00
<input name="sub" type="text" tabIndex={3} ref={subjectRef}/>
<input id="post-button" type="submit" value="Post" tabIndex={6}
onClick={handleSubmit} />
2023-04-21 10:47:39 +02:00
</td>
</tr>
<tr data-type="Comment">
<td>Comment</td>
<td>
<textarea name="com" cols="48" rows="4" tabIndex={4} wrap="soft" ref={commentRef} />
</td>
</tr>
<tr data-type="File">
<td>Embed File</td>
<td>
<input name="embed" type="text" tabIndex={7} placeholder="Paste link" ref={linkRef} />
<button id="t-help" type="button" onClick={
() => alert("- Embedding media is optional, posts can be text-only. \n- A CAPTCHA challenge will appear after posting. \n- The CAPTCHA is case-sensitive.")
} data-tip="Help">?</button>
</td>
</tr>
</tbody>
</PostFormTable>
</PostForm>
2023-08-22 16:18:55 +02:00
<BoardStats subplebbitAddress={subplebbitAddress} />
2023-04-21 10:47:39 +02:00
<TopBar selectedStyle={selectedStyle}>
<hr />
<span className="style-changer">
Style:
2023-07-31 08:59:17 +02:00
 
2023-04-21 10:47:39 +02:00
<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 className="return-button" id="return-button-desktop">
2023-02-24 18:13:02 +01:00
[
2023-07-31 08:59:17 +02:00
<Link to={`/p/${selectedAddress}`} onClick={()=> {window.scrollTo(0, 0)}}>Return</Link>
2023-02-24 18:13:02 +01:00
]
2023-08-19 21:59:13 +02:00
{subplebbit.roles && subplebbit?.roles[account?.author?.address]?.role === "admin" ? (
2023-08-19 21:27:31 +02:00
<BoardSettings subplebbit={subplebbit} />
) : null}
2023-02-24 18:13:02 +01:00
</div>
2023-07-13 15:58:04 +02:00
{subplebbit.state === "succeeded" ? (
2023-05-01 19:01:53 +02:00
<>
2023-06-17 20:24:38 +02:00
<span className="subscribe-button-desktop">
[
2023-07-31 08:59:17 +02:00
<span id="subscribe" style={{cursor: 'pointer'}}>
2023-06-17 20:24:38 +02:00
<span onClick={() => handleSubscribe()}>
2023-06-16 14:42:23 +02:00
{subscribed ? "Unsubscribe" : "Subscribe"}
</span>
2023-06-17 20:24:38 +02:00
</span>
]
</span>
<span className="subscribe-button-mobile">
<span className="btn-wrap" onClick={() => handleSubscribe()}>
2023-07-31 08:59:17 +02:00
{subscribed ? "Unsubscribe" : "Subscribe"}
2023-06-17 20:24:38 +02:00
</span>
</span>
2023-05-27 11:04:23 +02:00
</>
2023-05-01 19:01:53 +02:00
) : (
2023-07-31 08:59:17 +02:00
<div id="stats" style={{float: "right", marginTop: "5px"}}>
<span className={stateString ? "ellipsis" : ""}>{stateString}</span>
2023-05-01 19:01:53 +02:00
</div>
)}
2023-04-21 10:47:39 +02:00
<div id="return-button-mobile">
<span className="btn-wrap-catalog btn-wrap">
2023-07-31 08:59:17 +02:00
<Link to={`/p/${selectedAddress}`} onClick={()=> {window.scrollTo(0, 0)}}>Return</Link>
2023-02-24 18:13:02 +01:00
</span>
</div>
2023-04-21 10:47:39 +02:00
<hr />
</TopBar>
<Tooltip id="tooltip" className="tooltip" />
2023-04-21 10:47:39 +02:00
<Threads selectedStyle={selectedStyle}>
2023-07-31 08:59:17 +02:00
{subplebbit?.state !== "failed" && subplebbit.state === "succeeded" ? (
2023-08-04 21:33:51 +02:00
<Virtuoso
2023-07-31 08:59:17 +02:00
increaseViewportBy={{bottom: 600, top: 600}}
2023-08-04 21:33:51 +02:00
totalCount={rows?.length || 0}
data={rows}
style={{maxWidth: '100%'}}
itemContent={(index, row) => <CatalogRow index={index} row={row} />}
2023-07-31 08:59:17 +02:00
useWindowScroll={true}
2023-08-04 21:33:51 +02:00
components={{ Footer: () => hasMore ? <CatalogLoader /> : null}}
endReached={loadMore}
ref={virtuosoRef}
restoreStateFrom={lastVirtuosoState}
initialScrollTop={lastVirtuosoState?.scrollTop}
2023-07-31 08:59:17 +02:00
/>
) : (<CatalogLoader />)}
2023-04-21 10:47:39 +02:00
</Threads>
2023-04-24 13:09:59 +02:00
<Footer selectedStyle={selectedStyle}>
<Break id="break" selectedStyle={selectedStyle} style={{
marginTop: "-36px",
width: "100%",
}} />
<Break selectedStyle={selectedStyle} style={{
width: "100%",
}} />
<span className="style-changer" style={{
float: "right",
marginTop: "2px",
}}>
Style:
2023-07-31 08:59:17 +02:00
 
2023-04-24 13:09:59 +02:00
<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>
<NavBar selectedStyle={selectedStyle} style={{
marginTop: "42px",
}}>
<>
2023-07-31 08:59:17 +02:00
<span className="boardList">
[
2023-07-14 14:32:33 +02:00
<Link to={`/p/all`} onClick={() => window.scrollTo(0, 0)}>All</Link>
2023-07-31 08:59:17 +02:00
 / 
2023-07-14 14:32:33 +02:00
<Link to={`/p/subscriptions`} onClick={() => window.scrollTo(0, 0)}>Subscriptions</Link>
2023-07-31 08:59:17 +02:00
]&nbsp;
</span>
{defaultSubplebbits.map((subplebbit, index) => (
<span className="boardList" key={`span-${subplebbit.address}`}>
{index === 0 ? null : "\u00a0"}
<Link to={`/p/${subplebbit.address}`} key={`a-${subplebbit.address}`} onClick={() => {
setSelectedTitle(subplebbit.title);
setSelectedAddress(subplebbit.address);
}}
>{subplebbit.title ? subplebbit.title : subplebbit.address}</Link>
{index !== defaultSubplebbits.length - 1 ? " /" : null}
2023-05-01 21:58:19 +02:00
</span>
2023-07-31 08:59:17 +02:00
))}
2023-04-24 13:09:59 +02:00
<span className="nav">
2023-07-31 08:59:17 +02:00
[
<span id="button-span" style={{cursor: 'pointer'}} onClick={
() => {
window.electron && window.electron.isElectron ? (
setIsCreateBoardOpen(true)
) : (
alert(
'You can create a board with the desktop version of plebchan:\nhttps://github.com/plebbit/plebchan/releases/latest\n\nIf you are comfortable with the command line, use plebbit-cli:\nhttps://github.com/plebbit/plebbit-cli\n\n'
)
)
}
}>Create Board</span>
]
2023-04-24 13:09:59 +02:00
[
2023-05-01 21:58:19 +02:00
<Link to={`/p/${selectedAddress}/catalog/settings`} onClick={() => setIsSettingsOpen(true)}>Settings</Link>
2023-04-24 13:09:59 +02:00
]
[
2023-07-31 08:59:17 +02:00
<Link to="/" onClick={() => handleStyleChange({target: {value: "Yotsuba"}}
2023-04-24 13:09:59 +02:00
)}>Home</Link>
]
</span>
</>
</NavBar>
<div id="version">
2023-09-10 14:12:25 +02:00
plebchan v{version}{commitRef}. GPL-2.0
2023-04-24 13:09:59 +02:00
</div>
<div className="footer-links"
2023-04-24 17:53:09 +00:00
style={{
textAlign: "center",
fontSize: "x-small",
fontFamily: "arial",
marginTop: "5px",
marginBottom: "15px",
}}>
2023-07-31 08:59:17 +02:00
<a style={{textDecoration: 'underline'}} href="https://plebbit.com" target="_blank" rel="noopener noreferrer">About</a>
&nbsp;&nbsp;
<a style={{textDecoration: 'underline'}} href="https://github.com/plebbit/plebchan/releases/latest" target="_blank" rel="noopener noreferrer">App</a>
2023-04-24 13:09:59 +02:00
&nbsp;&nbsp;
2023-07-31 08:59:17 +02:00
<a style={{textDecoration: 'underline'}} href="https://twitter.com/plebchan_eth" target="_blank" rel="noopener noreferrer">Twitter</a>
&nbsp;&nbsp;
<a style={{textDecoration: 'underline'}} href="https://t.me/plebbit" target="_blank" rel="noopener noreferrer">Telegram</a>
2023-04-24 13:09:59 +02:00
</div>
</Footer>
2023-04-21 10:47:39 +02:00
</Container>
</>
2023-02-19 16:48:46 +01:00
);
}
export default Catalog;