2021-09-24 21:28:21 +00:00
|
|
|
import Item from './item'
|
|
|
|
import Reply from './reply'
|
2021-09-23 17:42:00 +00:00
|
|
|
import Comment from './comment'
|
|
|
|
import Text from './text'
|
2021-09-24 21:28:21 +00:00
|
|
|
import Comments from './comments'
|
2021-09-23 17:42:00 +00:00
|
|
|
import styles from '../styles/item.module.css'
|
|
|
|
import { NOFOLLOW_LIMIT } from '../lib/constants'
|
2021-09-23 22:18:48 +00:00
|
|
|
import { useMe } from './me'
|
2021-09-24 21:28:21 +00:00
|
|
|
import { Button } from 'react-bootstrap'
|
2021-09-23 17:42:00 +00:00
|
|
|
|
2021-09-24 21:28:21 +00:00
|
|
|
function BioItem ({ item, handleClick }) {
|
2021-09-23 22:18:48 +00:00
|
|
|
const me = useMe()
|
2021-09-23 20:09:07 +00:00
|
|
|
if (!item.text) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<ItemText item={item} />
|
2021-09-23 22:18:48 +00:00
|
|
|
{me?.name === item.user.name &&
|
2021-11-12 22:39:52 +00:00
|
|
|
<div className='text-right'>
|
|
|
|
<Button
|
|
|
|
onClick={handleClick}
|
|
|
|
size='md' variant='link'
|
|
|
|
>edit bio
|
|
|
|
</Button>
|
|
|
|
</div>}
|
2021-09-23 20:09:07 +00:00
|
|
|
<Reply parentId={item.id} />
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function TopLevelItem ({ item }) {
|
|
|
|
return (
|
|
|
|
<Item item={item}>
|
|
|
|
{item.text && <ItemText item={item} />}
|
|
|
|
<Reply parentId={item.id} replyOpen />
|
|
|
|
</Item>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function ItemText ({ item }) {
|
|
|
|
return <Text nofollow={item.sats + item.boost < NOFOLLOW_LIMIT}>{item.text}</Text>
|
|
|
|
}
|
|
|
|
|
2021-09-24 21:28:21 +00:00
|
|
|
export default function ItemFull ({ item, bio, ...props }) {
|
2021-09-23 17:42:00 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{item.parentId
|
2021-09-24 21:28:21 +00:00
|
|
|
? <Comment item={item} replyOpen includeParent noComments {...props} />
|
2021-11-12 22:39:52 +00:00
|
|
|
: (
|
|
|
|
<div className='mt-1'>{
|
|
|
|
bio
|
2021-09-24 21:28:21 +00:00
|
|
|
? <BioItem item={item} {...props} />
|
|
|
|
: <TopLevelItem item={item} {...props} />
|
2021-11-12 22:39:52 +00:00
|
|
|
}
|
|
|
|
</div>)}
|
2021-09-24 21:28:21 +00:00
|
|
|
{item.comments &&
|
|
|
|
<div className={styles.comments}>
|
2021-12-21 21:29:42 +00:00
|
|
|
<Comments parentId={item.id} comments={item.comments} />
|
2021-09-24 21:28:21 +00:00
|
|
|
</div>}
|
2021-09-23 17:42:00 +00:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|