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 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 | <template> <q-page padding> <q-inner-loading :showing="showLoading"> <q-spinner-gears size="50px" color="primary" /> </q-inner-loading> <div class="q-pa-xs col-xs-12" v-show="!showLoading" v-if="!showLoading"> <q-card class="q-my-md full-width" v-dm-class="{ dark: 'bg-grey-8', light: 'bg-green-1' }" > <q-card-section class=""> <div class="row"> <img class="Contract__Image q-mx-sm" :src=" jsonData.image.small || generateImageHolder(jsonData.contract.contract_address, 100) " :alt="jsonData.name" /> <div class="column justify-start column inline q-ml-sm"> <span class="text-h5">{{ jsonData.name }}</span> <div> <q-badge color="blue"> {{ jsonData.contract.standard }} </q-badge> <a rel="noreferrer" target="_blank" :href="jsonData.official_site" > official site </a> </div> </div> </div> <div class="col col-12 q-px-md q-py-sm"> <current-address v-if="currentAddress !== ''" :slug="slug" type="nft" /> </div> </q-card-section> </q-card> <nft-list class="q-my-md" v-if="showNftList" :name="slug" :network="ethNetwork" /> <div class="row full-width q-mt-lg" v-dm-class="{ dark: 'bg-grey-8', light: 'bg-green-1' }" v-else > <div class="col-12 q-pa-lg row"> <span class="text-h5 text-center col-12"> No NFTs available </span> </div> </div> </div> </q-page> </template> <script lang="ts"> import { FILE, SUPPORTED_NETWORK } from "src/contracts/contract"; import { Notify } from "quasar"; import CurrentAddressVue from "src/components/Shared/CurrentAddress.vue"; import NFTListVue from "src/components/NFT/NFTList.vue"; import { mapGetters, mapActions, mapMutations } from "vuex"; import { GettersName, ActionsName, MutationsName } from "src/store"; import { generateImageHolder } from "src/helper/utils"; import { W3iMixin } from "src/mixins/W3iMixin"; import { Component, Mixins } from "vue-property-decorator"; import { darkModeClassDirectives } from "src/directives/darkModeClass"; @Component({ name: "NFTPage", directives: { "dm-class": darkModeClassDirectives }, components: { "current-address": CurrentAddressVue, "nft-list": NFTListVue }, methods: { ...mapActions({ loadSpecificContract: ActionsName.contract.loadSpecificContract }), ...mapMutations({ setName: MutationsName.contract.setName }), generateImageHolder: generateImageHolder }, computed: { ...mapGetters({ currentAddress: GettersName.contract.getCurrentAddress, network: GettersName.web3.web3NetworkName, isInitialized: GettersName.web3.web3Initialize }) } }) class NFTPage extends Mixins(W3iMixin) { // Data slug = ""; jsonData = {}; showNftList = false; showLoading = true; // Vuex network: string; setName: (name: string) => void; loadSpecificContract: (payload: { name: string; network: string }) => void; async mounted() { this.showLoading = true; await this.w3i(); await this.networkCheck(); const network = this.network || this.$route.params.network; // Check Route if (this.$route.params.slug) { this.slug = this.$route.params.slug; this.setName(this.slug); if (!SUPPORTED_NETWORK.hasOwnProperty(network)) { this.$router.push({ path: "/nft" }); Notify.create({ color: "red", message: `Network not supported for id ${this.network}` }); return; } if (FILE[network].filename.indexOf(this.slug) === -1) { this.$router.push({ path: "/nft" }); Notify.create({ color: "red", message: `No contract found for ${this.slug}` }); return; } } else { Notify.create({ color: "red", message: `No slug found` }); this.$router.push({ path: "/" }); return; } this.showLoading = false; // fetch json data this.jsonData = await import(`src/contracts/contract/${network}/${ this.slug }/contract.json`); await this.loadSpecificContract({ name: this.slug, network }); this.showNftList = true; } } export default NFTPage; </script> <style> .Contract__Image { height: 60px; width: 60px; } </style> |