2024-04-16 20:20:30 +02:00
|
|
|
<template>
|
2024-04-21 04:21:43 +02:00
|
|
|
<div class="h-screen overflow-hidden">
|
2024-04-16 20:20:30 +02:00
|
|
|
<MainHeader />
|
2024-04-26 15:40:08 +02:00
|
|
|
<div class="flex flex-col text-white gap-5 mt-14 p-5 overflow-y-scroll h-[calc(100vh-3.5rem)]">
|
2024-04-18 00:54:47 +02:00
|
|
|
<!-- <button @click="deletePlaylist">
|
2024-04-18 00:44:18 +02:00
|
|
|
Delete Playlist
|
2024-04-18 00:54:47 +02:00
|
|
|
</button> -->
|
2024-04-26 15:40:08 +02:00
|
|
|
<div v-for="p in playlist" class="relative flex flex-row gap-4 h-36 bg-[#63636383] rounded-xl font-dm overflow-hidden">
|
|
|
|
<div class="absolute top-0 left-0 w-full h-full bg-[#a1a1a141] transition-all duration-300" :style="`width: calc((${p.partsdownloaded} / ${p.partsleft}) * 100%);`"></div>
|
|
|
|
<div class="absolute h-full w-full flex flex-row gap-3 p-3.5">
|
|
|
|
<div v-if="p.service === 'CR'" class="flex w-48 min-w-48">
|
|
|
|
<img :src="(p.media as CrunchyEpisode).images.thumbnail[0].find((p) => p.height === 1080)?.source" alt="Image" class="object-cover rounded-lg" />
|
2024-04-22 03:12:21 +02:00
|
|
|
</div>
|
2024-04-26 15:40:08 +02:00
|
|
|
<div v-if="p.service === 'ADN'" class="flex min-w-52 w-52">
|
|
|
|
<img :src="(p.media as ADNEpisode).image2x" alt="Image" class="object-cover rounded-lg" />
|
2024-04-22 03:12:21 +02:00
|
|
|
</div>
|
2024-04-26 15:40:08 +02:00
|
|
|
<div class="flex flex-col w-full">
|
|
|
|
<div class="flex flex-row h-full">
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<div v-if="p.status === 'waiting'" class="flex flex-row items-center justify-center gap-1 text-xs capitalize p-1.5 bg-[#866332] rounded-lg">
|
|
|
|
<Icon name="mdi:clock" class="h-3.5 w-3.5 text-white" />
|
|
|
|
{{ p.status }}
|
|
|
|
</div>
|
|
|
|
<div v-if="p.status === 'preparing'" class="flex flex-row items-center justify-center gap-1 text-xs capitalize p-1.5 bg-[#866332] rounded-lg">
|
|
|
|
<Icon name="mdi:clock" class="h-3.5 w-3.5 text-white" />
|
|
|
|
{{ p.status }}
|
|
|
|
</div>
|
|
|
|
<div v-if="p.status === 'downloading'" class="flex flex-row items-center justify-center gap-1 text-xs capitalize p-1.5 bg-[#60501b] rounded-lg">
|
|
|
|
<Icon name="mdi:loading" class="h-3.5 w-3.5 text-white animate-spin" />
|
|
|
|
{{ p.status }}
|
|
|
|
</div>
|
|
|
|
<div v-if="p.status === 'merging'" class="flex flex-row items-center justify-center gap-1 text-xs capitalize p-1.5 bg-[#866332] rounded-lg">
|
|
|
|
<Icon name="mdi:loading" class="h-3.5 w-3.5 text-white animate-spin" />
|
|
|
|
{{ p.status }}
|
|
|
|
</div>
|
|
|
|
<div v-if="p.status === 'completed'" class="flex flex-row items-center justify-center gap-1 text-xs capitalize p-1.5 bg-[#266326] rounded-lg">
|
|
|
|
<Icon name="material-symbols:check" class="h-3.5 w-3.5 text-white" />
|
|
|
|
{{ p.status }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="text-xs capitalize ml-auto">
|
|
|
|
{{ p.service === 'CR' ? 'Crunchyroll' : 'ADN' }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div v-if="p.service === 'CR'" class="text-base capitalize h-full flex items-center">
|
|
|
|
{{ (p.media as CrunchyEpisode).series_title }} Season {{ (p.media as CrunchyEpisode).season_number }} Episode {{ (p.media as CrunchyEpisode).episode_number }}
|
|
|
|
</div>
|
|
|
|
<div v-if="p.service === 'ADN'" class="text-base capitalize h-full">
|
|
|
|
{{ (p.media as ADNEpisode).show.title }} Season {{ (p.media as ADNEpisode).season ? (p.media as ADNEpisode).season : 1 }} Episode
|
|
|
|
{{ (p.media as ADNEpisode).shortNumber }}
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-row gap-2 h-full items-end">
|
|
|
|
<div class="text-xs">{{ p.quality }}p</div>
|
|
|
|
<div class="text-xs uppercase">{{ p.format }}</div>
|
|
|
|
<div class="text-xs">Dubs: {{ p.dub.map((t) => t.name).join(', ') }}</div>
|
|
|
|
<div class="text-xs">Subs: {{ p.sub.length !== 0 ? p.sub.map((t) => t.name).join(', ') : '-' }}</div>
|
|
|
|
<div v-if="p.partsleft && p.status === 'downloading'" class="text-xs ml-auto">{{ p.partsdownloaded }}/{{ p.partsleft }}</div>
|
|
|
|
<div v-if="p.downloadspeed && p.status === 'downloading'" class="text-xs">{{ p.downloadspeed }} MB/s</div>
|
|
|
|
</div>
|
2024-04-16 20:20:30 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-23 00:27:24 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-04-16 20:20:30 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-04-23 00:27:24 +02:00
|
|
|
import type { ADNEpisode } from '~/components/ADN/Types'
|
2024-04-16 20:20:30 +02:00
|
|
|
import type { CrunchyEpisode } from '~/components/Episode/Types'
|
|
|
|
|
|
|
|
const playlist = ref<
|
|
|
|
Array<{
|
|
|
|
id: number
|
|
|
|
status: string
|
2024-04-23 00:27:24 +02:00
|
|
|
media: CrunchyEpisode | ADNEpisode
|
2024-04-16 20:20:30 +02:00
|
|
|
dub: Array<{ locale: string; name: string }>
|
|
|
|
sub: Array<{ locale: string; name: string }>
|
2024-04-18 00:44:18 +02:00
|
|
|
dir: string
|
|
|
|
partsleft: number
|
|
|
|
partsdownloaded: number
|
|
|
|
downloadspeed: number
|
2024-04-21 14:20:41 +02:00
|
|
|
quality: number
|
2024-04-22 03:12:21 +02:00
|
|
|
service: string
|
|
|
|
format: string
|
2024-04-16 20:20:30 +02:00
|
|
|
}>
|
|
|
|
>()
|
|
|
|
|
|
|
|
const getPlaylist = async () => {
|
|
|
|
const { data, error } = await useFetch<
|
|
|
|
Array<{
|
|
|
|
id: number
|
|
|
|
status: string
|
2024-04-23 00:27:24 +02:00
|
|
|
media: CrunchyEpisode | ADNEpisode
|
2024-04-16 20:20:30 +02:00
|
|
|
dub: Array<{ locale: string; name: string }>
|
|
|
|
sub: Array<{ locale: string; name: string }>
|
2024-04-18 00:44:18 +02:00
|
|
|
dir: string
|
|
|
|
partsleft: number
|
2024-04-16 20:20:30 +02:00
|
|
|
partsdownloaded: number
|
2024-04-18 00:44:18 +02:00
|
|
|
downloadspeed: number
|
2024-04-21 14:20:41 +02:00
|
|
|
quality: number
|
2024-04-22 03:12:21 +02:00
|
|
|
service: string
|
|
|
|
format: string
|
2024-04-16 20:20:30 +02:00
|
|
|
}>
|
2024-04-22 03:12:21 +02:00
|
|
|
>('http://localhost:8080/api/service/playlist')
|
2024-04-16 20:20:30 +02:00
|
|
|
|
|
|
|
if (error.value) {
|
|
|
|
alert(error.value)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data.value) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-04-17 17:46:08 +02:00
|
|
|
playlist.value = data.value
|
2024-04-16 20:20:30 +02:00
|
|
|
}
|
|
|
|
|
2024-04-18 00:44:18 +02:00
|
|
|
const deletePlaylist = async () => {
|
2024-04-22 03:12:21 +02:00
|
|
|
const { data, error } = await useFetch('http://localhost:8080/api/service/playlist', {
|
2024-04-21 14:20:41 +02:00
|
|
|
method: 'delete'
|
2024-04-18 00:44:18 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
if (error.value) {
|
|
|
|
alert(error.value)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data.value) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-16 20:20:30 +02:00
|
|
|
onMounted(() => {
|
|
|
|
getPlaylist()
|
|
|
|
|
2024-04-20 17:45:32 +02:00
|
|
|
setInterval(getPlaylist, 1000)
|
2024-04-16 20:20:30 +02:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2024-04-26 15:40:08 +02:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: none;
|
|
|
|
background-color: none;
|
|
|
|
background: transparent;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-dm {
|
|
|
|
font-family: 'DM Sans', sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-protest {
|
|
|
|
font-family: 'Protest Riot', sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-dm-big {
|
|
|
|
font-family: 'DM Sans', sans-serif;
|
|
|
|
font-weight: 1000;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2024-04-16 20:20:30 +02:00
|
|
|
.loading-a {
|
|
|
|
animation: animation infinite 3s;
|
|
|
|
}
|
|
|
|
|
2024-04-21 04:21:43 +02:00
|
|
|
::-webkit-scrollbar-track {
|
2024-04-26 15:40:08 +02:00
|
|
|
background: #383838;
|
2024-04-21 04:21:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: #cac9c9;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle on hover */
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
}
|
|
|
|
|
2024-04-16 20:20:30 +02:00
|
|
|
@keyframes animation {
|
|
|
|
0% {
|
|
|
|
left: 0%;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
left: 88%;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
left: 0%;
|
|
|
|
}
|
|
|
|
}
|
2024-04-30 03:20:47 +02:00
|
|
|
|
|
|
|
@keyframes fadein {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
animation: fadein 0.5s;
|
|
|
|
}
|
2024-04-16 20:20:30 +02:00
|
|
|
</style>
|