-
Notifications
You must be signed in to change notification settings - Fork 1
/
TxButton.js
284 lines (242 loc) · 8.3 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
import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types';
import { Button } from 'semantic-ui-react';
import { web3FromSource } from '@polkadot/extension-dapp';
import { useSubstrate } from '../';
import utils from '../utils';
function TxButton ({
accountPair = null,
label,
setStatus,
color = 'blue',
style = null,
type = 'QUERY',
attrs = null,
onClick = null,
disabled = false
}) {
// Hooks
const { api } = useSubstrate();
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 }
} = accountPair;
let fromAcct;
// signer is from Polkadot-js browser extension
if (isInjected) {
const injected = await web3FromSource(source);
fromAcct = address;
api.setSigner(injected.signer);
} else {
fromAcct = accountPair;
}
return fromAcct;
};
const txResHandler = ({ status }) =>
status.isFinalized
? setStatus(`😉 Finalized. Block hash: ${status.asFinalized.toString()}`)
: setStatus(`Current transaction status: ${status.type}`);
const txErrHandler = err =>
setStatus(`😞 Transaction Failed: ${err.toString()}`);
const sudoTx = async () => {
const fromAcct = await getFromAcct();
const transformed = transformParams(paramFields, inputParams);
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);
// note: you cannot store a function directly in React state hook. You need to wrap it in
// anonymous function. See: https://bit.ly/30hbINF
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);
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);
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 (unsub) {
unsub();
setUnsub(null);
}
setStatus('Sending...');
(isSudo() && sudoTx()) ||
(isUncheckedSudo() && uncheckedSudoTx()) ||
(isSigned() && signedTx()) ||
(isUnsigned() && unsignedTx()) ||
(isQuery() && query()) ||
(isRpc() && rpc()) ||
(isConstant() && constant());
};
// notes: If onClick handler is passed in, we want to call it. But we want call the handler
// only when the unsubscription handler (unsub) is ready, so we can pass the unsub handler to
// the onClick handler for processing. Thus we use a `useEffect` here.
useEffect(() => {
if (unsub && onClick) {
onClick(unsub);
setUnsub(null);
}
}, [unsub, onClick]);
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: typeof paramVal[ind] === 'undefined' ? null : paramVal[ind] }));
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() ||
((isSudo() || isUncheckedSudo()) && !isSudoer(accountPair)) }
>
{label}
</Button>
);
}
// prop type checking
TxButton.propTypes = {
accountPair: PropTypes.object,
setStatus: PropTypes.func.isRequired,
onClick: PropTypes.func,
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 };