@@ -55,10 +55,7 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
55
55
const theme = useTheme ( ) ;
56
56
const [ isPopupOpen , setIsPopupOpen ] = useState ( false ) ;
57
57
const [ isSuccess , setIsSuccess ] = useState ( false ) ;
58
- const [ popupStepsState , setPopupStepsState ] = useState < {
59
- items : [ _TimelineItem1 , ..._TimelineItem1 [ ] ] ;
60
- current : number ;
61
- } > ( ) ;
58
+ const [ popupStepsState , setPopupStepsState ] = useState < [ _TimelineItem1 , ..._TimelineItem1 [ ] ] > ( ) ;
62
59
63
60
const { data : courtDetails } = useCourtDetails ( id ) ;
64
61
const { data : balance } = useReadPnkBalanceOf ( {
@@ -140,67 +137,62 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
140
137
const requestData = config ?. request ?? setStakeConfig ?. request ;
141
138
142
139
if ( requestData && publicClient ) {
143
- setPopupStepsState ( {
144
- items : getStakeSteps (
140
+ setPopupStepsState (
141
+ getStakeSteps (
145
142
isWithdraw ? StakeSteps . WithdrawInitiate : StakeSteps . StakeInitiate ,
146
143
amount ,
147
144
theme ,
148
145
approvalHash
149
- ) ,
150
- current : 1 ,
151
- } ) ;
146
+ )
147
+ ) ;
152
148
153
149
setStake ( requestData )
154
150
. then ( async ( hash ) => {
155
- setPopupStepsState ( {
156
- items : getStakeSteps (
151
+ setPopupStepsState (
152
+ getStakeSteps (
157
153
isWithdraw ? StakeSteps . WithdrawPending : StakeSteps . StakePending ,
158
154
amount ,
159
155
theme ,
160
156
approvalHash ,
161
157
hash
162
- ) ,
163
- current : 1 ,
164
- } ) ;
158
+ )
159
+ ) ;
165
160
await publicClient . waitForTransactionReceipt ( { hash, confirmations : 2 } ) . then ( ( res : TransactionReceipt ) => {
166
161
const status = res . status === "success" ;
167
162
if ( status ) {
168
- setPopupStepsState ( {
169
- items : getStakeSteps (
163
+ setPopupStepsState (
164
+ getStakeSteps (
170
165
isWithdraw ? StakeSteps . WithdrawConfirmed : StakeSteps . StakeConfirmed ,
171
166
amount ,
172
167
theme ,
173
168
approvalHash ,
174
169
hash
175
- ) ,
176
- current : 1 ,
177
- } ) ;
170
+ )
171
+ ) ;
178
172
setIsSuccess ( true ) ;
179
173
} else
180
- setPopupStepsState ( {
181
- items : getStakeSteps (
174
+ setPopupStepsState (
175
+ getStakeSteps (
182
176
isWithdraw ? StakeSteps . WithdrawFailed : StakeSteps . StakeFailed ,
183
177
amount ,
184
178
theme ,
185
179
approvalHash ,
186
180
hash
187
- ) ,
188
- current : 1 ,
189
- } ) ;
181
+ )
182
+ ) ;
190
183
} ) ;
191
184
} )
192
185
. catch ( ( err ) => {
193
- setPopupStepsState ( {
194
- items : getStakeSteps (
186
+ setPopupStepsState (
187
+ getStakeSteps (
195
188
isWithdraw ? StakeSteps . WithdrawFailed : StakeSteps . StakeFailed ,
196
189
amount ,
197
190
theme ,
198
191
approvalHash ,
199
192
undefined ,
200
193
err
201
- ) ,
202
- current : 1 ,
203
- } ) ;
194
+ )
195
+ ) ;
204
196
} ) ;
205
197
}
206
198
} ,
@@ -210,17 +202,11 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
210
202
const handleClick = useCallback ( ( ) => {
211
203
setIsPopupOpen ( true ) ;
212
204
if ( ActionType . allowance && isAllowance && increaseAllowanceConfig && publicClient ) {
213
- setPopupStepsState ( {
214
- items : getStakeSteps ( StakeSteps . ApproveInitiate , amount , theme ) ,
215
- current : 0 ,
216
- } ) ;
205
+ setPopupStepsState ( getStakeSteps ( StakeSteps . ApproveInitiate , amount , theme ) ) ;
217
206
218
207
increaseAllowance ( increaseAllowanceConfig . request )
219
208
. then ( async ( hash ) => {
220
- setPopupStepsState ( {
221
- items : getStakeSteps ( StakeSteps . ApprovePending , amount , theme , hash ) ,
222
- current : 0 ,
223
- } ) ;
209
+ setPopupStepsState ( getStakeSteps ( StakeSteps . ApprovePending , amount , theme , hash ) ) ;
224
210
225
211
await publicClient
226
212
. waitForTransactionReceipt ( { hash, confirmations : 2 } )
@@ -231,18 +217,11 @@ const StakeWithdrawButton: React.FC<IActionButton> = ({ amount, parsedAmount, ac
231
217
const refetchData = await refetchSetStake ( ) ;
232
218
233
219
handleStake ( refetchData . data , hash ) ;
234
- } else
235
- setPopupStepsState ( {
236
- items : getStakeSteps ( StakeSteps . ApproveFailed , amount , theme , hash ) ,
237
- current : 0 ,
238
- } ) ;
220
+ } else setPopupStepsState ( getStakeSteps ( StakeSteps . ApproveFailed , amount , theme , hash ) ) ;
239
221
} ) ;
240
222
} )
241
223
. catch ( ( err ) => {
242
- setPopupStepsState ( {
243
- items : getStakeSteps ( StakeSteps . ApproveFailed , amount , theme , undefined , undefined , err ) ,
244
- current : 0 ,
245
- } ) ;
224
+ setPopupStepsState ( getStakeSteps ( StakeSteps . ApproveFailed , amount , theme , undefined , undefined , err ) ) ;
246
225
} ) ;
247
226
} else {
248
227
handleStake ( ) ;
0 commit comments