2020-02-16 18:30:00 +00:00
|
|
|
<template>
|
|
|
|
<div class="playlistInfo">
|
|
|
|
<div
|
|
|
|
class="playlistThumbnail"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
:src="thumbnail"
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<h2>
|
|
|
|
{{ title }}
|
|
|
|
</h2>
|
|
|
|
<p>
|
2020-08-12 03:26:49 +00:00
|
|
|
{{ videoCount }} {{ $t("Playlist.Videos") }} - {{ viewCount }} {{ $t("Playlist.Views") }} -
|
2020-05-17 20:12:58 +00:00
|
|
|
<span v-if="infoSource !== 'local'">
|
2020-08-12 03:26:49 +00:00
|
|
|
{{ $t("Playlist.Last Updated On") }}
|
2020-05-17 20:12:58 +00:00
|
|
|
</span>
|
|
|
|
{{ lastUpdated }}
|
2020-02-16 18:30:00 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
{{ description }}
|
|
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<div
|
|
|
|
class="playlistChannel"
|
|
|
|
>
|
|
|
|
<img :src="channelThumbnail">
|
|
|
|
<h3>
|
|
|
|
{{ channelName }}
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<ft-list-dropdown
|
2020-08-12 03:26:49 +00:00
|
|
|
:title="$t('Playlist.Share Playlist.Share Playlist')"
|
2020-02-16 18:30:00 +00:00
|
|
|
:label-names="shareHeaders"
|
|
|
|
:label-values="shareValues"
|
|
|
|
@click="sharePlaylist"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./playlist-info.js" />
|
|
|
|
<style scoped src="./playlist-info.css" />
|