85 lines
2.3 KiB
JavaScript
85 lines
2.3 KiB
JavaScript
import React, { useCallback } from 'react'
|
|
import Button from 'react-bootstrap/Button'
|
|
import styles from './pay-bounty.module.css'
|
|
import ActionTooltip from './action-tooltip'
|
|
import { useMe } from './me'
|
|
import { numWithUnits } from '@/lib/format'
|
|
import { useShowModal } from './modal'
|
|
import { useRoot } from './root'
|
|
import { payOrLoginError, useInvoiceModal } from './invoice'
|
|
import { useAct } from './item-act'
|
|
|
|
export default function PayBounty ({ children, item }) {
|
|
const me = useMe()
|
|
const showModal = useShowModal()
|
|
const root = useRoot()
|
|
|
|
const onUpdate = useCallback((cache, { data: { act: { id, path } } }) => {
|
|
// update root bounty status
|
|
const root = path.split('.')[0]
|
|
cache.modify({
|
|
id: `Item:${root}`,
|
|
fields: {
|
|
bountyPaidTo (existingPaidTo = []) {
|
|
return [...(existingPaidTo || []), Number(id)]
|
|
}
|
|
}
|
|
})
|
|
}, [])
|
|
|
|
const [act] = useAct({ onUpdate })
|
|
|
|
const showInvoiceModal = useInvoiceModal(async ({ hash, hmac }, { variables }) => {
|
|
await act({ variables: { ...variables, hash, hmac } })
|
|
}, [act])
|
|
|
|
const handlePayBounty = async onComplete => {
|
|
const variables = { id: item.id, sats: root.bounty, act: 'TIP', path: item.path }
|
|
try {
|
|
await act({
|
|
variables,
|
|
optimisticResponse: {
|
|
act: variables
|
|
}
|
|
})
|
|
onComplete()
|
|
} catch (error) {
|
|
if (payOrLoginError(error)) {
|
|
showInvoiceModal({ amount: root.bounty }, { variables })
|
|
return
|
|
}
|
|
throw new Error({ message: error.toString() })
|
|
}
|
|
}
|
|
|
|
if (!me || item.mine || root.user.name !== me.name) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<ActionTooltip
|
|
notForm
|
|
overlayText={numWithUnits(root.bounty)}
|
|
>
|
|
<div
|
|
className={styles.pay} onClick={() => {
|
|
showModal(onClose => (
|
|
<>
|
|
<div className='text-center fw-bold text-muted'>
|
|
Pay this bounty to {item.user.name}?
|
|
</div>
|
|
<div className='text-center'>
|
|
<Button className='mt-4' variant='primary' onClick={() => handlePayBounty(onClose)}>
|
|
pay <small>{numWithUnits(root.bounty)}</small>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
))
|
|
}}
|
|
>
|
|
pay bounty
|
|
</div>
|
|
</ActionTooltip>
|
|
)
|
|
}
|