koel/resources/assets/js/components/ui/YouTubeVideoItem.vue

50 lines
999 B
Vue
Raw Normal View History

<template>
<a :href="url" data-testid="youtube-search-result" role="button" @click.prevent="play">
<img :alt="video.snippet.title" :src="video.snippet.thumbnails.default.url" width="90">
<div class="meta">
<h3 class="title">{{ video.snippet.title }}</h3>
<p class="desc">{{ video.snippet.description }}</p>
</div>
</a>
</template>
<script lang="ts" setup>
import { computed, toRefs } from 'vue'
import { youTubeService } from '@/services'
const props = defineProps<{ video: YouTubeVideo }>()
const { video } = toRefs(props)
const url = computed(() => `https://youtu.be/${video.value.id.videoId}`)
const play = () => youTubeService.play(video.value)
</script>
<style lang="scss" scoped>
a {
display: flex;
2022-07-07 22:57:25 +00:00
gap: 10px;
&:hover, &:active, &:focus {
color: var(--color-text-primary);
}
}
.title {
font-size: 1.1rem;
margin-bottom: .4rem;
}
.desc {
font-size: .9rem;
}
img {
align-self: self-start;
}
2022-07-07 22:57:25 +00:00
.meta {
overflow-wrap: anywhere;
}
</style>