Avoid manual optimistic updates for now (#1220)

* Avoid manual optimistic zap updates for now

* Remove manual optimistic updates for pay-bounty and poll
This commit is contained in:
ekzyis 2024-06-04 03:02:34 -05:00 committed by GitHub
parent d8fe698963
commit ea97fbf4a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 39 additions and 39 deletions

View File

@ -10,7 +10,7 @@ import { useToast } from './toast'
import { useLightning } from './lightning' import { useLightning } from './lightning'
import { nextTip } from './upvote' import { nextTip } from './upvote'
import { InvoiceCanceledError, usePayment } from './payment' import { InvoiceCanceledError, usePayment } from './payment'
import { optimisticUpdate } from '@/lib/apollo' // import { optimisticUpdate } from '@/lib/apollo'
import { Types as ClientNotification, ClientNotifyProvider, useClientNotifications } from './client-notifications' import { Types as ClientNotification, ClientNotifyProvider, useClientNotifications } from './client-notifications'
import { ZAP_UNDO_DELAY_MS } from '@/lib/constants' import { ZAP_UNDO_DELAY_MS } from '@/lib/constants'
@ -120,23 +120,31 @@ export default function ItemAct ({ onClose, item, down, children, abortSignal })
act: down ? 'DONT_LIKE_THIS' : 'TIP', act: down ? 'DONT_LIKE_THIS' : 'TIP',
hash, hash,
hmac hmac
} },
optimisticResponse: {
act: { id: item.id, sats: Number(amount), act: down ? 'DONT_LIKE_THIS' : 'TIP', path: item.path }
},
update: actUpdate({ me })
}) })
if (!me) setItemMeAnonSats({ id: item.id, amount }) if (!me) setItemMeAnonSats({ id: item.id, amount })
addCustomTip(Number(amount)) addCustomTip(Number(amount))
}, [me, act, down, item.id, strike])
const optimisticUpdate = useCallback(({ amount }) => {
const variables = {
id: item.id,
sats: Number(amount),
act: down ? 'DONT_LIKE_THIS' : 'TIP'
}
const optimisticResponse = { act: { ...variables, path: item.path } }
strike() strike()
onClose() onClose()
return { mutation: ACT_MUTATION, variables, optimisticResponse, update: actUpdate({ me }) } }, [me, act, down, item.id, strike])
}, [item.id, down, !!me, strike])
// XXX avoid manual optimistic updates until
// https://github.com/stackernews/stacker.news/issues/1218 is fixed
// const optimisticUpdate = useCallback(({ amount }) => {
// const variables = {
// id: item.id,
// sats: Number(amount),
// act: down ? 'DONT_LIKE_THIS' : 'TIP'
// }
// const optimisticResponse = { act: { ...variables, path: item.path } }
// strike()
// onClose()
// return { mutation: ACT_MUTATION, variables, optimisticResponse, update: actUpdate({ me }) }
// }, [item.id, down, !!me, strike])
return ( return (
<ClientNotifyProvider additionalProps={{ itemId: item.id }}> <ClientNotifyProvider additionalProps={{ itemId: item.id }}>
@ -147,7 +155,7 @@ export default function ItemAct ({ onClose, item, down, children, abortSignal })
}} }}
schema={amountSchema} schema={amountSchema}
prepaid prepaid
optimisticUpdate={optimisticUpdate} // optimisticUpdate={optimisticUpdate}
onSubmit={onSubmit} onSubmit={onSubmit}
clientNotification={ClientNotification.Zap} clientNotification={ClientNotification.Zap}
signal={abortSignal} signal={abortSignal}
@ -266,8 +274,10 @@ export function useZap () {
let revert, cancel, nid let revert, cancel, nid
try { try {
revert = optimisticUpdate({ mutation: ZAP_MUTATION, variables, optimisticResponse, update }) // XXX avoid manual optimistic updates until
strike() // https://github.com/stackernews/stacker.news/issues/1218 is fixed
// revert = optimisticUpdate({ mutation: ZAP_MUTATION, variables, optimisticResponse, update })
// strike()
await abortSignal.pause({ me, amount: satsDelta }) await abortSignal.pause({ me, amount: satsDelta })
@ -277,7 +287,11 @@ export function useZap () {
let hash, hmac; let hash, hmac;
[{ hash, hmac }, cancel] = await payment.request(satsDelta) [{ hash, hmac }, cancel] = await payment.request(satsDelta)
await zap({ variables: { ...variables, hash, hmac } })
// XXX related to comment above
// await zap({ variables: { ...variables, hash, hmac } })
await zap({ variables: { ...variables, hash, hmac }, optimisticResponse, update })
strike()
} catch (error) { } catch (error) {
revert?.() revert?.()

View File

@ -6,9 +6,8 @@ import { useMe } from './me'
import { numWithUnits } from '@/lib/format' import { numWithUnits } from '@/lib/format'
import { useShowModal } from './modal' import { useShowModal } from './modal'
import { useRoot } from './root' import { useRoot } from './root'
import { useAct, actUpdate, ACT_MUTATION } from './item-act' import { useAct, actUpdate } from './item-act'
import { InvoiceCanceledError, usePayment } from './payment' import { InvoiceCanceledError, usePayment } from './payment'
import { optimisticUpdate } from '@/lib/apollo'
import { useLightning } from './lightning' import { useLightning } from './lightning'
import { useToast } from './toast' import { useToast } from './toast'
import { Types as ClientNotification, useClientNotifications } from './client-notifications' import { Types as ClientNotification, useClientNotifications } from './client-notifications'
@ -45,30 +44,21 @@ export default function PayBounty ({ children, item }) {
const notifyProps = { itemId: item.id, sats } const notifyProps = { itemId: item.id, sats }
const optimisticResponse = { act: { ...variables, path: item.path } } const optimisticResponse = { act: { ...variables, path: item.path } }
let revert, cancel, nid let cancel, nid
try { try {
revert = optimisticUpdate({
mutation: ACT_MUTATION,
variables,
optimisticResponse,
update: actUpdate({ me, onUpdate: onUpdate(onComplete) })
})
if (me) { if (me) {
nid = notify(ClientNotification.Bounty.PENDING, notifyProps) nid = notify(ClientNotification.Bounty.PENDING, notifyProps)
} }
let hash, hmac; let hash, hmac;
[{ hash, hmac }, cancel] = await payment.request(sats) [{ hash, hmac }, cancel] = await payment.request(sats)
await act({ await act({
variables: { hash, hmac, ...variables }, variables: { hash, hmac, ...variables },
optimisticResponse: { optimisticResponse,
act: variables update: actUpdate({ me, onUpdate: onUpdate(onComplete) })
}
}) })
} catch (error) { } catch (error) {
revert?.()
if (error instanceof InvoiceCanceledError) { if (error instanceof InvoiceCanceledError) {
return return
} }

View File

@ -8,7 +8,6 @@ import { signIn } from 'next-auth/react'
import ActionTooltip from './action-tooltip' import ActionTooltip from './action-tooltip'
import { POLL_COST } from '@/lib/constants' import { POLL_COST } from '@/lib/constants'
import { InvoiceCanceledError, usePayment } from './payment' import { InvoiceCanceledError, usePayment } from './payment'
import { optimisticUpdate } from '@/lib/apollo'
import { useToast } from './toast' import { useToast } from './toast'
import { Types as ClientNotification, useClientNotifications } from './client-notifications' import { Types as ClientNotification, useClientNotifications } from './client-notifications'
@ -55,20 +54,17 @@ export default function Poll ({ item }) {
const variables = { id: v.id } const variables = { id: v.id }
const notifyProps = { itemId: item.id } const notifyProps = { itemId: item.id }
const optimisticResponse = { pollVote: v.id } const optimisticResponse = { pollVote: v.id }
let revert, cancel, nid let cancel, nid
try { try {
revert = optimisticUpdate({ mutation: POLL_VOTE_MUTATION, variables, optimisticResponse, update })
if (me) { if (me) {
nid = notify(ClientNotification.PollVote.PENDING, notifyProps) nid = notify(ClientNotification.PollVote.PENDING, notifyProps)
} }
let hash, hmac; let hash, hmac;
[{ hash, hmac }, cancel] = await payment.request(item.pollCost || POLL_COST) [{ hash, hmac }, cancel] = await payment.request(item.pollCost || POLL_COST)
await pollVote({ variables: { hash, hmac, ...variables } })
} catch (error) {
revert?.()
await pollVote({ variables: { hash, hmac, ...variables }, optimisticResponse, update })
} catch (error) {
if (error instanceof InvoiceCanceledError) { if (error instanceof InvoiceCanceledError) {
return return
} }