222 lines
6.7 KiB
JavaScript
222 lines
6.7 KiB
JavaScript
import UpBolt from '@/svgs/bolt.svg'
|
|
import styles from './upvote.module.css'
|
|
import { gql, useMutation } from '@apollo/client'
|
|
import ActionTooltip from './action-tooltip'
|
|
import ItemAct, { useAct, useZap } from './item-act'
|
|
import { useMe } from './me'
|
|
import getColor from '@/lib/rainbow'
|
|
import { useCallback, useMemo, useRef, useState } from 'react'
|
|
import LongPressable from './long-pressable'
|
|
import Overlay from 'react-bootstrap/Overlay'
|
|
import Popover from 'react-bootstrap/Popover'
|
|
import { useShowModal } from './modal'
|
|
import { numWithUnits } from '@/lib/format'
|
|
import { Dropdown } from 'react-bootstrap'
|
|
|
|
const UpvotePopover = ({ target, show, handleClose }) => {
|
|
const me = useMe()
|
|
return (
|
|
<Overlay
|
|
show={show}
|
|
target={target}
|
|
placement='right'
|
|
>
|
|
<Popover id='popover-basic'>
|
|
<Popover.Header className='d-flex justify-content-between alert-dismissible' as='h4'>Zapping
|
|
<button type='button' className='btn-close' onClick={handleClose}><span className='visually-hidden-focusable'>Close alert</span></button>
|
|
</Popover.Header>
|
|
<Popover.Body>
|
|
<div className='mb-2'>Press the bolt again to zap {me?.privates?.tipDefault || 1} more sat{me?.privates?.tipDefault > 1 ? 's' : ''}.</div>
|
|
<div>Repeatedly press the bolt to zap more sats.</div>
|
|
</Popover.Body>
|
|
</Popover>
|
|
</Overlay>
|
|
)
|
|
}
|
|
|
|
const TipPopover = ({ target, show, handleClose }) => (
|
|
<Overlay
|
|
show={show}
|
|
target={target}
|
|
placement='right'
|
|
>
|
|
<Popover id='popover-basic'>
|
|
<Popover.Header className='d-flex justify-content-between alert-dismissible' as='h4'>Press and hold
|
|
<button type='button' className='btn-close' onClick={handleClose}><span className='visually-hidden-focusable'>Close alert</span></button>
|
|
</Popover.Header>
|
|
<Popover.Body>
|
|
<div className='mb-2'>Press and hold bolt to zap a custom amount.</div>
|
|
<div>As you zap more, the bolt color follows the rainbow.</div>
|
|
</Popover.Body>
|
|
</Popover>
|
|
</Overlay>
|
|
)
|
|
|
|
export function DropdownItemUpVote ({ item }) {
|
|
const showModal = useShowModal()
|
|
|
|
return (
|
|
<Dropdown.Item
|
|
onClick={async () => {
|
|
showModal(onClose =>
|
|
<ItemAct onClose={onClose} itemId={item.id} />)
|
|
}}
|
|
>
|
|
<span className='text-success'>zap</span>
|
|
</Dropdown.Item>
|
|
)
|
|
}
|
|
|
|
export const nextTip = (meSats, { tipDefault, turboTipping }) => {
|
|
// what should our next tip be?
|
|
if (!turboTipping) return (tipDefault || 1)
|
|
|
|
let sats = tipDefault || 1
|
|
if (turboTipping) {
|
|
while (meSats >= sats) {
|
|
sats *= 10
|
|
}
|
|
// deduct current sats since turbo tipping is about total zap not making the next zap 10x
|
|
sats -= meSats
|
|
}
|
|
|
|
return sats
|
|
}
|
|
|
|
export default function UpVote ({ item, className }) {
|
|
const showModal = useShowModal()
|
|
const [voteShow, _setVoteShow] = useState(false)
|
|
const [tipShow, _setTipShow] = useState(false)
|
|
const ref = useRef()
|
|
const me = useMe()
|
|
const [hover, setHover] = useState(false)
|
|
const [setWalkthrough] = useMutation(
|
|
gql`
|
|
mutation setWalkthrough($upvotePopover: Boolean, $tipPopover: Boolean) {
|
|
setWalkthrough(upvotePopover: $upvotePopover, tipPopover: $tipPopover)
|
|
}`
|
|
)
|
|
|
|
const setVoteShow = useCallback((yes) => {
|
|
if (!me) return
|
|
|
|
// if they haven't seen the walkthrough and they have sats
|
|
if (yes && !me.privates?.upvotePopover && me.privates?.sats) {
|
|
_setVoteShow(true)
|
|
}
|
|
|
|
if (voteShow && !yes) {
|
|
_setVoteShow(false)
|
|
setWalkthrough({ variables: { upvotePopover: true } })
|
|
}
|
|
}, [me, voteShow, setWalkthrough])
|
|
const setTipShow = useCallback((yes) => {
|
|
if (!me) return
|
|
|
|
// if we want to show it, yet we still haven't shown
|
|
if (yes && !me.privates?.tipPopover && me.privates?.sats) {
|
|
_setTipShow(true)
|
|
}
|
|
|
|
// if it's currently showing and we want to hide it
|
|
if (tipShow && !yes) {
|
|
_setTipShow(false)
|
|
setWalkthrough({ variables: { tipPopover: true } })
|
|
}
|
|
}, [me, tipShow, setWalkthrough])
|
|
|
|
const [act] = useAct()
|
|
const zap = useZap()
|
|
|
|
const disabled = useMemo(() => item?.mine || item?.meForward || item?.deletedAt,
|
|
[item?.mine, item?.meForward, item?.deletedAt])
|
|
|
|
const [meSats, overlayText, color, nextColor] = useMemo(() => {
|
|
const meSats = (item?.meSats || item?.meAnonSats || 0)
|
|
|
|
// what should our next tip be?
|
|
const sats = nextTip(meSats, { ...me?.privates })
|
|
|
|
return [
|
|
meSats, me ? numWithUnits(sats, { abbreviate: false }) : 'zap it',
|
|
getColor(meSats), getColor(meSats + sats)]
|
|
}, [item?.meSats, item?.meAnonSats, me?.privates?.tipDefault, me?.privates?.turboDefault])
|
|
|
|
const handleModalClosed = () => {
|
|
setHover(false)
|
|
}
|
|
|
|
const handleLongPress = (e) => {
|
|
if (!item) return
|
|
|
|
// we can't tip ourselves
|
|
if (disabled) {
|
|
return
|
|
}
|
|
|
|
setTipShow(false)
|
|
showModal(onClose =>
|
|
<ItemAct onClose={onClose} itemId={item.id} />, { onClose: handleModalClosed })
|
|
}
|
|
|
|
const handleShortPress = () => {
|
|
if (me) {
|
|
if (!item) return
|
|
|
|
// we can't tip ourselves
|
|
if (disabled) {
|
|
return
|
|
}
|
|
|
|
if (meSats) {
|
|
setVoteShow(false)
|
|
} else {
|
|
setTipShow(true)
|
|
}
|
|
|
|
zap({ item, me })
|
|
} else {
|
|
showModal(onClose => <ItemAct onClose={onClose} itemId={item.id} act={act} />, { onClose: handleModalClosed })
|
|
}
|
|
}
|
|
|
|
const fillColor = hover ? nextColor : color
|
|
|
|
return (
|
|
<div ref={ref} className='upvoteParent'>
|
|
<LongPressable
|
|
onLongPress={handleLongPress}
|
|
onShortPress={handleShortPress}
|
|
>
|
|
<ActionTooltip notForm disable={disabled} overlayText={overlayText}>
|
|
<div
|
|
className={`${disabled ? styles.noSelfTips : ''} ${styles.upvoteWrapper}`}
|
|
>
|
|
<UpBolt
|
|
onPointerEnter={() => setHover(true)}
|
|
onMouseLeave={() => setHover(false)}
|
|
onTouchEnd={() => setHover(false)}
|
|
width={26}
|
|
height={26}
|
|
className={
|
|
`${styles.upvote}
|
|
${className || ''}
|
|
${disabled ? styles.noSelfTips : ''}
|
|
${meSats ? styles.voted : ''}`
|
|
}
|
|
style={meSats || hover
|
|
? {
|
|
fill: fillColor,
|
|
filter: `drop-shadow(0 0 6px ${fillColor}90)`
|
|
}
|
|
: undefined}
|
|
/>
|
|
</div>
|
|
</ActionTooltip>
|
|
</LongPressable>
|
|
<TipPopover target={ref.current} show={tipShow} handleClose={() => setTipShow(false)} />
|
|
<UpvotePopover target={ref.current} show={voteShow} handleClose={() => setVoteShow(false)} />
|
|
</div>
|
|
)
|
|
}
|