62 lines
2.0 KiB
JavaScript
62 lines
2.0 KiB
JavaScript
import { useApolloClient, useMutation } from '@apollo/client'
|
|
import { useCallback } from 'react'
|
|
import { InvoiceCanceledError, InvoiceExpiredError, WalletReceiverError } from '@/wallets/errors'
|
|
import { RETRY_PAID_ACTION } from '@/fragments/paidAction'
|
|
import { INVOICE, CANCEL_INVOICE } from '@/fragments/wallet'
|
|
|
|
export default function useInvoice () {
|
|
const client = useApolloClient()
|
|
const [retryPaidAction] = useMutation(RETRY_PAID_ACTION)
|
|
|
|
const [cancelInvoice] = useMutation(CANCEL_INVOICE)
|
|
|
|
const isInvoice = useCallback(async ({ id }, that) => {
|
|
const { data, error } = await client.query({ query: INVOICE, fetchPolicy: 'network-only', variables: { id } })
|
|
if (error) {
|
|
throw error
|
|
}
|
|
|
|
const { cancelled, cancelledAt, actionError, expiresAt, forwardStatus } = data.invoice
|
|
|
|
const expired = cancelledAt && new Date(expiresAt) < new Date(cancelledAt)
|
|
if (expired) {
|
|
throw new InvoiceExpiredError(data.invoice)
|
|
}
|
|
|
|
const failedForward = forwardStatus && forwardStatus !== 'CONFIRMED'
|
|
if (failedForward) {
|
|
throw new WalletReceiverError(data.invoice)
|
|
}
|
|
|
|
const failed = cancelled || actionError
|
|
if (failed) {
|
|
throw new InvoiceCanceledError(data.invoice, actionError)
|
|
}
|
|
|
|
return { invoice: data.invoice, check: that(data.invoice) }
|
|
}, [client])
|
|
|
|
const cancel = useCallback(async ({ hash, hmac }) => {
|
|
if (!hash || !hmac) {
|
|
throw new Error('missing hash or hmac')
|
|
}
|
|
|
|
console.log('canceling invoice:', hash)
|
|
const { data } = await cancelInvoice({ variables: { hash, hmac } })
|
|
return data.cancelInvoice
|
|
}, [cancelInvoice])
|
|
|
|
const retry = useCallback(async ({ id, hash, hmac }, { update }) => {
|
|
console.log('retrying invoice:', hash)
|
|
const { data, error } = await retryPaidAction({ variables: { invoiceId: Number(id) }, update })
|
|
if (error) throw error
|
|
|
|
const newInvoice = data.retryPaidAction.invoice
|
|
console.log('new invoice:', newInvoice?.hash)
|
|
|
|
return newInvoice
|
|
}, [retryPaidAction])
|
|
|
|
return { cancel, retry, isInvoice }
|
|
}
|