-
Notifications
You must be signed in to change notification settings - Fork 22
/
useProposalVetoState.tsx
401 lines (379 loc) · 12.1 KB
/
useProposalVetoState.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
import { ThumbDownOutlined } from '@mui/icons-material'
import { useQueries, useQueryClient } from '@tanstack/react-query'
import { useRouter } from 'next/router'
import { useCallback, useMemo, useState } from 'react'
import toast from 'react-hot-toast'
import { useTranslation } from 'react-i18next'
import {
ProposalStatusAndInfoProps,
Tooltip,
useConfiguredChainContext,
useDao,
useDaoNavHelpers,
} from '@dao-dao/stateless'
import {
ActionKey,
EntityType,
NeutronTimelockOverrule,
ProposalStatusEnum,
ProposalStatusKey,
cwMsgToEncodeObject,
} from '@dao-dao/types'
import { VetoConfig } from '@dao-dao/types/contracts/DaoProposalSingle.v2'
import {
CHAIN_GAS_MULTIPLIER,
SECRET_GAS,
getDaoProposalSinglePrefill,
isSecretNetwork,
makeCw1WhitelistExecuteMessage,
makeExecuteSmartContractMessage,
processError,
} from '@dao-dao/utils'
import { getDao } from '../clients'
import { ButtonLink, EntityDisplay } from '../components'
import { useProposalModuleAdapterOptions } from '../proposal-module-adapter'
import { useEntity } from './useEntity'
import { useOnSecretNetworkPermitUpdate } from './useOnSecretNetworkPermitUpdate'
import { useWallet } from './useWallet'
export type UseProposalVetoStateOptions = {
statusKey: ProposalStatusKey
vetoConfig: VetoConfig | null | undefined
neutronTimelockOverrule?: NeutronTimelockOverrule
onVetoSuccess: () => void | Promise<void>
onExecuteSuccess: () => void | Promise<void>
}
export type UseProposalVetoStateReturn = {
vetoEnabled: boolean
canBeVetoed: boolean
vetoOrEarlyExecute: ProposalStatusAndInfoProps['vetoOrEarlyExecute']
vetoInfoItems: ProposalStatusAndInfoProps['info']
}
/**
* This hook is used in the proposal module adapters' ProposalStatusAndInfo
* components to load the veto configuration and handle when the current wallet
* has the power to veto/early-execute.
*/
export const useProposalVetoState = ({
statusKey,
vetoConfig,
neutronTimelockOverrule,
onVetoSuccess,
onExecuteSuccess,
}: UseProposalVetoStateOptions): UseProposalVetoStateReturn => {
const { t } = useTranslation()
const router = useRouter()
const {
chain: { chainId },
} = useConfiguredChainContext()
const { coreAddress } = useDao()
const { getDaoProposalPath } = useDaoNavHelpers()
const { proposalModule, proposalNumber } = useProposalModuleAdapterOptions()
const { address: walletAddress = '', getSigningClient } = useWallet()
const queryClient = useQueryClient()
const vetoEnabled = !!vetoConfig || !!neutronTimelockOverrule
const [vetoLoading, setVetoLoading] = useState<
'veto' | 'earlyExecute' | false
>(false)
const { entity: vetoerEntity } = useEntity(
vetoConfig?.vetoer || neutronTimelockOverrule?.dao || ''
)
const { vetoerEntities, vetoerDaoEntities, vetoerDaoClients } =
useMemo(() => {
// Flatten vetoer entities in case a cw1-whitelist is the vetoer.
const vetoerEntities = !vetoerEntity.loading
? vetoerEntity.data.type === EntityType.Cw1Whitelist
? vetoerEntity.data.entities
: [vetoerEntity.data]
: []
const vetoerDaoEntities = vetoerEntities.filter(
(entity) => entity.type === EntityType.Dao
)
const vetoerDaoClients = vetoerDaoEntities.map((entity) =>
getDao({
queryClient,
chainId,
coreAddress: entity.address,
})
)
return {
vetoerEntities,
vetoerDaoEntities,
vetoerDaoClients,
}
}, [chainId, queryClient, vetoerEntity])
// This is the voting power the current wallet has in each of the DAO vetoers.
const walletDaoVetoerMemberships = useQueries({
queries: walletAddress
? vetoerDaoClients.map((dao) => dao.getVotingPowerQuery(walletAddress))
: [],
})
// Make sure this component re-renders if the Secret Network permit changes so
// the voting queries above refresh.
useOnSecretNetworkPermitUpdate({
dao: vetoerDaoClients,
})
const canBeVetoed =
vetoEnabled &&
(statusKey === 'veto_timelock' ||
(statusKey === ProposalStatusEnum.Open &&
!!vetoConfig?.veto_before_passed) ||
statusKey === ProposalStatusEnum.NeutronTimelocked)
// Find matching vetoer for this wallet, which is either the wallet itself or
// a DAO this wallet is a member of. If a matching vetoer is found, this
// wallet can veto.
const matchingWalletVetoer =
canBeVetoed && !vetoerEntity.loading
? // Find wallet that matches address.
vetoerEntities.find(
(entity) =>
entity.type === EntityType.Wallet &&
entity.address === walletAddress
) ||
// Find DAO where wallet is a member.
vetoerDaoEntities.find((_, index) => {
const membershipQuery = walletDaoVetoerMemberships[index]
return (
!!membershipQuery &&
!membershipQuery.isPending &&
!membershipQuery.isError &&
membershipQuery.data.power !== '0'
)
})
: undefined
const walletCanEarlyExecute =
!!matchingWalletVetoer &&
statusKey === 'veto_timelock' &&
!!vetoConfig?.early_execute
const onVeto = useCallback(async () => {
if (vetoerEntity.loading || !matchingWalletVetoer) {
return
}
setVetoLoading('veto')
try {
// For Neutron timelocked proposals, just navigate to the overrule
// proposal.
if (neutronTimelockOverrule) {
router.push(
getDaoProposalPath(
neutronTimelockOverrule.dao,
neutronTimelockOverrule.proposalModulePrefix +
neutronTimelockOverrule.proposal.id.toString()
)
)
} else if (
vetoerEntity.data.type === EntityType.Wallet ||
(vetoerEntity.data.type === EntityType.Cw1Whitelist &&
matchingWalletVetoer.type === EntityType.Wallet)
) {
const msg = makeExecuteSmartContractMessage({
chainId,
sender: vetoerEntity.data.address,
contractAddress: proposalModule.address,
msg: {
veto: {
proposal_id: proposalNumber,
},
},
})
await (
await getSigningClient()
).signAndBroadcast(
walletAddress,
[
cwMsgToEncodeObject(
chainId,
vetoerEntity.data.type === EntityType.Wallet
? msg
: makeCw1WhitelistExecuteMessage({
chainId,
sender: walletAddress,
cw1WhitelistContract: vetoerEntity.data.address,
msg,
}),
walletAddress
),
],
isSecretNetwork(chainId) ? SECRET_GAS.VETO : CHAIN_GAS_MULTIPLIER
)
await onVetoSuccess()
} else if (matchingWalletVetoer.type === EntityType.Dao) {
router.push(
getDaoProposalPath(matchingWalletVetoer.address, 'create', {
prefill: getDaoProposalSinglePrefill({
actions: [
{
actionKey: ActionKey.VetoProposal,
data: {
chainId,
coreAddress,
proposalModuleAddress: proposalModule.address,
proposalId: proposalNumber,
},
},
],
}),
})
)
}
} catch (err) {
console.error(err)
toast.error(processError(err))
// Stop loading if errored.
setVetoLoading(false)
}
// Loading will stop on success when status refreshes.
}, [
vetoerEntity,
matchingWalletVetoer,
neutronTimelockOverrule,
router,
getDaoProposalPath,
getSigningClient,
proposalModule.address,
proposalNumber,
onVetoSuccess,
walletAddress,
chainId,
coreAddress,
])
const onVetoEarlyExecute = useCallback(async () => {
if (vetoerEntity.loading || !matchingWalletVetoer) {
return
}
setVetoLoading('earlyExecute')
try {
if (
vetoerEntity.data.type === EntityType.Wallet ||
(vetoerEntity.data.type === EntityType.Cw1Whitelist &&
matchingWalletVetoer.type === EntityType.Wallet)
) {
const msg = makeExecuteSmartContractMessage({
chainId,
sender: vetoerEntity.data.address,
contractAddress: proposalModule.address,
msg: {
execute: {
proposal_id: proposalNumber,
},
},
})
await (
await getSigningClient()
).signAndBroadcast(
walletAddress,
[
cwMsgToEncodeObject(
chainId,
vetoerEntity.data.type === EntityType.Wallet
? msg
: makeCw1WhitelistExecuteMessage({
chainId,
sender: walletAddress,
cw1WhitelistContract: vetoerEntity.data.address,
msg,
}),
walletAddress
),
],
isSecretNetwork(chainId) ? SECRET_GAS.VETO : CHAIN_GAS_MULTIPLIER
)
await onExecuteSuccess()
} else if (matchingWalletVetoer.type === EntityType.Dao) {
router.push(
getDaoProposalPath(matchingWalletVetoer.address, 'create', {
prefill: getDaoProposalSinglePrefill({
actions: [
{
actionKey: ActionKey.ExecuteProposal,
data: {
chainId,
coreAddress,
proposalModuleAddress: proposalModule.address,
proposalId: proposalNumber,
},
},
],
}),
})
)
}
} catch (err) {
console.error(err)
toast.error(processError(err))
// Stop loading if errored.
setVetoLoading(false)
}
// Loading will stop on success when status refreshes.
}, [
vetoerEntity,
matchingWalletVetoer,
getSigningClient,
proposalModule.address,
proposalNumber,
onExecuteSuccess,
walletAddress,
router,
getDaoProposalPath,
chainId,
coreAddress,
])
return {
vetoEnabled,
canBeVetoed,
vetoOrEarlyExecute: matchingWalletVetoer
? {
loading: vetoLoading,
onVeto,
onEarlyExecute: walletCanEarlyExecute
? onVetoEarlyExecute
: undefined,
isVetoerDaoMember: matchingWalletVetoer.type === EntityType.Dao,
isNeutronOverrule: !!neutronTimelockOverrule,
}
: undefined,
vetoInfoItems:
canBeVetoed ||
statusKey === ProposalStatusEnum.Vetoed ||
statusKey === ProposalStatusEnum.NeutronOverruled
? neutronTimelockOverrule
? ([
{
Icon: ThumbDownOutlined,
label: t('title.overrule'),
Value: (props) => (
<Tooltip
morePadding
title={
<EntityDisplay
address={neutronTimelockOverrule.dao}
noCopy
/>
}
>
<ButtonLink
href={getDaoProposalPath(
neutronTimelockOverrule.dao,
neutronTimelockOverrule.proposalModulePrefix +
neutronTimelockOverrule.proposal.id.toString()
)}
variant="underline"
{...props}
>
{t('title.proposalId', {
id: neutronTimelockOverrule.proposal.id,
})}
</ButtonLink>
</Tooltip>
),
},
] as ProposalStatusAndInfoProps['info'])
: (vetoerEntities.map((entity) => ({
Icon: ThumbDownOutlined,
label: t('title.vetoer'),
Value: (props) => (
<EntityDisplay {...props} address={entity.address} noCopy />
),
})) as ProposalStatusAndInfoProps['info'])
: [],
}
}