-
Notifications
You must be signed in to change notification settings - Fork 0
/
TxButton.js
352 lines (302 loc) · 10 KB
/
TxButton.js
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
import React, { useState, useEffect } from 'react'
import PropTypes from 'prop-types'
import { Button } from 'semantic-ui-react'
import { web3FromSource } from '@polkadot/extension-dapp'
import { useSubstrateState } from '../'
import utils from '../utils'
import { bnFromHex } from '@polkadot/util';
function TxButton({
attrs = null,
color = 'blue',
disabled = false,
label,
setStatus,
style = null,
type = 'QUERY',
txOnClickHandler = null,
}) {
// Hooks
const { api, currentAccount } = useSubstrateState()
const [unsub, setUnsub] = useState(null)
const [sudoKey, setSudoKey] = useState(null)
const { palletRpc, callable, inputParams, paramFields } = attrs
const isQuery = () => type === 'QUERY'
const isSudo = () => type === 'SUDO-TX'
const isUncheckedSudo = () => type === 'UNCHECKED-SUDO-TX'
const isUnsigned = () => type === 'UNSIGNED-TX'
const isSigned = () => type === 'SIGNED-TX'
const isRpc = () => type === 'RPC'
const isConstant = () => type === 'CONSTANT'
const loadSudoKey = () => {
;(async function () {
if (!api || !api.query.sudo) {
return
}
const sudoKey = await api.query.sudo.key()
sudoKey.isEmpty ? setSudoKey(null) : setSudoKey(sudoKey.toString())
})()
}
useEffect(loadSudoKey, [api])
const getFromAcct = async () => {
const {
address,
meta: { source, isInjected },
} = currentAccount
if (!isInjected) {
return [currentAccount]
}
// currentAccount is injected from polkadot-JS extension, need to return the addr and signer object.
// ref: https://polkadot.js.org/docs/extension/cookbook#sign-and-send-a-transaction
const injector = await web3FromSource(source)
return [address, { signer: injector.signer }]
}
const txResHandler = ({ events = [], status, txHash }) =>{
status.isFinalized
? setStatus(`😉 Finalized. Block hash: ${status.asFinalized.toString()}`)
: setStatus(`Current transaction status: ${status.type}`)
// Loop through Vec<EventRecord> to display all events
events.forEach(({ _, event: { data, method, section } }) => {
if ((section + ":" + method) === 'system:ExtrinsicFailed' ) {
// extract the data for this event
const [dispatchError, dispatchInfo] = data;
console.log(`dispatchinfo: ${dispatchInfo}`)
let errorInfo;
// decode the error
if (dispatchError.isModule) {
// for module errors, we have the section indexed, lookup
// (For specific known errors, we can also do a check against the
// api.errors.<module>.<ErrorName>.is(dispatchError.asModule) guard)
const mod = dispatchError.asModule
const error = api.registry.findMetaError(
new Uint8Array([mod.index.toNumber(), bnFromHex(mod.error.toHex().slice(0, 4)).toNumber()])
)
let message = `${error.section}.${error.name}${
Array.isArray(error.docs) ? `(${error.docs.join('')})` : error.docs || ''
}`
errorInfo = `${message}`;
console.log(`Error-info::${JSON.stringify(error)}`)
} else {
// Other, CannotLookup, BadOrigin, no extra info
errorInfo = dispatchError.toString();
}
setStatus(`😞 Transaction Failed! ${section}.${method}::${errorInfo}`)
} else if (section + ":" + method === 'system:ExtrinsicSuccess' ) {
setStatus(`❤️️ Transaction successful! tx hash: ${txHash} , Block hash: ${status.asFinalized.toString()}`)
}
});
}
const txErrHandler = err =>
setStatus(`😞 Transaction Failed: ${err.toString()}`)
const sudoTx = async () => {
const fromAcct = await getFromAcct()
const transformed = transformParams(paramFields, inputParams)
// transformed can be empty parameters
const txExecute = transformed
? api.tx.sudo.sudo(api.tx[palletRpc][callable](...transformed))
: api.tx.sudo.sudo(api.tx[palletRpc][callable]())
const unsub = txExecute
.signAndSend(...fromAcct, txResHandler)
.catch(txErrHandler)
setUnsub(() => unsub)
}
const uncheckedSudoTx = async () => {
const fromAcct = await getFromAcct()
const txExecute = api.tx.sudo.sudoUncheckedWeight(
api.tx[palletRpc][callable](...inputParams),
0
)
const unsub = txExecute
.signAndSend(...fromAcct, txResHandler)
.catch(txErrHandler)
setUnsub(() => unsub)
}
const signedTx = async () => {
const fromAcct = await getFromAcct()
const transformed = transformParams(paramFields, inputParams)
// transformed can be empty parameters
const txExecute = transformed
? api.tx[palletRpc][callable](...transformed)
: api.tx[palletRpc][callable]()
const unsub = await txExecute
.signAndSend(...fromAcct, txResHandler)
.catch(txErrHandler)
setUnsub(() => unsub)
}
const unsignedTx = async () => {
const transformed = transformParams(paramFields, inputParams)
// transformed can be empty parameters
const txExecute = transformed
? api.tx[palletRpc][callable](...transformed)
: api.tx[palletRpc][callable]()
const unsub = await txExecute.send(txResHandler).catch(txErrHandler)
setUnsub(() => unsub)
}
const queryResHandler = result =>
result.isNone ? setStatus('None') : setStatus(result.toString())
const query = async () => {
const transformed = transformParams(paramFields, inputParams)
const unsub = await api.query[palletRpc][callable](
...transformed,
queryResHandler
)
setUnsub(() => unsub)
}
const rpc = async () => {
const transformed = transformParams(paramFields, inputParams, {
emptyAsNull: false,
})
const unsub = await api.rpc[palletRpc][callable](
...transformed,
queryResHandler
)
setUnsub(() => unsub)
}
const constant = () => {
const result = api.consts[palletRpc][callable]
result.isNone ? setStatus('None') : setStatus(result.toString())
}
const transaction = async () => {
if (typeof unsub === 'function') {
unsub()
setUnsub(null)
}
setStatus('Sending...')
const asyncFunc =
(isSudo() && sudoTx) ||
(isUncheckedSudo() && uncheckedSudoTx) ||
(isSigned() && signedTx) ||
(isUnsigned() && unsignedTx) ||
(isQuery() && query) ||
(isRpc() && rpc) ||
(isConstant() && constant)
await asyncFunc()
return txOnClickHandler && typeof txOnClickHandler === 'function'
? txOnClickHandler(unsub)
: null
}
const transformParams = (
paramFields,
inputParams,
opts = { emptyAsNull: true }
) => {
// if `opts.emptyAsNull` is true, empty param value will be added to res as `null`.
// Otherwise, it will not be added
const paramVal = inputParams.map(inputParam => {
// To cater the js quirk that `null` is a type of `object`.
if (
typeof inputParam === 'object' &&
inputParam !== null &&
typeof inputParam.value === 'string'
) {
return inputParam.value.trim()
} else if (typeof inputParam === 'string') {
return inputParam.trim()
}
return inputParam
})
const params = paramFields.map((field, ind) => ({
...field,
value: paramVal[ind] || null,
}))
return params.reduce((memo, { type = 'string', value }) => {
if (value == null || value === '')
return opts.emptyAsNull ? [...memo, null] : memo
let converted = value
// Deal with a vector
if (type.indexOf('Vec<') >= 0) {
converted = converted.split(',').map(e => e.trim())
converted = converted.map(single =>
isNumType(type)
? single.indexOf('.') >= 0
? Number.parseFloat(single)
: Number.parseInt(single)
: single
)
return [...memo, converted]
}
// Deal with a single value
if (isNumType(type)) {
converted =
converted.indexOf('.') >= 0
? Number.parseFloat(converted)
: Number.parseInt(converted)
}
return [...memo, converted]
}, [])
}
const isNumType = type =>
utils.paramConversion.num.some(el => type.indexOf(el) >= 0)
const allParamsFilled = () => {
if (paramFields.length === 0) {
return true
}
return paramFields.every((paramField, ind) => {
const param = inputParams[ind]
if (paramField.optional) {
return true
}
if (param == null) {
return false
}
const value = typeof param === 'object' ? param.value : param
return value !== null && value !== ''
})
}
const isSudoer = acctPair => {
if (!sudoKey || !acctPair) {
return false
}
return acctPair.address === sudoKey
}
return (
<Button
basic
color={color}
style={style}
type="submit"
onClick={transaction}
disabled={
disabled ||
!palletRpc ||
!callable ||
!allParamsFilled() ||
// These txs required currentAccount to be set
((isSudo() || isUncheckedSudo() || isSigned()) && !currentAccount) ||
((isSudo() || isUncheckedSudo()) && !isSudoer(currentAccount))
}
>
{label}
</Button>
)
}
// prop type checking
TxButton.propTypes = {
setStatus: PropTypes.func.isRequired,
type: PropTypes.oneOf([
'QUERY',
'RPC',
'SIGNED-TX',
'UNSIGNED-TX',
'SUDO-TX',
'UNCHECKED-SUDO-TX',
'CONSTANT',
]).isRequired,
attrs: PropTypes.shape({
palletRpc: PropTypes.string,
callable: PropTypes.string,
inputParams: PropTypes.array,
paramFields: PropTypes.array,
}).isRequired,
}
function TxGroupButton(props) {
return (
<Button.Group>
<TxButton label="Unsigned" type="UNSIGNED-TX" color="grey" {...props} />
<Button.Or />
<TxButton label="Signed" type="SIGNED-TX" color="blue" {...props} />
<Button.Or />
<TxButton label="SUDO" type="SUDO-TX" color="red" {...props} />
</Button.Group>
)
}
export { TxButton, TxGroupButton }