classic-ui/components/Loaders/ApproveLoader.vue
FreezyEx b32527e057 Revert "minor fixes"
This reverts commit 7f8f7c2aa15c8b8c6a7449d177f46f8a417e2f67.
2022-10-13 16:03:54 +02:00

49 lines
1.1 KiB
Vue

<template>
<div v-if="isReconnectButtonShow" class="loading-alert">
{{ $t('mobileWallet.loading.alert') }}
<b-button type="is-primary" size="small" class="max-content is-outlined" @click="onReconnect">
{{ $t('mobileWallet.loading.action') }}
</b-button>
</div>
</template>
<script>
import { mapState, mapGetters, mapActions } from 'vuex'
import { SECOND } from '@/constants'
export default {
data() {
return {
isReconnectButtonShow: false
}
},
computed: {
...mapGetters('metamask', ['isWalletConnect', 'netId']),
...mapState('loading', ['enabled'])
},
mounted() {
this.onClearData()
if (this.isWalletConnect) {
this.timeout = setTimeout(() => {
this.isReconnectButtonShow = true
}, SECOND * 20)
}
},
destroyed() {
this.onClearData()
},
methods: {
...mapActions('metamask', ['mobileWalletReconnect']),
async onReconnect() {
await this.mobileWalletReconnect(this.netId)
},
onClearData() {
if (this.timeout) {
this.isReconnectButtonShow = false
clearTimeout(this.timeout)
}
}
}
}
</script>