FreeTube/src/renderer/components/playlist-info/playlist-info.vue

45 lines
934 B
Vue

<template>
<div class="playlistInfo">
<div
class="playlistThumbnail"
>
<img
:src="thumbnail"
>
</div>
<h2>
{{ title }}
</h2>
<p>
{{ videoCount }} {{ $t("Playlist.Videos") }} - {{ viewCount }} {{ $t("Playlist.Views") }} -
<span v-if="infoSource !== 'local'">
{{ $t("Playlist.Last Updated On") }}
</span>
{{ lastUpdated }}
</p>
<p>
{{ description }}
</p>
<hr>
<div
class="playlistChannel"
@click="goToChannel"
>
<img :src="channelThumbnail">
<h3>
{{ channelName }}
</h3>
</div>
<br>
<ft-list-dropdown
:title="$t('Playlist.Share Playlist.Share Playlist')"
:label-names="shareHeaders"
:label-values="shareValues"
@click="sharePlaylist"
/>
</div>
</template>
<script src="./playlist-info.js" />
<style scoped src="./playlist-info.css" />