mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-03 19:07:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			926 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			926 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="flex h-full px-1 overflow-hidden">
 | 
						|
    <cards-book-cover :audiobook="audiobook" :width="40" />
 | 
						|
    <div class="flex-grow px-2 searchCardContent h-full">
 | 
						|
      <p class="truncate text-sm">{{ title }}</p>
 | 
						|
      <p class="text-xs text-gray-200 truncate">by {{ author }}</p>
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    audiobook: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {}
 | 
						|
    }
 | 
						|
  },
 | 
						|
  data() {
 | 
						|
    return {}
 | 
						|
  },
 | 
						|
  computed: {
 | 
						|
    book() {
 | 
						|
      return this.audiobook ? this.audiobook.book || {} : {}
 | 
						|
    },
 | 
						|
    title() {
 | 
						|
      return this.book ? this.book.title : 'No Title'
 | 
						|
    },
 | 
						|
    author() {
 | 
						|
      return this.book ? this.book.author : 'Unknown'
 | 
						|
    }
 | 
						|
  },
 | 
						|
  methods: {},
 | 
						|
  mounted() {}
 | 
						|
}
 | 
						|
</script>
 | 
						|
 | 
						|
<style>
 | 
						|
.searchCardContent {
 | 
						|
  width: calc(100% - 80px);
 | 
						|
  height: calc(40px * 1.5);
 | 
						|
  display: flex;
 | 
						|
  flex-direction: column;
 | 
						|
  justify-content: center;
 | 
						|
}
 | 
						|
</style> |