stacker.news/components/pay-bounty.js

116 lines
2.9 KiB
JavaScript
Raw Normal View History

2023-01-26 16:11:55 +00:00
import React from 'react'
2023-07-24 18:35:05 +00:00
import Button from 'react-bootstrap/Button'
2023-01-26 16:11:55 +00:00
import styles from './pay-bounty.module.css'
import ActionTooltip from './action-tooltip'
import { useMutation, gql } from '@apollo/client'
import { useMe } from './me'
import { abbrNum } from '../lib/format'
import { useShowModal } from './modal'
import FundError from './fund-error'
2023-05-06 21:51:17 +00:00
import { useRoot } from './root'
2023-01-26 16:11:55 +00:00
export default function PayBounty ({ children, item }) {
const me = useMe()
const showModal = useShowModal()
2023-05-06 21:51:17 +00:00
const root = useRoot()
2023-01-26 16:11:55 +00:00
const [act] = useMutation(
gql`
mutation act($id: ID!, $sats: Int!) {
act(id: $id, sats: $sats) {
sats
}
}`, {
update (cache, { data: { act: { sats } } }) {
cache.modify({
id: `Item:${item.id}`,
fields: {
sats (existingSats = 0) {
return existingSats + sats
},
meSats (existingSats = 0) {
return existingSats + sats
}
}
})
// update all ancestor comment sats
item.path.split('.').forEach(id => {
if (Number(id) === Number(item.id)) return
cache.modify({
id: `Item:${id}`,
fields: {
commentSats (existingCommentSats = 0) {
return existingCommentSats + sats
}
}
})
})
// update root bounty status
cache.modify({
2023-05-06 21:51:17 +00:00
id: `Item:${root.id}`,
2023-01-26 16:11:55 +00:00
fields: {
bountyPaidTo (existingPaidTo = []) {
2023-01-26 23:28:10 +00:00
return [...(existingPaidTo || []), Number(item.id)]
2023-01-26 16:11:55 +00:00
}
}
})
}
}
)
const handlePayBounty = async onComplete => {
2023-01-26 16:11:55 +00:00
try {
await act({
2023-05-06 21:51:17 +00:00
variables: { id: item.id, sats: root.bounty },
2023-01-26 16:11:55 +00:00
optimisticResponse: {
act: {
id: `Item:${item.id}`,
2023-05-06 21:51:17 +00:00
sats: root.bounty
2023-01-26 16:11:55 +00:00
}
}
})
onComplete()
2023-01-26 16:11:55 +00:00
} catch (error) {
if (error.toString().includes('insufficient funds')) {
showModal(onClose => {
return <FundError onClose={onClose} />
})
return
}
throw new Error({ message: error.toString() })
}
}
2023-05-06 21:51:17 +00:00
if (!me || item.mine || root.user.name !== me.name) {
2023-01-26 16:11:55 +00:00
return null
}
return (
<ActionTooltip
notForm
2023-05-06 21:51:17 +00:00
overlayText={`${root.bounty} sats`}
2023-01-26 16:11:55 +00:00
>
<div
className={styles.pay} onClick={() => {
showModal(onClose => (
<>
2023-07-24 18:35:05 +00:00
<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>{abbrNum(root.bounty)} sats</small>
</Button>
</div>
</>
))
}}
2023-01-26 16:11:55 +00:00
>
pay bounty
</div>
2023-01-26 16:11:55 +00:00
</ActionTooltip>
)
}