mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-03 19:07:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="flex flex-wrap justify-center mt-6">
 | 
						|
    <div class="flex px-2">
 | 
						|
      <svg class="h-14 w-14 md:h-18 md:w-18" viewBox="0 0 24 24">
 | 
						|
        <path fill="currentColor" d="M9 3V18H12V3H9M12 5L16 18L19 17L15 4L12 5M5 5V18H8V5H5M3 19V21H21V19H3Z" />
 | 
						|
      </svg>
 | 
						|
      <div class="px-2">
 | 
						|
        <p class="text-4xl md:text-5xl font-bold">{{ totalItems }}</p>
 | 
						|
        <p class="font-book text-xs md:text-sm text-white text-opacity-80">Books in Library</p>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="flex px-4">
 | 
						|
      <span class="material-icons text-7xl">show_chart</span>
 | 
						|
      <div class="px-1">
 | 
						|
        <p class="text-4xl md:text-5xl font-bold">{{ totalHours }}</p>
 | 
						|
        <p class="font-book text-xs md:text-sm text-white text-opacity-80">Overall Hours</p>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="flex px-4">
 | 
						|
      <svg class="h-14 w-14 md:h-18 md:w-18" viewBox="0 0 24 24">
 | 
						|
        <path fill="currentColor" d="M12,4A4,4 0 0,1 16,8A4,4 0 0,1 12,12A4,4 0 0,1 8,8A4,4 0 0,1 12,4M12,6A2,2 0 0,0 10,8A2,2 0 0,0 12,10A2,2 0 0,0 14,8A2,2 0 0,0 12,6M12,13C14.67,13 20,14.33 20,17V20H4V17C4,14.33 9.33,13 12,13M12,14.9C9.03,14.9 5.9,16.36 5.9,17V18.1H18.1V17C18.1,16.36 14.97,14.9 12,14.9Z" />
 | 
						|
      </svg>
 | 
						|
      <div class="px-1">
 | 
						|
        <p class="text-4xl md:text-5xl font-bold">{{ totalAuthors }}</p>
 | 
						|
        <p class="font-book text-xs md:text-sm text-white text-opacity-80">Authors</p>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="flex px-4">
 | 
						|
      <span class="material-icons-outlined text-6xl pt-1">insert_drive_file</span>
 | 
						|
      <div class="px-1">
 | 
						|
        <p class="text-4xl md:text-5xl font-bold">{{ totalSizeNum }}</p>
 | 
						|
        <p class="font-book text-xs md:text-sm text-white text-opacity-80">Size ({{ totalSizeMod }})</p>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <div class="flex px-4">
 | 
						|
      <span class="material-icons-outlined text-6xl pt-1">audio_file</span>
 | 
						|
      <div class="px-1">
 | 
						|
        <p class="text-4xl md:text-5xl font-bold">{{ numAudioTracks }}</p>
 | 
						|
        <p class="font-book text-xs md:text-sm text-white text-opacity-80">Audio Tracks</p>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    libraryStats: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {}
 | 
						|
    }
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {}
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    user() {
 | 
						|
      return this.$store.state.user.user
 | 
						|
    },
 | 
						|
    totalItems() {
 | 
						|
      return this.libraryStats ? this.libraryStats.totalItems : 0
 | 
						|
    },
 | 
						|
    totalAuthors() {
 | 
						|
      return this.libraryStats ? this.libraryStats.totalAuthors : 0
 | 
						|
    },
 | 
						|
    numAudioTracks() {
 | 
						|
      return this.libraryStats ? this.libraryStats.numAudioTracks : 0
 | 
						|
    },
 | 
						|
    totalDuration() {
 | 
						|
      return this.libraryStats ? this.libraryStats.totalDuration : 0
 | 
						|
    },
 | 
						|
    totalHours() {
 | 
						|
      var totalHours = Math.round(this.totalDuration / (60 * 60))
 | 
						|
      return totalHours
 | 
						|
    },
 | 
						|
    totalSizePretty() {
 | 
						|
      var totalSize = this.libraryStats ? this.libraryStats.totalSize : 0
 | 
						|
      return this.$bytesPretty(totalSize, 1)
 | 
						|
    },
 | 
						|
    totalSizeNum() {
 | 
						|
      return this.totalSizePretty.split(' ')[0]
 | 
						|
    },
 | 
						|
    totalSizeMod() {
 | 
						|
      return this.totalSizePretty.split(' ')[1]
 | 
						|
    }
 | 
						|
  },
 | 
						|
  methods: {},
 | 
						|
  mounted() {}
 | 
						|
}
 | 
						|
</script> |