66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
import { gql, useMutation } from '@apollo/client'
|
|
import Dropdown from 'react-bootstrap/Dropdown'
|
|
import { useShowModal } from './modal'
|
|
import { useToast } from './toast'
|
|
import { InvoiceModal, payOrLoginError } from './invoice'
|
|
import { DONT_LIKE_THIS_COST } from '../lib/constants'
|
|
import ItemAct from './item-act'
|
|
|
|
export default function DontLikeThisDropdownItem ({ id }) {
|
|
const toaster = useToast()
|
|
const showModal = useShowModal()
|
|
|
|
const [dontLikeThis] = useMutation(
|
|
gql`
|
|
mutation dontLikeThis($id: ID!, $sats: Int, $hash: String, $hmac: String) {
|
|
dontLikeThis(id: $id, sats: $sats, hash: $hash, hmac: $hmac)
|
|
}`, {
|
|
update (cache) {
|
|
cache.modify({
|
|
id: `Item:${id}`,
|
|
fields: {
|
|
meDontLike () {
|
|
return true
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
)
|
|
|
|
return (
|
|
<Dropdown.Item
|
|
onClick={async () => {
|
|
try {
|
|
showModal(onClose =>
|
|
<ItemAct
|
|
onClose={() => {
|
|
onClose()
|
|
toaster.success('item flagged')
|
|
}} itemId={id} act={dontLikeThis} down
|
|
/>)
|
|
} catch (error) {
|
|
console.error(error)
|
|
if (payOrLoginError(error)) {
|
|
showModal(onClose => {
|
|
return (
|
|
<InvoiceModal
|
|
amount={DONT_LIKE_THIS_COST}
|
|
onPayment={async ({ hash, hmac }) => {
|
|
await dontLikeThis({ variables: { id, hash, hmac } })
|
|
toaster.success('item flagged')
|
|
}}
|
|
/>
|
|
)
|
|
})
|
|
} else {
|
|
toaster.danger('failed to flag item')
|
|
}
|
|
}
|
|
}}
|
|
>
|
|
flag
|
|
</Dropdown.Item>
|
|
)
|
|
}
|