mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-04 03:17:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="w-full border-b border-gray-700 pb-2">
 | 
						|
    <div class="flex py-1 hover:bg-gray-300 hover:bg-opacity-10 cursor-pointer" @click="selectMatch">
 | 
						|
      <img :src="selectedCover || '/book_placeholder.jpg'" class="h-24 object-cover" style="width: 60px" />
 | 
						|
      <div class="px-4 flex-grow">
 | 
						|
        <div class="flex items-center">
 | 
						|
          <h1>{{ book.title }}</h1>
 | 
						|
          <div class="flex-grow" />
 | 
						|
          <p>{{ book.year || book.first_publish_date }}</p>
 | 
						|
        </div>
 | 
						|
        <p class="text-gray-400">{{ book.author }}</p>
 | 
						|
        <div class="w-full max-h-12 overflow-hidden">
 | 
						|
          <p class="text-gray-500 text-xs" v-html="book.description"></p>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
    <div v-if="bookCovers.length > 1" class="flex">
 | 
						|
      <template v-for="cover in bookCovers">
 | 
						|
        <div :key="cover" class="border-2 hover:border-yellow-300 border-transparent" :class="cover === selectedCover ? 'border-yellow-200' : ''" @mousedown.stop @mouseup.stop @click.stop="clickCover(cover)">
 | 
						|
          <img :src="cover" class="h-20 w-12 object-cover mr-1" />
 | 
						|
        </div>
 | 
						|
      </template>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    book: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {}
 | 
						|
    }
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      selectedCover: null
 | 
						|
    }
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    bookCovers() {
 | 
						|
      return this.book.covers ? this.book.covers || [] : []
 | 
						|
    }
 | 
						|
  },
 | 
						|
  methods: {
 | 
						|
    selectMatch() {
 | 
						|
      var book = { ...this.book }
 | 
						|
      book.cover = this.selectedCover
 | 
						|
      this.$emit('select', this.book)
 | 
						|
    },
 | 
						|
    clickCover(cover) {
 | 
						|
      this.selectedCover = cover
 | 
						|
    }
 | 
						|
  },
 | 
						|
  mounted() {
 | 
						|
    this.selectedCover = this.bookCovers.length ? this.bookCovers[0] : null
 | 
						|
  }
 | 
						|
}
 | 
						|
</script> |