mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: iamsivin <iamsivin@gmail.com>
		
			
				
	
	
		
			120 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			120 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    v-tooltip.top="{
 | 
						|
      content: tooltipText,
 | 
						|
      delay: { show: 1500, hide: 0 },
 | 
						|
      hideOnClick: true,
 | 
						|
    }"
 | 
						|
    class="text-xxs text-slate-500 dark:text-slate-500 leading-4 ml-auto hover:text-slate-900 dark:hover:text-slate-100"
 | 
						|
  >
 | 
						|
    <span>{{ `${createdAtTime} • ${lastActivityTime}` }}</span>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
const MINUTE_IN_MILLI_SECONDS = 60000;
 | 
						|
const HOUR_IN_MILLI_SECONDS = MINUTE_IN_MILLI_SECONDS * 60;
 | 
						|
const DAY_IN_MILLI_SECONDS = HOUR_IN_MILLI_SECONDS * 24;
 | 
						|
 | 
						|
import timeMixin from 'dashboard/mixins/time';
 | 
						|
 | 
						|
export default {
 | 
						|
  name: 'TimeAgo',
 | 
						|
  mixins: [timeMixin],
 | 
						|
  props: {
 | 
						|
    isAutoRefreshEnabled: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
    lastActivityTimestamp: {
 | 
						|
      type: [String, Date, Number],
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
    createdAtTimestamp: {
 | 
						|
      type: [String, Date, Number],
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      lastActivityAtTimeAgo: this.dynamicTime(this.lastActivityTimestamp),
 | 
						|
      createdAtTimeAgo: this.dynamicTime(this.createdAtTimestamp),
 | 
						|
      timer: null,
 | 
						|
    };
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    lastActivityTime() {
 | 
						|
      return this.shortTimestamp(this.lastActivityAtTimeAgo);
 | 
						|
    },
 | 
						|
    createdAtTime() {
 | 
						|
      return this.shortTimestamp(this.createdAtTimeAgo);
 | 
						|
    },
 | 
						|
    createdAt() {
 | 
						|
      const createdTimeDiff = Date.now() - this.createdAtTimestamp * 1000;
 | 
						|
      const isBeforeAMonth = createdTimeDiff > DAY_IN_MILLI_SECONDS * 30;
 | 
						|
      return !isBeforeAMonth
 | 
						|
        ? `${this.$t('CHAT_LIST.CHAT_TIME_STAMP.CREATED.LATEST')} ${
 | 
						|
            this.createdAtTimeAgo
 | 
						|
          }`
 | 
						|
        : `${this.$t(
 | 
						|
            'CHAT_LIST.CHAT_TIME_STAMP.CREATED.OLDEST'
 | 
						|
          )} ${this.dateFormat(this.createdAtTimestamp)}`;
 | 
						|
    },
 | 
						|
    lastActivity() {
 | 
						|
      const lastActivityTimeDiff =
 | 
						|
        Date.now() - this.lastActivityTimestamp * 1000;
 | 
						|
      const isNotActive = lastActivityTimeDiff > DAY_IN_MILLI_SECONDS * 30;
 | 
						|
      return !isNotActive
 | 
						|
        ? `${this.$t('CHAT_LIST.CHAT_TIME_STAMP.LAST_ACTIVITY.ACTIVE')} ${
 | 
						|
            this.lastActivityAtTimeAgo
 | 
						|
          }`
 | 
						|
        : `${this.$t(
 | 
						|
            'CHAT_LIST.CHAT_TIME_STAMP.LAST_ACTIVITY.NOT_ACTIVE'
 | 
						|
          )} ${this.dateFormat(this.lastActivityTimestamp)}`;
 | 
						|
    },
 | 
						|
    tooltipText() {
 | 
						|
      return `${this.createdAt}
 | 
						|
              ${this.lastActivity}`;
 | 
						|
    },
 | 
						|
  },
 | 
						|
  watch: {
 | 
						|
    lastActivityTimestamp() {
 | 
						|
      this.lastActivityAtTimeAgo = this.dynamicTime(this.lastActivityTimestamp);
 | 
						|
    },
 | 
						|
    createdAtTimestamp() {
 | 
						|
      this.createdAtTimeAgo = this.dynamicTime(this.createdAtTimestamp);
 | 
						|
    },
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    if (this.isAutoRefreshEnabled) {
 | 
						|
      this.createTimer();
 | 
						|
    }
 | 
						|
  },
 | 
						|
  beforeDestroy() {
 | 
						|
    clearTimeout(this.timer);
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    createTimer() {
 | 
						|
      this.timer = setTimeout(() => {
 | 
						|
        this.lastActivityAtTimeAgo = this.dynamicTime(
 | 
						|
          this.lastActivityTimestamp
 | 
						|
        );
 | 
						|
        this.createdAtTimeAgo = this.dynamicTime(this.createdAtTimestamp);
 | 
						|
        this.createTimer();
 | 
						|
      }, this.refreshTime());
 | 
						|
    },
 | 
						|
    refreshTime() {
 | 
						|
      const timeDiff = Date.now() - this.lastActivityTimestamp * 1000;
 | 
						|
      if (timeDiff > DAY_IN_MILLI_SECONDS) {
 | 
						|
        return DAY_IN_MILLI_SECONDS;
 | 
						|
      }
 | 
						|
      if (timeDiff > HOUR_IN_MILLI_SECONDS) {
 | 
						|
        return HOUR_IN_MILLI_SECONDS;
 | 
						|
      }
 | 
						|
 | 
						|
      return MINUTE_IN_MILLI_SECONDS;
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |