image-format.vue 1.25 KB
<template>
  <img v-lazy="currentSrc" :alt="alt" v-if="currentLazy">
  <img :src="currentSrc" :alt="alt" v-else lazy="" data-src="">
</template>

<script>
import {mapState} from 'vuex';

export default {
  name: 'ImageFormat',
  props: {
    lazy: {
      type: Boolean,
      default: true
    },
    src: String,
    width: [Number, String],
    height: [Number, String],
    mode: {
      type: [Number, String],
      default: 2
    },
    alt: String,
    interlace: Boolean
  },
  data() {
    return {
      refresh: false,
      currentLazy: this.lazy
    };
  },
  watch: {
    src() {
      this.currentLazy = false;
    },
    lazy(val) {
      this.currentLazy = val;
    }
  },
  computed: {
    ...mapState(['yoho']),
    currentSrc() {
      let src = this.src;
      let splits = (this.src || '').split('?');
      let query = splits[1] || '';

      if (/imageView/.test(query)) {
        if (!/interlace/.test(query)) {
          src = `${src}/interlace/1`;
        }
        if (!/webp/.test(query)) {
          src = `${src}/format/webp`;
        }
      }
      return (src || '')
        .replace('http://', '//')
        .replace('{mode}', this.mode)
        .replace('{width}', this.width)
        .replace('{height}', this.height);
    }
  }
};
</script>