-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathButtonSubmit.js
More file actions
245 lines (236 loc) · 7.65 KB
/
ButtonSubmit.js
File metadata and controls
245 lines (236 loc) · 7.65 KB
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
import React, { useEffect } from "react";
import Button from "../../../components/Button";
import {
hideTxTokenizeModal,
setTokenizeTxnInfo,
setTxTokenizeShareStatus,
showTxTokenizeModal,
submitFormData,
submitTransferFormData
} from "../../../store/actions/transactions/tokenizeShares";
import { useDispatch, useSelector } from "react-redux";
import { keplrSubmit } from "../../../store/actions/transactions/keplr";
import {
TokenizeSharesMsg,
TokenizeSharesTransferMsg,
SendMsg,
ValidatorBond
} from "../../../utils/protoMsgHelper";
import {
setTxIno,
setTxName,
txFailed
} from "../../../store/actions/transactions/common";
import { LOGIN_INFO } from "../../../constants/localStorage";
import { stringToNumber, trimWhiteSpaces } from "../../../utils/scripts";
import { BaseGas, DefaultChainInfo } from "../../../config";
import transactions from "../../../utils/transactions";
import { fee } from "../../../utils/aminoMsgHelper";
import { fetchApiData, pollAccountBalance } from "../../../utils/queries";
import { getTokenizedShares } from "../../../utils/actions";
const getLatestRecord = (newList, oldList) => {
const result = newList.filter(
({ recordId: recordId }) =>
!oldList.some(
({ recordId: recordId2 }) => Number(recordId2) === Number(recordId)
)
);
return result;
};
const ButtonSubmit = () => {
const dispatch = useDispatch();
const loginInfo = JSON.parse(localStorage.getItem(LOGIN_INFO));
const balance = useSelector((state) => state.balance.list);
const amount = useSelector((state) => state.tokenizeShares.amount);
const memo = useSelector((state) => state.tokenizeShares.memo);
const validatorAddress = useSelector((state) => state.validators.validator);
const toAddress = useSelector((state) => state.tokenizeShares.toAddress);
const txResponse = useSelector((state) => state.common.txResponse.value);
const tokenizeShareTxStatus = useSelector(
(state) => state.tokenizeShares.tokenizeShareTxStatus
);
const tokenizeSharesInfo = useSelector((state) => state.tokenizeSharesInfo);
const txName = useSelector((state) => state.common.txName.value.name);
useEffect(() => {
if (
txResponse &&
txResponse.code !== undefined &&
txResponse.code === 0 &&
txName === "tokenize"
) {
transferTxn(txResponse, "keystore");
}
}, [txResponse]);
const disable =
amount.value === "" ||
stringToNumber(amount.value) === 0 ||
(amount.error.message !== undefined &&
amount.error.message !== "") ||
validatorAddress.value === "" ||
validatorAddress.error.message !== "" ||
memo.error.message !== "" ||
toAddress.value === "" ||
toAddress.error.message !== "" ||
tokenizeShareTxStatus === "pending";
const onClickKeystore = () => {
dispatch(setTxTokenizeShareStatus("pending"));
dispatch(
submitFormData([
TokenizeSharesMsg(
loginInfo && loginInfo.address,
validatorAddress.value.operatorAddress,
loginInfo.address,
(amount.value * DefaultChainInfo.uTokenValue).toFixed(0),
DefaultChainInfo.currency.coinMinimalDenom
)
])
);
};
const onClickKeplr = async () => {
dispatch(setTxTokenizeShareStatus("pending"));
dispatch(txFailed(""));
// const msg = ValidatorBond(
// loginInfo && loginInfo.address,
// validatorAddress.value.operatorAddress
// );
const msg = TokenizeSharesMsg(
loginInfo && loginInfo.address,
validatorAddress.value.operatorAddress,
loginInfo.address,
(amount.value * DefaultChainInfo.uTokenValue).toFixed(0),
DefaultChainInfo.currency.coinMinimalDenom
);
try {
let response = await transactions.TransactionWithKeplr(
[msg],
fee(0, BaseGas),
""
);
transferTxn(response, "keplr");
} catch (e) {
dispatch(txFailed(e.message));
console.log(e, "error");
dispatch(setTxTokenizeShareStatus(""));
}
};
const transferTxn = async (response, type) => {
try {
if (response.code !== undefined && response.code === 0) {
const pollResult = await pollAccountBalance(
balance,
loginInfo && loginInfo.address
);
if (pollResult) {
await fetchApiData(loginInfo && loginInfo.address, dispatch);
const list = await getTokenizedShares(loginInfo && loginInfo.address);
dispatch(
setTokenizeTxnInfo({
txnTokenizeHash: response.transactionHash
})
);
let listItem;
if (list.length > 0) {
const tokenizeShareResponse = list.find(
(share) =>
validatorAddress.value.operatorAddress ===
share.validatorAddress
);
if (tokenizeShareResponse) {
listItem = tokenizeShareResponse.list;
}
}
let shareInfo;
if (tokenizeSharesInfo.sharesList.length > 0) {
const tokenizeShareResponse1 = tokenizeSharesInfo.sharesList.find(
(share) =>
validatorAddress.value.operatorAddress ===
share.validatorAddress
);
if (tokenizeShareResponse1) {
shareInfo = tokenizeShareResponse1.list;
}
}
let tokenizedItem;
if (!shareInfo && listItem) {
tokenizedItem = listItem;
} else {
tokenizedItem = getLatestRecord(
listItem,
shareInfo,
validatorAddress.value.operatorAddress
);
}
if (tokenizedItem) {
const msg1 = TokenizeSharesTransferMsg(
Number(tokenizedItem[0].recordId),
loginInfo.address,
toAddress.value
);
const msg2 = SendMsg(
loginInfo && loginInfo.address,
toAddress.value,
tokenizedItem[0].decAmount,
tokenizedItem[0].denom
);
if (type === "keplr") {
dispatch(
setTxIno({
value: {
modal: hideTxTokenizeModal(),
data: {
message: "",
memo: ""
}
}
})
);
dispatch(
setTxName({
value: {
name: "tokenize"
}
})
);
dispatch(keplrSubmit([msg1, msg2]));
} else {
const ledgerApp = localStorage.getItem("ledgerAppName");
if(ledgerApp === "Persistence"){
// persistence ledger facing some issues on some txns
dispatch(submitTransferFormData([msg2]));
}else {
dispatch(submitTransferFormData([msg1, msg2]));
}
}
dispatch(setTxTokenizeShareStatus("success"));
}
} else {
throw Error("something went wrong");
}
} else {
throw Error(response.rawLog);
}
} catch (e) {
dispatch(txFailed(e.message));
console.log(e, "error");
dispatch(setTxTokenizeShareStatus(""));
}
};
return (
<div className="buttons">
<div className="button-section">
<Button
className="button button-primary"
type="button"
disable={disable}
value="Transfer"
onClick={
loginInfo && loginInfo.loginMode === "keplr"
? onClickKeplr
: onClickKeystore
}
/>
</div>
</div>
);
};
export default ButtonSubmit;