mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <li
 | 
						|
    :class="{
 | 
						|
      'tabs-title': true,
 | 
						|
      'is-active': active,
 | 
						|
    }"
 | 
						|
  >
 | 
						|
    <a @click="onTabClick">
 | 
						|
      {{ name }}
 | 
						|
      <span v-if="showBadge" class="badge">
 | 
						|
        {{ getItemCount }}
 | 
						|
      </span>
 | 
						|
    </a>
 | 
						|
  </li>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
import TWEEN from 'tween.js';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'WootTabsItem',
 | 
						|
  props: {
 | 
						|
    index: {
 | 
						|
      type: Number,
 | 
						|
      default: 0,
 | 
						|
    },
 | 
						|
    name: {
 | 
						|
      type: String,
 | 
						|
      required: true,
 | 
						|
    },
 | 
						|
    disabled: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
    count: {
 | 
						|
      type: Number,
 | 
						|
      default: 0,
 | 
						|
    },
 | 
						|
    showBadge: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      animatedNumber: 0,
 | 
						|
    };
 | 
						|
  },
 | 
						|
 | 
						|
  computed: {
 | 
						|
    active() {
 | 
						|
      return this.index === this.$parent.index;
 | 
						|
    },
 | 
						|
 | 
						|
    getItemCount() {
 | 
						|
      return this.animatedNumber || this.count;
 | 
						|
    },
 | 
						|
  },
 | 
						|
 | 
						|
  watch: {
 | 
						|
    count(newValue, oldValue) {
 | 
						|
      let animationFrame;
 | 
						|
      const animate = time => {
 | 
						|
        TWEEN.update(time);
 | 
						|
        animationFrame = window.requestAnimationFrame(animate);
 | 
						|
      };
 | 
						|
      const tweeningNumber = { value: oldValue };
 | 
						|
      new TWEEN.Tween(tweeningNumber)
 | 
						|
        .easing(TWEEN.Easing.Quadratic.Out)
 | 
						|
        .to({ value: newValue }, 500)
 | 
						|
        .onUpdate(() => {
 | 
						|
          this.animatedNumber = tweeningNumber.value.toFixed(0);
 | 
						|
        })
 | 
						|
        .onComplete(() => {
 | 
						|
          window.cancelAnimationFrame(animationFrame);
 | 
						|
        })
 | 
						|
        .start();
 | 
						|
      animationFrame = window.requestAnimationFrame(animate);
 | 
						|
    },
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    onTabClick(event) {
 | 
						|
      event.preventDefault();
 | 
						|
      if (!this.disabled) {
 | 
						|
        this.$parent.$emit('change', this.index);
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |