46 lines
903 B
Vue
46 lines
903 B
Vue
<template>
|
|
<div class="flex h-full px-1 overflow-hidden">
|
|
<div class="overflow-hidden bg-primary rounded" style="height: 50px; width: 40px">
|
|
<covers-author-image :author="author" />
|
|
</div>
|
|
<div class="flex-grow px-2 authorSearchCardContent h-full">
|
|
<p class="truncate text-sm">{{ name }}</p>
|
|
<p class="text-xs text-gray-400">{{ $getString('LabelXBooks', [numBooks]) }}</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
author: {
|
|
type: Object,
|
|
default: () => {}
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {
|
|
name() {
|
|
return this.author.name
|
|
},
|
|
numBooks() {
|
|
return this.author.numBooks
|
|
}
|
|
},
|
|
methods: {},
|
|
mounted() {}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.authorSearchCardContent {
|
|
width: calc(100% - 80px);
|
|
height: 44px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
</style>
|