stacker.news/components/item.js

110 lines
4.2 KiB
JavaScript
Raw Normal View History

2021-04-14 23:56:29 +00:00
import Link from 'next/link'
2021-04-14 00:57:32 +00:00
import styles from './item.module.css'
2021-04-22 22:14:32 +00:00
import UpVote from './upvote'
import { useRef, useState } from 'react'
import { NOFOLLOW_LIMIT } from '../lib/constants'
2022-01-10 18:53:26 +00:00
import Pin from '../svgs/pushpin-fill.svg'
2022-02-03 22:01:42 +00:00
import reactStringReplace from 'react-string-replace'
2022-07-30 13:25:46 +00:00
import PollIcon from '../svgs/bar-chart-horizontal-fill.svg'
2023-01-26 16:11:55 +00:00
import BountyIcon from '../svgs/bounty-bag.svg'
import ActionTooltip from './action-tooltip'
2022-09-21 19:57:36 +00:00
import Flag from '../svgs/flag-fill.svg'
2023-07-13 20:18:04 +00:00
import ImageIcon from '../svgs/image-fill.svg'
2022-10-25 21:35:32 +00:00
import { abbrNum } from '../lib/format'
import ItemInfo from './item-info'
2022-02-03 22:01:42 +00:00
2022-07-21 22:55:05 +00:00
export function SearchTitle ({ title }) {
2022-02-03 22:29:48 +00:00
return reactStringReplace(title, /:high\[([^\]]+)\]/g, (match, i) => {
2022-02-03 22:01:42 +00:00
return <mark key={`mark-${match}`}>{match}</mark>
})
}
2021-04-14 00:57:32 +00:00
export default function Item ({ item, rank, belowTitle, right, full, children, siblingComments }) {
2021-09-15 23:42:44 +00:00
const titleRef = useRef()
const [pendingSats, setPendingSats] = useState(0)
2021-09-15 23:42:44 +00:00
2023-07-13 20:18:04 +00:00
const image = item.url && item.url.startsWith(process.env.NEXT_PUBLIC_IMGPROXY_URL)
2021-04-14 00:57:32 +00:00
return (
2021-04-14 23:56:29 +00:00
<>
2021-04-22 22:14:32 +00:00
{rank
? (
<div className={styles.rank}>
{rank}
</div>)
: <div />}
<div className={`${styles.item} ${siblingComments ? 'pt-2' : ''}`}>
2022-09-21 19:57:36 +00:00
{item.position
? <Pin width={24} height={24} className={styles.pin} />
: item.meDontLike ? <Flag width={24} height={24} className={`${styles.dontLike}`} /> : <UpVote item={item} className={styles.upvote} pendingSats={pendingSats} setPendingSats={setPendingSats} />}
2021-04-14 23:56:29 +00:00
<div className={styles.hunk}>
2023-05-01 20:58:30 +00:00
<div className={`${styles.main} flex-wrap`}>
2023-07-24 18:35:05 +00:00
<Link href={`/items/${item.id}`} ref={titleRef} className={`${styles.title} text-reset me-2`}>
{item.searchTitle ? <SearchTitle title={item.searchTitle} /> : item.title}
2023-07-24 18:35:05 +00:00
{item.pollCost && <span className={styles.icon}> <PollIcon className='fill-grey ms-1' height={14} width={14} /></span>}
{item.bounty > 0 &&
<span className={styles.icon}>
<ActionTooltip notForm overlayText={`${abbrNum(item.bounty)} ${item.bountyPaidTo?.length ? 'sats paid' : 'sats bounty'}`}>
<BountyIcon className={`${styles.bountyIcon} ${item.bountyPaidTo?.length ? 'fill-success' : 'fill-grey'}`} height={16} width={16} />
</ActionTooltip>
</span>}
2023-07-24 18:35:05 +00:00
{image && <span className={styles.icon}><ImageIcon className='fill-grey ms-2' height={16} width={16} /></span>}
2021-04-14 23:56:29 +00:00
</Link>
2023-07-13 20:18:04 +00:00
{item.url && !image &&
2021-12-06 21:27:14 +00:00
<>
{/* eslint-disable-next-line */}
<a
2023-07-24 18:35:05 +00:00
className={`${styles.link}`} target='_blank' href={item.url}
2021-12-06 21:27:14 +00:00
rel={item.sats + item.boost >= NOFOLLOW_LIMIT ? null : 'nofollow'}
>
{item.url.replace(/(^https?:|^)\/\//, '')}
</a>
</>}
2021-04-14 23:56:29 +00:00
</div>
<ItemInfo full={full} item={item} pendingSats={pendingSats} />
{belowTitle}
2021-04-14 00:57:32 +00:00
</div>
{right}
2021-04-14 00:57:32 +00:00
</div>
2021-04-14 23:56:29 +00:00
{children && (
<div className={styles.children}>
{children}
</div>
)}
</>
2021-04-14 00:57:32 +00:00
)
}
2021-04-22 22:14:32 +00:00
2021-04-27 00:55:48 +00:00
export function ItemSkeleton ({ rank, children }) {
2021-04-22 22:14:32 +00:00
return (
<>
2022-01-27 19:18:48 +00:00
{rank
? (
<div className={styles.rank}>
{rank}
</div>)
: <div />}
2021-04-22 22:14:32 +00:00
<div className={`${styles.item} ${styles.skeleton}`}>
2021-04-28 19:30:14 +00:00
<UpVote className={styles.upvote} />
2021-04-22 22:14:32 +00:00
<div className={styles.hunk}>
<div className={`${styles.main} flex-wrap flex-md-nowrap`}>
2023-07-24 18:35:05 +00:00
<span className={`${styles.title} clouds text-reset flex-md-fill flex-md-shrink-0 me-2`} />
2021-04-22 22:14:32 +00:00
<span className={`${styles.link} clouds`} />
</div>
<div className={styles.other}>
2021-04-28 22:52:03 +00:00
<span className={`${styles.otherItem} clouds`} />
2021-04-22 22:14:32 +00:00
<span className={`${styles.otherItem} clouds`} />
<span className={`${styles.otherItem} ${styles.otherItemLonger} clouds`} />
<span className={`${styles.otherItem} ${styles.otherItemLonger} clouds`} />
</div>
</div>
</div>
2021-04-27 00:55:48 +00:00
{children && (
<div className={styles.children}>
{children}
</div>
)}
2021-04-22 22:14:32 +00:00
</>
)
}