Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | <template> <q-card v-dm-class="{ dark: 'bg-grey-8', light: 'bg-green-1' }"> <q-card-section :v-if="currentAddress.length > 1"> <q-input class type="text" label="Address" max-height="100" @change="handleAddressChange" :value="currentAddress" filled standout bottom-slots :dark="darkMode" > <template v-slot:before> <q-avatar> <img class="q-mx-sm" :src="identicon" :alt="currentAddress" /> </q-avatar> </template> </q-input> </q-card-section> </q-card> </template> <script lang="ts"> import { mapActions, mapMutations, mapGetters } from "vuex"; import { ActionsName, MutationsName, GettersName } from "src/store"; import { generateImageHolder } from "src/helper/utils"; import { Prop, Component, Vue } from "vue-property-decorator"; import { darkModeClassDirectives } from "src/directives/darkModeClass"; @Component({ name: "CurrentAdressComponent", directives: { "dm-class": darkModeClassDirectives }, computed: { ...mapGetters({ currentAddress: GettersName.contract.getCurrentAddress, network: GettersName.web3.web3NetworkName, darkMode: GettersName.settings.getDarkMode }) }, methods: { ...mapActions({ updateBalance: ActionsName.contract.updateBalance, initializeWeb3: ActionsName.web3.initializeWeb3, loadAllContracts: ActionsName.contract.loadAllContracts, loadSpecificContract: ActionsName.contract.loadSpecificContract }), ...mapMutations({ setAddress: MutationsName.contract.setAddress, setLoading: MutationsName.contract.setLoading }) } }) class CurrentAddressComponent extends Vue { @Prop(String) slug: string; @Prop(String) type: string; setAddress: (addr: string) => void; setLoading: (loading: boolean) => void; updateBalance: () => void; loadSpecificContract: (payload: { name: string; network: string }) => void; currentAddress: string; network: string; async handleAddressChange(e: { target: HTMLInputElement }) { const val = e.target.value.trim(); this.setAddress(val); this.setLoading(true); await this.updateBalance(); if (this.type === "nft") { await this.loadSpecificContract({ name: this.slug, network: this.network }); } this.setLoading(false); } get identicon(): string { return this.currentAddress.length > 0 ? generateImageHolder(`${this.currentAddress}`, 50) : ""; } } export default CurrentAddressComponent; </script> <style></style> |