2022-05-22 21:03:07 +00:00
|
|
|
<script>
|
|
|
|
export let item;
|
|
|
|
</script>
|
|
|
|
|
2022-05-30 13:21:32 +00:00
|
|
|
<a class="relative flex flex-col w-44 items-center mb-4 rounded-md overflow-hidden transform transition ease-out duration-300 hover:bg-lightSecondary2 hover:shadow-xl break-inside-avoid dark:bg-darkSecondaryBg dark:text-darkSecondary2" href="#/item/{item.rowid}">
|
2022-05-22 21:03:07 +00:00
|
|
|
<img class="object-cover h-64 w-44" src={item.image || '/static/book-cover.png'} alt="{item.name}"/>
|
|
|
|
<h1 class="text-lg font-semibold p-2 text-white tracking-wider">
|
|
|
|
<sl-rating readonly precision="0.1" value={item.rating}></sl-rating>
|
|
|
|
</h1>
|
|
|
|
{#if !item.image}
|
2022-05-28 16:30:17 +00:00
|
|
|
<div class="absolute inset-y-0 px-2 py-4 break-inside-avoid">
|
2022-05-22 21:03:07 +00:00
|
|
|
<p class="font-extrabold text-white text-xl">{item.name}</p>
|
|
|
|
<p class="text-sm text-white mt-3">{item.creators}</p>
|
|
|
|
</div>
|
|
|
|
{/if}
|
|
|
|
</a>
|