<template>
	<div class="tile">
		<Link
			:href="`/scene/${scene.id}/${scene.slug}`"
			target="_blank"
			class="poster"
		>
			<img
				v-if="scene.poster"
				:src="scene.poster.isS3 ? `https://cdndev.traxxx.me/${scene.poster.thumbnail}` : `/media/${scene.poster.thumbnail}`"
				:style="{ 'background-image': scene.poster.isS3 ? `url(https://cdndev.traxxx.me/${scene.poster.lazy})` : `url(/media/${scene.poster.lazy})` }"
				loading="lazy"
				class="thumbnail"
			>
		</Link>

		<div class="meta">
			<div class="channel">
				<Link
					:href="scene.channel.isIndependent || !scene.network ? `/${scene.channel.type}/${scene.channel.slug}` : `/${scene.network.type}/${scene.network.slug}`"
					class="favicon-link"
				>
					<img
						:src="scene.channel.isIndependent || !scene.network ? `/logos/${scene.channel.slug}/favicon.png` : `/logos/${scene.network.slug}/favicon.png`"
						class="favicon"
					>
				</Link>

				<Link
					:href="`/${scene.channel.type}/${scene.channel.slug}`"
					class="nolink channel-link"
				>{{ scene.channel.name }}</Link>
			</div>

			<time
				:datetime="scene.effectiveDate.toISOString()"
				class="date"
			>{{ format(scene.effectiveDate, 'MMM d, y') }}</time>
		</div>

		<Link
			:href="`/scene/${scene.id}/${scene.slug}`"
			:title="scene.title"
			target="_blank"
			class="row title nolink"
		>{{ scene.title }}</Link>

		<ul
			class="row actors nolist"
			:title="scene.actors.map((actor) => actor.name).join(', ')"
		>
			<li
				v-for="actor in scene.actors"
				:key="`actor-${scene.id}-${actor.id}`"
				class="actor"
			>
				<Link
					:href="`/actor/${actor.id}/${actor.slug}`"
					class="nolink"
				>{{ actor.name }}</Link>
			</li>
		</ul>

		<ul
			class="row tags nolist"
			:title="scene.tags.map((tag) => tag.name).join(', ')"
		>
			<li
				v-for="tag in scene.tags"
				:key="`tag-${scene.id}-${tag.id}`"
				class="tag"
			>
				<Link
					:href="`/tag/${tag.slug}`"
					class="nolink"
				>{{ tag.name }}</Link>
			</li>
		</ul>
	</div>
</template>

<script setup>
import { format } from 'date-fns';

defineProps({
	scene: {
		type: Object,
		default: null,
	},
});
</script>

<style scoped>
.tile {
	width: 100%;
	overflow: hidden;
	background: var(--background-base);
	border-radius: .25rem;
	box-shadow: 0 0 3px var(--shadow-weak-30);
}

.poster {
	display: block;
	height: 14rem;
	border-radius: .25rem .25rem 0 0;
	overflow: hidden;
}

.thumbnail {
	height: 100%;
	width: 100%;
	object-fit: cover;
	background-size: cover;
	background-position: center;
}

.meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .4rem .5rem;
	border-radius: 0 0 .25rem .25rem;
	margin-bottom: .5rem;
	font-size: .8rem;
	color: var(--text-light);
	background: var(--shadow-strong-30);
	box-shadow: 0 0 3px var(--shadow);
}

.channel {
	display: inline-flex;
	align-items: center;
	font-weight: bold;
}

.favicon-link {
	display: inline-flex;
}

.favicon {
	width: 1rem;
	height: 1rem;
	margin-right: .5rem;
}

.row {
	margin: 0 .5rem .25rem .5rem;
	font-size: .9rem;
}

.title {
	display: block;
	margin-bottom: .4rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: bold;
}

.actor:hover,
.tag:hover {
	color: var(--primary);
}

.actors {
	height: 1rem;
	overflow: hidden;
	white-space: pre-wrap;
}

.actor {
	&:not(:last-child)::after {
		content: ',\0020';
	}
}

.tags {
	height: 1.25rem;
	overflow: hidden;
}

.tag {
	margin: 0 .5rem .25rem 0;
	padding: .1rem 0;
	color: var(--shadow-strong-10);
	font-size: .75rem;
}
</style>