2023-04-03 15:08:45 +02:00
import React , { useState , useEffect , useRef , 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 { debounce } from 'lodash' ;
2023-04-08 13:27:17 +02:00
import useGeneralStore from '../../hooks/stores/useGeneralStore' ;
2023-04-09 08:37:29 +02:00
import { Container , NavBar , Header , Break , PostFormLink , PostFormTable , PostForm , TopBar , BoardForm } from '../styled/Board.styled' ;
2023-03-19 18:30:07 +01:00
import ImageBanner from '../ImageBanner' ;
2023-03-29 13:37:36 +02:00
import Post from '../Post' ;
2023-03-19 18:30:07 +01:00
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 renderComments from '../../utils/renderComments' ;
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' ;
import useSuccess from '../../hooks/useSuccess' ;
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 ,
2023-04-07 17:47:51 +02:00
setChallengesArray ,
2023-03-20 17:08:05 +01:00
defaultSubplebbits ,
2023-04-09 20:55:55 +02:00
setIsCaptchaOpen ,
2023-03-20 17:08:05 +01:00
isSettingsOpen , setIsSettingsOpen ,
2023-04-07 17:47:51 +02:00
setPendingComment ,
2023-03-20 17:08:05 +01:00
selectedAddress , setSelectedAddress ,
2023-04-12 21:56:25 +02:00
setSelectedParentCid ,
setSelectedShortCid ,
2023-03-13 14:29:34 +01:00
selectedStyle ,
2023-03-20 17:08:05 +01:00
setSelectedThread ,
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-04-03 15:08:45 +02:00
const nameRef = useRef ();
const subjectRef = useRef ();
const commentRef = useRef ();
const linkRef = useRef ();
2023-04-11 22:27:24 +02:00
const onChallengeVerificationRef = useRef ();
2023-03-17 14:35:03 +01:00
const [ isReplyOpen , setIsReplyOpen ] = useState ( false );
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-04-03 15:08:45 +02:00
const { subplebbitAddress } = useParams ();
2023-03-01 22:26:25 +01:00
2023-04-04 14:42:22 +02:00
const [ errorMessage , setErrorMessage ] = useState ( null );
const [ successMessage , setSuccessMessage ] = useState ( null );
useError ( errorMessage , [ errorMessage ]);
useSuccess ( successMessage , [ successMessage ]);
2023-04-01 13:59:54 +02: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-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-04-03 15:08:45 +02:00
2023-02-16 21:01:21 +01:00
2023-02-15 16:48:21 +01:00
const onChallengeVerification = ( challengeVerification ) => {
if ( challengeVerification . challengeSuccess === true ) {
2023-04-12 14:02:35 +02:00
setSuccessMessage ( 'Challenge success.' , { publishedCid : challengeVerification . publication ? . cid });
2023-04-11 22:27:24 +02:00
navigate ( `/p/ ${ selectedAddress } /c/ ${ challengeVerification . publication ? . cid } ` );
2023-02-15 16:48:21 +01:00
}
else if ( challengeVerification . challengeSuccess === false ) {
2023-04-12 14:02:35 +02:00
setErrorMessage ( 'Challenge failed.' , { reason : challengeVerification . reason , errors : challengeVerification . errors });
2023-04-04 14:42:22 +02:00
setErrorMessage ( "Error: You seem to have mistyped the CAPTCHA. Please try again." );
2023-02-15 16:48:21 +01:00
}
2023-04-11 18:12:11 +02:00
};
2023-04-11 22:27:24 +02:00
2023-02-15 16:48:21 +01:00
const onChallenge = async ( challenges , comment ) => {
2023-04-07 17:47:51 +02:00
setPendingComment ( comment );
2023-02-15 16:48:21 +01:00
let challengeAnswers = [];
2023-04-09 20:55:55 +02:00
2023-02-15 16:48:21 +01:00
try {
challengeAnswers = await getChallengeAnswersFromUser ( challenges )
}
catch ( error ) {
2023-04-04 14:42:22 +02:00
setErrorMessage ( error );
2023-02-15 16:48:21 +01:00
}
if ( challengeAnswers ) {
await comment . publishChallengeAnswers ( challengeAnswers )
}
2023-04-03 15:08:45 +02:00
};
2023-04-11 17:17:32 +02:00
2023-04-12 14:02:35 +02:00
2023-04-11 17:17:32 +02:00
const [ publishCommentOptions , setPublishCommentOptions ] = useState ({
subplebbitAddress : selectedAddress ,
onChallenge ,
2023-04-11 18:12:11 +02:00
onChallengeVerification : onChallengeVerificationRef . current ,
2023-04-11 17:17:32 +02:00
onError : ( error ) => {
setErrorMessage ( error );
},
});
2023-04-12 14:02:35 +02:00
const { publishComment , index } = usePublishComment ( publishCommentOptions );
useEffect (() => {
if ( index !== undefined ) {
navigate ( `/profile/c/ ${ index } ` );
setSuccessMessage ( 'Comment pending with index ' + index + '.' );
}
}, [ index ]);
onChallengeVerificationRef . current = onChallengeVerification ;
const resetFields = () => {
nameRef . current . value = '' ;
subjectRef . current . value = '' ;
commentRef . current . value = '' ;
linkRef . current . value = '' ;
};
2023-04-11 22:27:24 +02:00
2023-04-11 18:12:11 +02:00
useEffect (() => {
setPublishCommentOptions (( prevPublishCommentOptions ) => ({
... prevPublishCommentOptions ,
subplebbitAddress : selectedAddress ,
onChallengeVerification : onChallengeVerificationRef . current ,
}));
}, [ selectedAddress ]);
2023-04-11 17:17:32 +02:00
const handleSubmit = async ( event ) => {
event . preventDefault ();
setPublishCommentOptions (( prevPublishCommentOptions ) => ({
... prevPublishCommentOptions ,
displayName : nameRef . current . value || undefined ,
title : subjectRef . current . value || undefined ,
content : commentRef . current . value || undefined ,
link : linkRef . current . value || undefined ,
}));
};
useEffect (() => {
if ( publishCommentOptions . content ) {
( async () => {
await publishComment ();
resetFields ();
})();
}
}, [ publishCommentOptions ]);
2023-04-03 15:08:45 +02:00
2023-02-15 16:48:21 +01:00
const getChallengeAnswersFromUser = async ( challenges ) => {
2023-04-07 17:47:51 +02:00
setChallengesArray ( challenges );
2023-02-15 16:48:21 +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 ;
challengeImg . onload = () => {
2023-03-12 22:07:15 +01:00
setIsCaptchaOpen ( true );
2023-02-15 16:48:21 +01:00
const handleKeyDown = ( event ) => {
if ( event . key === 'Enter' ) {
2023-03-12 22:07:15 +01:00
resolve ( captchaResponse );
setIsCaptchaOpen ( false );
2023-02-15 16:48:21 +01:00
document . removeEventListener ( 'keydown' , handleKeyDown );
2023-04-03 15:08:45 +02:00
event . preventDefault ();
2023-02-15 16:48:21 +01:00
}
};
2023-03-12 22:07:15 +01:00
setCaptchaResponse ( '' );
2023-02-15 16:48:21 +01:00
document . addEventListener ( 'keydown' , handleKeyDown );
};
challengeImg . onerror = () => {
2023-04-07 17:47:51 +02:00
reject ( setErrorMessage ( 'Could not load challenges' ));
2023-02-15 16:48:21 +01:00
};
});
};
2023-02-12 21:20:08 +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 );
2023-04-08 22:30:44 +02:00
navigate ( `/p/ ${ selected } ` );
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 ();
2023-03-30 22:17:42 +02:00
const cid = reply . shortCid ;
2023-03-08 09:49:42 +01:00
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
};
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-17 14:35:03 +01:00
< ReplyModal
selectedStyle = { selectedStyle }
isOpen = { isReplyOpen }
2023-04-01 13:59:54 +02:00
closeModal = {() => setIsReplyOpen ( false )} />
2023-03-15 15:25:09 +01:00
< SettingsModal
selectedStyle = { selectedStyle }
isOpen = { isSettingsOpen }
2023-04-01 13:59:54 +02:00
closeModal = {() => setIsSettingsOpen ( false )} />
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-04-08 22:30:44 +02:00
< Link to = { `/p/ ${ subplebbit . address } ` } key = { `a- ${ subplebbit . address } ` } onClick = {() => handleClickTitle ( subplebbit . title , subplebbit . address )}
2023-04-01 14:51:07 +02:00
>{ subplebbit . title ? subplebbit . title : subplebbit . address }</ Link >
2023-02-04 22:10:54 +01:00
] & nbsp ;
</ span >
))}
2023-02-23 16:45:29 +01:00
< span className = "nav" >
[
2023-04-08 22:30:44 +02:00
< Link to = { `/p/ ${ selectedAddress } /settings` } onClick = {() => setIsSettingsOpen ( true )}> 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 }
2023-04-01 14:51:07 +02:00
>{ subplebbit . title ? subplebbit . title : subplebbit . address }</ option >
2023-02-27 15:32:16 +01:00
))}
2023-02-23 16:45:29 +01:00
</ select >
</ div >
< div className = "page-jump" >
2023-04-08 22:30:44 +02:00
< Link to = { `/p/ ${ selectedAddress } /settings` } onClick = {() => setIsSettingsOpen ( true )}> 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" >
[
2023-04-03 15:08:45 +02:00
< a onClick = { useClickForm ()} onMouseOver = {( event ) => event . target . style . cursor = 'pointer' }> Start a New Thread </ a >
2023-02-24 18:13:02 +01:00
]
</ div >
< div id = "post-form-link-mobile" >
< span className = "btn-wrap" >
2023-04-03 15:08:45 +02:00
< a onClick = { useClickForm ()} onMouseOver = {( event ) => event . target . style . cursor = 'pointer' }> Start a New Thread </ a >
2023-02-24 18:13:02 +01:00
</ 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-04-03 15:08:45 +02:00
< input name = "name" type = "text" tabIndex = { 1 } placeholder = "Anonymous" ref = { nameRef } />
2023-02-11 22:00:13 +01:00
</ td >
</ tr >
< tr data - type = "Subject" >
< td > Subject </ td >
< td >
2023-04-03 15:08:45 +02:00
< input name = "sub" type = "text" tabIndex = { 3 } ref = { subjectRef }/>
< input id = "post-button" type = "submit" value = "Post" tabIndex = { 6 }
2023-04-11 17:17:32 +02:00
onClick = { handleSubmit } />
2023-02-11 22:00:13 +01:00
</ td >
</ tr >
< tr data - type = "Comment" >
< td > Comment </ td >
< td >
2023-04-03 15:08:45 +02:00
< textarea name = "com" cols = "48" rows = "4" tabIndex = { 4 } wrap = "soft" ref = { commentRef } />
2023-02-11 22:00:13 +01:00
</ td >
</ tr >
< tr data - type = "File" >
< td > Embed File </ td >
< td >
2023-04-03 15:08:45 +02:00
< input name = "embed" type = "text" tabIndex = { 7 } placeholder = "Paste link" ref = { linkRef } />
2023-04-01 13:59:54 +02:00
< 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 >
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-04-08 22:30:44 +02:00
< Link to = { `/p/ ${ 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-04-08 22:30:44 +02:00
< Link to = { `/p/ ${ 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 }
>
2023-03-29 13:37:36 +02:00
{ selectedFeed . map (( thread ) => {
2023-03-25 21:44:28 +01:00
const { replies : { pages : { topAll : { comments } } } } = thread ;
const { renderedComments , omittedCount } = renderComments ( comments );
const commentMediaInfo = getCommentMediaInfo ( thread );
const fallbackImgUrl = "/assets/filedeleted-res.gif" ;
return (
2023-03-28 11:23:27 +02:00
< Fragment key = { `fr- ${ thread . cid } ` }>
2023-03-25 21:44:28 +01:00
< 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 ;
2023-03-29 22:02:44 +02:00
< a key = { `fa- ${ thread . cid } ` } href = { commentMediaInfo . url } target = "_blank"
rel = "noopener noreferrer" >{
2023-03-25 21:44:28 +01:00
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" >
2023-03-26 14:39:09 +02:00
< video controls width = "" key = { `fti- ${ thread . cid } ` } src = { commentMediaInfo . url } alt = { commentMediaInfo . type } onError = {( e ) => e . target . src = fallbackImgUrl } />
2023-03-25 21:44:28 +01:00
</ span >
) : null }
{ commentMediaInfo ? . type === "audio" ? (
< span key = { `fta- ${ thread . cid } ` } className = "file-thumb" >
2023-03-26 14:39:09 +02:00
< audio controls key = { `fti- ${ thread . cid } ` } src = { commentMediaInfo . url } alt = { commentMediaInfo . type } onError = {( e ) => e . target . src = fallbackImgUrl } />
2023-03-25 21:44:28 +01:00
</ 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-03-29 14:36:41 +02:00
< span key = { `pa- ${ thread . cid } ` } className = "poster-address" >
{ thread . author . shortAddress }
</ span >)
2023-03-25 21:44:28 +01:00
& 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" >
2023-04-01 13:59:54 +02:00
< Link to = "" key = { `pl1- ${ thread . cid } ` } onClick = {() => {}} title = "Link to this post" > c / </ Link >
2023-04-12 21:00:51 +02:00
< button id = "reply-button" style = {{ all : 'unset' , cursor : 'pointer' }} key = { `pl2- ${ thread . cid } ` }
onClick = {() => {
2023-04-12 21:56:25 +02:00
setIsReplyOpen ( true ); setSelectedShortCid ( thread . shortCid ); setSelectedParentCid ( thread . cid );
2023-04-12 21:00:51 +02:00
}} title = "Reply to this post" >{ thread . shortCid }</ button >
2023-03-25 21:44:28 +01:00
& nbsp ;
< span key = { `rl1- ${ thread . cid } ` }> & nbsp ;
[
2023-04-08 22:30:44 +02:00
< Link key = { `rl2- ${ thread . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "reply-link" > Reply </ Link >
2023-03-25 21:44:28 +01:00
]
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 )
2023-03-28 11:23:27 +02:00
. map (( reply ) => (
< div key = { `div- ${ reply . cid } ` } style = {{ display : 'inline-block' }}>
2023-03-25 21:44:28 +01:00
< Link key = { `ql- ${ reply . cid } ` }
2023-04-01 13:59:54 +02:00
to = {() => {}} className = "quote-link"
2023-03-25 21:44:28 +01:00
onClick = {( event ) => handleQuoteClick ( reply , event )}>
2023-03-30 22:17:42 +02:00
c / { reply . shortCid }</ Link >
2023-03-25 21:44:28 +01:00
& nbsp ;
</ div >
))
}
</ div >
</ span >
{ thread . content ? (
2023-03-29 13:37:36 +02:00
thread . content . length > 1000 ?
2023-03-25 21:44:28 +01:00
< Fragment key = { `fragment5- ${ thread . cid } ` }>
< blockquote key = { `bq- ${ thread . cid } ` }>
2023-03-29 13:37:36 +02:00
< Post content = { thread . content . slice ( 0 , 1000 )} key = { `post- ${ thread . cid } ` } />
2023-03-25 21:44:28 +01:00
< 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 ;
2023-04-08 22:30:44 +02:00
< Link key = { `ttl-l- ${ thread . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "ttl-link" > Click here </ Link >
2023-03-25 21:44:28 +01:00
& 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 } ` }>
2023-03-29 13:37:36 +02:00
< Post content = { thread . content } key = { `post- ${ thread . cid } ` } />
2023-03-25 21:44:28 +01:00
</ 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 ;
2023-04-08 22:30:44 +02:00
< Link key = { `oc2- ${ thread . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "ttl-link" > here </ Link >
2023-03-25 21:44:28 +01:00
& nbsp ; to view .
</ span >
</ span >) : null }
</ span >
2023-03-28 11:23:27 +02:00
{ renderedComments . map (( reply ) => {
2023-03-29 16:38:54 +02:00
const replyMediaInfo = getCommentMediaInfo ( reply );
const fallbackImgUrl = "/assets/filedeleted-res.gif" ;
2023-03-25 21:44:28 +01:00
return (
2023-03-28 11:23:27 +02:00
< div key = { `rc- ${ reply . cid } ` } className = "reply-container" >
2023-03-25 21:44:28 +01:00
< 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 /
2023-03-29 14:36:41 +02:00
< span key = { `mob-ha- ${ reply . cid } ` }>
{ reply . author . shortAddress }
</ span >
2023-03-25 21:44:28 +01:00
)
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" >
2023-04-01 13:59:54 +02:00
< Link to = "" key = { `pl1- ${ reply . cid } ` } onClick = {() => {}} title = "Link to this post" > c / </ Link >
2023-04-12 21:00:51 +02:00
< button id = "reply-button" style = {{ all : 'unset' , cursor : 'pointer' }} key = { `pl2- ${ reply . cid } ` }
onClick = {() => {
2023-04-12 21:56:25 +02:00
setIsReplyOpen ( true ); setSelectedShortCid ( reply . shortCid ); setSelectedParentCid ( reply . cid );
2023-04-12 21:00:51 +02:00
}} title = "Reply to this post" >{ reply . shortCid }</ button >
2023-03-25 21:44:28 +01:00
</ span > & nbsp ;
2023-04-01 13:59:54 +02:00
< button key = { `pmb- ${ reply . cid } ` } className = "post-menu-button" onClick = {() => {}} title = "Post menu" style = {{ all : 'unset' , cursor : 'pointer' }} data - cmd = "post-menu" > ▶ </ button >
2023-03-25 21:44:28 +01:00
< 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' }}>
2023-04-01 13:59:54 +02:00
< Link to = {() => {}} key = { `ql- ${ reply . cid } ` }
2023-03-25 21:44:28 +01:00
className = "quote-link"
onClick = {( event ) => handleQuoteClick ( reply , event )}>
2023-03-30 22:17:42 +02:00
c / { reply . shortCid }</ Link >
2023-03-25 21:44:28 +01:00
& nbsp ;
</ div >
))
}
</ div >
</ div >
2023-03-29 16:38:54 +02:00
{ replyMediaInfo ? . url ? (
< div key = { `f- ${ reply . cid } ` } className = "file"
style = {{ marginBottom : "5px" }}>
< div key = { `ft- ${ reply . cid } ` } className = "reply-file-text" >
Link :& nbsp ;
2023-03-29 22:02:44 +02:00
< a key = { `fa- ${ reply . cid } ` } href = { replyMediaInfo . url } target = "_blank"
rel = "noopener noreferrer" >{
2023-03-29 16:38:54 +02:00
replyMediaInfo ? . url . length > 30 ?
replyMediaInfo ? . url . slice ( 0 , 30 ) + "(...)" :
replyMediaInfo ? . url
}</ a > & nbsp ;({ replyMediaInfo ? . type })
</ div >
{ replyMediaInfo ? . type === "webpage" ? (
< span key = { `fta- ${ reply . cid } ` } className = "file-thumb-reply" >
< img key = { `fti- ${ reply . cid } ` }
src = { reply . thumbnailUrl }
alt = "thumbnail"
onError = {( e ) => e . target . src = fallbackImgUrl } />
</ span >
) : null }
{ replyMediaInfo ? . type === "image" ? (
< span key = { `fta- ${ reply . cid } ` } className = "file-thumb-reply" >
< img key = { `fti- ${ reply . cid } ` }
src = { replyMediaInfo . url }
alt = { replyMediaInfo . type }
onError = {( e ) => e . target . src = fallbackImgUrl } />
</ span >
) : null }
{ replyMediaInfo ? . type === "video" ? (
< span key = { `fta- ${ reply . cid } ` } className = "file-thumb-reply" >
< video controls
key = { `fti- ${ reply . cid } ` }
src = { replyMediaInfo . url } alt = { replyMediaInfo . type }
onError = {( e ) => e . target . src = fallbackImgUrl } />
</ span >
) : null }
{ replyMediaInfo ? . type === "audio" ? (
< span key = { `fta- ${ reply . cid } ` } className = "file-thumb-reply" >
< audio controls
key = { `fti- ${ reply . cid } ` }
src = { replyMediaInfo . url } alt = { replyMediaInfo . type }
onError = {( e ) => e . target . src = fallbackImgUrl } />
</ span >
) : null }
</ div >
) : null }
2023-03-25 21:44:28 +01:00
{ reply . content ? (
2023-03-29 13:37:36 +02:00
reply . content . length > 500 ?
2023-03-25 21:44:28 +01:00
< Fragment key = { `fragment8- ${ reply . cid } ` }>
< blockquote key = { `pm- ${ reply . cid } ` } className = "post-message" >
2023-04-01 13:59:54 +02:00
< Link to = "" key = { `r-pm- ${ reply . cid } ` } className = "quotelink" onClick = {() => {}}>
2023-03-25 21:44:28 +01:00
{ `c/ ${ reply . parentCid . slice ( 0 , 8 ) } ` }{< br />}
</ Link >
2023-03-29 13:37:36 +02:00
< Post content = { reply . content . slice ( 0 , 500 )} key = { `post- ${ reply . cid } ` } />
2023-03-25 21:44:28 +01:00
< 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 ;
2023-04-08 22:30:44 +02:00
< Link key = { `ttl-l- ${ reply . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "ttl-link" > Click here </ Link >
2023-03-25 21:44:28 +01:00
& nbsp ; to view . </ span >
</ blockquote >
</ Fragment >
: < blockquote key = { `pm- ${ reply . cid } ` } className = "post-message" >
2023-04-01 13:59:54 +02:00
< Link to = {() => {}} key = { `r-pm- ${ reply . cid } ` } className = "quotelink" onClick = {( event ) => handleQuoteClick ( reply , event )}>
2023-03-25 21:44:28 +01:00
{ `c/ ${ reply . parentCid . slice ( 0 , 8 ) } ` }{< br />}
</ Link >
2023-03-29 13:37:36 +02:00
< Post content = { reply . content } key = { `post- ${ reply . cid } ` } />
2023-03-25 21:44:28 +01:00
</ 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" >
2023-04-01 13:59:54 +02:00
< button key = { `mob-pb- ${ thread . cid } ` } className = "post-menu-button-mobile" onClick = {() => {}} style = {{ all : 'unset' , cursor : 'pointer' }}>...</ button >
2023-03-25 21:44:28 +01:00
< 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-29 14:36:41 +02:00
< span key = { `mob-ha- ${ thread . cid } ` } className = "highlight-address-mobile" >
{ thread . author . shortAddress }
</ 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 ;
2023-04-01 13:59:54 +02:00
< Link to = "" key = { `mob-no- ${ thread . cid } ` } onClick = {() => {}} title = "Link to this post" > c / </ Link >
2023-04-12 21:00:51 +02:00
< button id = "reply-button" style = {{ all : 'unset' , cursor : 'pointer' }} key = { `mob-no2- ${ thread . cid } ` } onClick = {() => {
2023-04-12 21:56:25 +02:00
setIsReplyOpen ( true ); setSelectedShortCid ( thread . shortCid ); setSelectedParentCid ( thread . cid );
2023-04-12 21:00:51 +02:00
}} title = "Reply to this post" >{ thread . shortCid }</ button >
2023-02-26 19:13:46 +01:00
</ span >
</ div >
2023-03-29 22:02:44 +02:00
{ thread . link ? (
< div key = { `mob-f- ${ thread . cid } ` } className = "file-mobile" >
< a key = { `link-a- ${ thread . cid } ` } href = { commentMediaInfo ? . url } target = "_blank"
rel = "noopener noreferrer" >
{ commentMediaInfo ? . url ? (
commentMediaInfo . type === "webpage" ? (
< 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 >
) : commentMediaInfo . type === "image" ? (
< 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 >
) : commentMediaInfo . type === "video" ? (
< span key = { `mob-ft ${ thread . cid } ` } className = "file-thumb-mobile" >
< video key = { `fti- ${ thread . cid } ` }
src = { commentMediaInfo . url }
alt = { commentMediaInfo . type }
style = {{ pointerEvents : "none" }}
onError = {( e ) => e . target . src = fallbackImgUrl } />
< div key = { `mob-fi- ${ thread . cid } ` } className = "file-info-mobile" >{ commentMediaInfo ? . type }</ div >
</ span >
) : commentMediaInfo . type === "audio" ? (
< 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 >
) : null
) : null }
</ a >
</ div >
2023-03-25 21:44:28 +01:00
) : null }
{ thread . content ? (
2023-03-29 13:37:36 +02:00
thread . content . length > 500 ?
2023-03-25 21:44:28 +01:00
< Fragment key = { `fragment12- ${ thread . cid } ` }>
< blockquote key = { `mob-bq- ${ thread . cid } ` } className = "post-message-mobile" >
2023-03-29 13:37:36 +02:00
< Post content = { thread . content . slice ( 0 , 500 )} key = { `post-mobile- ${ thread . cid } ` } />
2023-03-25 21:44:28 +01:00
< 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 ;
2023-04-08 22:30:44 +02:00
< Link key = { `mob-ttl-l- ${ thread . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "ttl-link" > Click here </ Link >
2023-03-25 21:44:28 +01:00
& nbsp ; to view . </ span >
</ blockquote >
</ Fragment >
: < blockquote key = { `mob-bq- ${ thread . cid } ` } className = "post-message-mobile" >
2023-03-29 13:37:36 +02:00
< Post content = { thread . content } key = { `post-mobile- ${ thread . cid } ` } />
2023-03-25 21:44:28 +01:00
</ blockquote >)
: null }
</ div >
< div key = { `mob-pl- ${ thread . cid } ` } className = "post-link-mobile" >
2023-03-29 22:02:44 +02:00
< span key = { `mob-info- ${ thread . cid } ` } className = "info-mobile" >{ thread . replyCount } Replies </ span >
2023-04-08 22:30:44 +02:00
< Link key = { `rl2- ${ thread . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "button-mobile" > View Thread </ Link >
2023-02-26 19:13:46 +01:00
</ div >
</ div >
2023-03-28 11:23:27 +02:00
{ renderedComments . map (( reply ) => {
2023-03-29 18:55:29 +02:00
const replyMediaInfo = getCommentMediaInfo ( reply );
2023-03-25 21:44:28 +01:00
return (
2023-03-28 11:23:27 +02:00
< div key = { `mob-rc- ${ reply . cid } ` } className = "reply-container" >
2023-03-25 21:44:28 +01:00
< 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 /
2023-03-29 14:36:41 +02:00
< span key = { `mob-ha- ${ reply . cid } ` } className = "highlight-address-mobile" >
{ reply . author . shortAddress }
</ span >
2023-03-25 21:44:28 +01:00
) & nbsp ;
</ span >
< br key = { `mob-br- ${ reply . cid } ` } />
</ span >
< span key = { `mob-dt- ${ reply . cid } ` } className = "date-time-mobile" >
{ getDate ( reply . timestamp )} & nbsp ;
2023-04-01 13:59:54 +02:00
< Link to = "" key = { `mob-pl1- ${ reply . cid } ` } onClick = {() => {}} title = "Link to this post" > c / </ Link >
2023-04-12 21:00:51 +02:00
< button id = "reply-button" style = {{ all : 'unset' , cursor : 'pointer' }} key = { `mob-pl2- ${ reply . cid } ` } onClick = {() => {
2023-04-12 21:56:25 +02:00
setIsReplyOpen ( true ); setSelectedShortCid ( reply . shortCid ); setSelectedParentCid ( reply . cid )
2023-04-12 21:00:51 +02:00
}} title = "Reply to this post" >{ reply . shortCid }</ button >
2023-03-25 21:44:28 +01:00
</ span >
</ div >
2023-03-29 22:02:44 +02:00
{ reply . link ? (
< div key = { `mob-f- ${ reply . cid } ` } className = "file-mobile" >
< a key = { `link-a- ${ reply . cid } ` } href = { replyMediaInfo ? . url } target = "_blank" rel = "noopener noreferrer" >
{ replyMediaInfo ? . url ? (
replyMediaInfo . type === "webpage" ? (
< span key = { `mob-ft ${ reply . cid } ` } className = "file-thumb-mobile" >
< img key = { `mob-img- ${ reply . cid } ` } src = { reply . thumbnailUrl } alt = "thumbnail" onError = {( e ) => e . target . src = fallbackImgUrl } />
< div key = { `mob-fi- ${ reply . cid } ` } className = "file-info-mobile" >{ replyMediaInfo . type }</ div >
</ span >
) : replyMediaInfo . type === "image" ? (
< span key = { `mob-ft ${ reply . cid } ` } className = "file-thumb-mobile" >
< img key = { `mob-img- ${ reply . cid } ` } src = { replyMediaInfo . url } alt = { replyMediaInfo . type } onError = {( e ) => e . target . src = fallbackImgUrl } />
< div key = { `mob-fi- ${ reply . cid } ` } className = "file-info-mobile" >{ replyMediaInfo . type }</ div >
</ span >
) : replyMediaInfo . type === "video" ? (
< span key = { `mob-ft ${ reply . cid } ` } className = "file-thumb-mobile" >
< video key = { `fti- ${ reply . cid } ` }
src = { replyMediaInfo . url }
alt = { replyMediaInfo . type }
style = {{ pointerEvents : "none" }}
onError = {( e ) => e . target . src = fallbackImgUrl } />
< div key = { `mob-fi- ${ reply . cid } ` } className = "file-info-mobile" >{ replyMediaInfo . type }</ div >
</ span >
) : replyMediaInfo . type === "audio" ? (
< span key = { `mob-ft ${ reply . cid } ` } className = "file-thumb-mobile" >
< audio key = { `mob-img- ${ reply . cid } ` } src = { replyMediaInfo . url } alt = { replyMediaInfo . type } onError = {( e ) => e . target . src = fallbackImgUrl } />
< div key = { `mob-fi- ${ reply . cid } ` } className = "file-info-mobile" >{ replyMediaInfo . type }</ div >
</ span >
) : null
) : null }
</ a >
</ div >
2023-03-29 18:55:29 +02:00
) : null }
2023-03-25 21:44:28 +01:00
{ reply . content ? (
2023-03-29 13:37:36 +02:00
reply . content . length > 500 ?
2023-03-25 21:44:28 +01:00
< Fragment key = { `fragment15- ${ reply . cid } ` }>
< blockquote key = { `mob-pm- ${ reply . cid } ` } className = "post-message" >
2023-04-01 13:59:54 +02:00
< Link to = "" key = { `mob-r-pm- ${ reply . cid } ` } className = "quotelink" onClick = {() => {}}>
2023-03-25 21:44:28 +01:00
{ `c/ ${ reply . parentCid . slice ( 0 , 8 ) } ` }{< br />}
</ Link >
2023-03-29 13:37:36 +02:00
< Post content = { reply . content . slice ( 0 , 500 )} key = { `post-mobile- ${ reply . cid } ` } />
2023-03-25 21:44:28 +01:00
< 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 ;
2023-04-08 22:30:44 +02:00
< Link key = { `mob-ttl-l- ${ reply . cid } ` } to = { `/p/ ${ selectedAddress } /c/ ${ thread . cid } ` } onClick = {() => setSelectedThread ( thread . cid )} className = "ttl-link" > Click here </ Link >
2023-03-25 21:44:28 +01:00
& nbsp ; to view . </ span >
</ blockquote >
</ Fragment >
: < blockquote key = { `mob-pm- ${ reply . cid } ` } className = "post-message" >
2023-04-01 13:59:54 +02:00
< Link to = {() => {}} key = { `mob-r-pm- ${ reply . cid } ` } className = "quotelink" onClick = {( event ) => handleQuoteClick ( reply , event )}>
2023-03-25 21:44:28 +01:00
{ `c/ ${ reply . parentCid . slice ( 0 , 8 ) } ` }{< br />}
</ Link >
2023-03-29 13:37:36 +02:00
< Post content = { reply . content } key = { `post-mobile- ${ reply . cid } ` } />
2023-03-25 21:44:28 +01:00
</ blockquote >)
: null }
</ div >
</ div >
)})}
</ div >
</ Fragment >
)})}
</ InfiniteScroll >
)}
2023-02-12 12:26:31 +01:00
</ 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 ;