All files / src/components/Shared AvailableNFT.vue

0% Statements 0/21
0% Branches 0/3
0% Functions 0/5
0% Lines 0/19

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                                                                                                                                                                                               
<template>
  <div class="row justify-center q-pt-lg">
    <q-card
      v-dm-class="{ dark: 'bg-grey-9', light: 'bg-green-1' }"
      class="col col-xs-12 col-sm-10 col-md-8 col-lg-6 q-pa-sm"
    >
      <q-card-section>
        <router-link class="text-h5 text-bold" :to="`/nft/${ethNetwork}`">{{
          formattedTitle
        }}</router-link>
      </q-card-section>
      <q-list>
        <q-item
          v-for="(c, key) in contractsData[ethNetwork]"
          :key="key"
          :to="`/nft/${ethNetwork}/${c.slug}`"
        >
          <q-item-section avatar>
            <q-avatar square>
              <img
                :src="
                  c.image.large ||
                    generateImageHolder(c.contract.contract_address, 300)
                "
                class="card-image"
                :alt="c.name"
              />
            </q-avatar>
          </q-item-section>
          <q-item-section>
            <q-item-label>
              {{ c.name }}
            </q-item-label>
          </q-item-section>
        </q-item>
      </q-list>
    </q-card>
  </div>
</template>
 
<script lang="ts">
import { ActionsName, RootState } from "src/store";
import { mapActions, mapState } from "vuex";
import { generateImageHolder } from "src/helper/utils";
import { Prop, Component, Vue } from "vue-property-decorator";
import { darkModeClassDirectives } from "src/directives/darkModeClass";
 
@Component({
  name: "AvailableNFTComponent",
  directives: {
    "dm-class": darkModeClassDirectives
  },
  computed: {
    ...mapState({
      contractsData: (state: RootState) => state.contract.contractsData
    })
  },
  methods: {
    ...mapActions({
      loadAllJson: ActionsName.contract.loadAllJson
    })
  }
})
class AvailableNFTComponent extends Vue {
  @Prop(String) ethNetwork: string;
 
  loadAllJson: (network: string) => void;
 
  loading = true;
  generateImageHolder = generateImageHolder;
 
  get formattedTitle() {
    return this.ethNetwork
      .split("_")
      .map(d => d.charAt(0).toUpperCase() + d.substr(1))
      .join(" ");
  }
 
  async mounted() {
    this.loading = true;
    await this.loadAllJson(this.ethNetwork);
    this.loading = false;
  }
}
export default AvailableNFTComponent;
</script>
 
<style scoped>
.card-image {
  padding: 10px;
  width: 100%;
  max-width: 400px;
  max-height: 400px;
}
</style>