Improved video player

This commit is contained in:
Aleksi Lassila
2023-06-21 21:35:29 +03:00
parent be574563d4
commit a7f9fca849
19 changed files with 921 additions and 748 deletions

View File

@@ -0,0 +1,152 @@
<script lang="ts">
import { onMount } from 'svelte';
import { formatSize } from '$lib/utils';
import Button from '../Ui/Button.svelte';
import { DotFilled, Plus } from 'radix-icons-svelte';
import RequestModal from '../RequestModal/RequestModal.svelte';
import IconButton from '../IconButton.svelte';
import classNames from 'classnames';
import VideoPlayer from '../VideoPlayer/VideoPlayer.svelte';
let isRequestModalVisible = false;
export let tmdbId: string;
export let jellyfinStreamDisabled;
export let openJellyfinStream;
let response;
const headerStyle = 'uppercase tracking-widest font-bold';
function refetch() {
response = fetch(`/movie/${tmdbId}`).then((res) => res.json());
}
let addToRadarrLoading = false;
function addToRadarr() {
if (!tmdbId || addToRadarrLoading) return;
addToRadarrLoading = true;
fetch(`/movie/${tmdbId}/addToRadarr`, {
method: 'POST'
})
.then((res) => {
if (res.ok) refetch();
})
.finally(() => (addToRadarrLoading = false));
}
function openRequestModal() {
isRequestModalVisible = true;
}
onMount(() => {
refetch();
});
</script>
{#await response then data}
{#if data}
<div class="flex flex-col gap-8 p-8">
{#if !data.canStream && !data.isDownloading}
<div>
<h1 class="text-lg mb-1 font-medium tracking-wide">No sources found</h1>
<p class="text-zinc-300">
No local or remote sources found for this title. You can configure your sources on the <a
href="/sources"
class="text-amber-200 hover:text-amber-100">sources</a
> page.
</p>
</div>
{/if}
{#if data.isAdded && data.radarrMovie}
<div class="flex flex-col gap-2">
<div class="flex items-center gap-2">
<div class={headerStyle}>Local Library</div>
<IconButton on:click={openRequestModal}>
<Plus size="20" />
</IconButton>
</div>
{#each data.radarrDownload || [] as downloadingFile}
<div
class={classNames('border-l-2 p-1 px-4 flex justify-between items-center py-1', {
'border-purple-400': downloadingFile.status === 'downloading',
'border-amber-400': downloadingFile.status !== 'downloading'
})}
>
<div class="flex gap-1 items-center">
<b class="">{downloadingFile.quality.quality.resolution}p</b>
<DotFilled class="text-zinc-300" />
<h2 class="text-zinc-200 text-sm">{formatSize(downloadingFile.size)} on disk</h2>
<DotFilled class="text-zinc-300" />
<h2 class="uppercase text-zinc-200 text-sm">
{downloadingFile.quality.quality.source}
</h2>
<DotFilled class="text-zinc-300" />
<h2 class="text-zinc-200 text-sm">
Completed in {downloadingFile.timeleft}
</h2>
</div>
<Button size="sm" disabled={true}
>{downloadingFile.status === 'downloding'
? 'Downloading...'
: 'Importing...'}</Button
>
</div>
{/each}
{#each data?.radarrMovie?.movieFile ? [data.radarrMovie.movieFile] : [] as movieFile (movieFile.id)}
<div class="border-l-2 border-zinc-200 p-1 px-4 flex justify-between items-center my-1">
<div class="flex gap-1 items-center">
<b class="">{movieFile.quality.quality.resolution}p</b>
<DotFilled class="text-zinc-300" />
<h2 class="text-zinc-200 text-sm">{formatSize(movieFile.size)} on disk</h2>
<DotFilled class="text-zinc-300" />
<h2 class="uppercase text-zinc-200 text-sm">
{movieFile.quality.quality.source}
</h2>
<DotFilled class="text-zinc-300" />
<h2 class="uppercase text-zinc-200 text-sm">
{movieFile.mediaInfo.videoCodec}
</h2>
</div>
<Button
size="sm"
on:click={() => openJellyfinStream()}
disabled={jellyfinStreamDisabled}>Stream</Button
>
</div>
{/each}
{#if !data?.radarrMovie?.movieFile && !data.radarrDownload}
<div class="text-zinc-400 text-sm font-light">Click + to add files</div>
{/if}
</div>
{/if}
</div>
<div class="flex gap-4 items-center bg-black p-8 py-4 empty:hidden">
{#if !data.isAdded || data.hasLocalFiles}
{#if !data.isAdded}
<Button on:click={() => addToRadarr()} disabled={addToRadarrLoading}>Add to Radarr</Button
>
{/if}
{#if data.hasLocalFiles}
<Button type="secondary">Manage Local Files</Button>
{/if}
{/if}
</div>
{#if data.isAdded && data.radarrMovie}
<RequestModal
bind:visible={isRequestModalVisible}
radarrId={data.radarrMovie.id}
on:download={() => refetch()}
/>
{/if}
{:else}
no data
{/if}
{:catch err}
Could not load local movie data.
{JSON.stringify(err)}
{/await}

View File

@@ -1,21 +1,29 @@
<script lang="ts">
import { ChevronDown, Clock } from 'radix-icons-svelte';
import { onMount } from 'svelte';
import classNames from 'classnames';
import { fade, fly, blur, slide } from 'svelte/transition';
import { fade, fly } from 'svelte/transition';
import { TMDB_IMAGES } from '$lib/constants';
import Button from '../Ui/Button.svelte';
import type { CastMember, TmdbMovie, Video } from '$lib/tmdb-api';
import { fetchTmdbMovieCredits, fetchTmdbMovieVideos } from '$lib/tmdb-api';
import PlaybackDetails from './PlaybackDetails.svelte';
import VideoPlayer from '../VideoPlayer/VideoPlayer.svelte';
import { getJellyfinItemByTmdbId } from '$lib/jellyfin/jellyfin';
import HeightHider from '../HeightHider.svelte';
export let movie: TmdbMovie;
export let videos: Video[];
export let castMembers: CastMember[];
export let showDetails = false;
export let trailer = true;
let showTrailer = false;
let focusTrailer = false;
let trailerStartTime = 0;
let detailsVisible = showDetails;
let videoPlayerVisible = false;
let streamButtonDisabled = true;
let jellyfinId;
let video;
$: video = videos?.filter((v) => v.site === 'YouTube' && v.type === 'Trailer')?.[0];
@@ -65,7 +73,7 @@
let timeout;
$: {
fadeIndex = 0;
console.log('ran for ', movie?.id);
streamButtonDisabled = true;
if (movie) {
showTrailer = false;
if (timeout) clearTimeout(timeout);
@@ -76,187 +84,216 @@
trailerStartTime = Date.now();
}
}, 2500);
}
if (movie) {
fetchTmdbMovieVideos(String(movie.id)).then((result) => {
videos = result;
});
}
if (movie) {
fetchTmdbMovieCredits(String(movie.id)).then((result) => {
castMembers = result;
});
getJellyfinItemByTmdbId(String(movie.id)).then((r) => {
if (!r) return;
streamButtonDisabled = !r;
if (r.Id) jellyfinId = r.Id;
});
}
}
let localDetailsTop;
</script>
<div class="h-screen w-screen relative overflow-hidden">
{#key video?.key + movie.id}
<div
class="absolute inset-0 bg-center bg-cover transition-[background-image] duration-500 delay-500"
style={"background-image: url('" + TMDB_IMAGES + movie.backdrop_path + "');"}
transition:fade
/>
<div class="youtube-container absolute h-full scale-[150%] hidden sm:block" transition:fade>
{#if video?.key}
<iframe
class={classNames('transition-opacity', {
'opacity-100': showTrailer,
'opacity-0': !showTrailer
})}
src={'https://www.youtube.com/embed/' +
video.key +
'?autoplay=1&mute=1&loop=1&controls=0&modestbranding=1&playsinline=1&rel=0&enablejsapi=1'}
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
/>
{/if}
</div>
{/key}
{#key movie.id}
<div
class={classNames(
'bg-gradient-to-b from-darken via-20% via-transparent transition-opacity absolute inset-0 z-[1]',
{
'opacity-100': focusTrailer,
'opacity-0': !focusTrailer
}
)}
/>
<div
class={classNames(
'h-full w-full px-16 pb-8 pt-32',
'grid grid-cols-[1fr_max-content] grid-rows-[1fr_min-content] gap-x-16 gap-y-8 relative z-[2]',
'transition-colors',
{
'bg-darken': !focusTrailer,
'bg-transparent': focusTrailer
}
)}
>
<div class="flex flex-col justify-self-start min-w-0 row-span-full">
<div
class="relative"
style={opacityStyle}
out:fade={{ duration: 200 }}
in:fly={{ x: -20, duration: 200, delay: 400 }}
>
<h2 class="text-zinc-300 text-sm self-end">
<span class="font-bold uppercase tracking-wider"
>{monthNames[releaseDate.getMonth()]}</span
>
{releaseDate.getFullYear()}
</h2>
<h2
class="tracking-wider font-display font-extrabold text-amber-300 absolute opacity-10 text-8xl -ml-6 mt-8"
>
<slot name="reason">Popular Now</slot>
</h2>
<h1 class="uppercase text-8xl font-bold font-display z-[1] relative">
{movie.original_title}
</h1>
</div>
<div
class="mt-auto max-w-3xl flex flex-col gap-4"
style={opacityStyle}
out:fade={{ duration: 200 }}
in:fly={{ x: -20, duration: 200, delay: 600 }}
>
<div class="text-xl font-semibold tracking-wider">{movie.tagline}</div>
<div
class="tracking-wider text-zinc-200 font-light leading-6 pl-4 border-l-2 border-zinc-300"
>
{movie.overview}
</div>
</div>
<div
class="flex gap-6 mt-10"
out:fade={{ duration: 200 }}
in:fly={{ x: -20, duration: 200, delay: 600 }}
>
<div class="flex gap-1">
<div style={opacityStyle}>
<Button size="lg">Stream</Button>
</div>
<div
class="hidden items-center justify-center border-2 border-white w-10 cursor-pointer hover:bg-white hover:text-zinc-900 transition-colors"
>
<ChevronDown size="20" />
</div>
</div>
<Button
size="lg"
type="secondary"
on:mouseover={() => (focusTrailer = trailer)}
on:mouseleave={() => (focusTrailer = false)}
on:click={openTrailer}>Watch Trailer</Button
>
</div>
</div>
<div class="flex flex-col gap-6 max-w-[14rem] row-span-full" style={opacityStyle} out:fade>
<h3 class="text-xs tracking-wide uppercase" in:fade={getFade(0)}>Details</h3>
<div class="flex flex-col gap-1">
<div class="tracking-widest font-extralight text-sm" in:fade={getFade(1)}>
{movie.genres.map((g) => g.name.charAt(0).toUpperCase() + g.name.slice(1)).join(', ')}
</div>
<div class="flex gap-1.5 items-center" in:fade={getFade(2)}>
<Clock size="14" />
<div class="tracking-widest font-extralight text-sm">
{Math.floor(movie.runtime / 60)}h {movie.runtime % 60}m
</div>
</div>
<div class="tracking-widest font-extralight text-sm" in:fade={getFade(3)}>
Currently <b>Streaming</b>
</div>
<a
href={'https://www.themoviedb.org/movie/' + movie.id}
target="_blank"
class="tracking-widest font-extralight text-sm"
in:fade={getFade(4)}
>
<b>{movie.vote_average.toFixed(1)}</b> TMDB
</a>
<div class="flex mt-4" in:fade={getFade(5)}>
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="text-white w-4"
><g
><path d="M0 0h24v24H0z" fill="none" /><path
d="M11.29 3.814l2.02 5.707.395 1.116.007-4.81.01-4.818h4.27L18 11.871c.003 5.98-.003 10.89-.015 10.9-.012.009-.209 0-.436-.027-.989-.118-2.29-.236-3.34-.282a14.57 14.57 0 0 1-.636-.038c-.003-.004-.273-.762-.776-2.184v-.004l-2.144-6.061-.34-.954-.008 4.586c-.006 4.365-.01 4.61-.057 4.61-.163 0-1.57.09-2.04.136-.308.027-.926.09-1.37.145-.446.051-.816.085-.823.078C6.006 22.77 6 17.867 6 11.883V1.002h.005V1h4.288l.028.08c.007.016.065.176.157.437l.641 1.778.173.496-.001.023z"
fill-rule="evenodd"
fill="currentColor"
/></g
></svg
>
</div>
</div>
{#if castMembers?.length > 0}
<h3 class="text-xs tracking-wide uppercase" in:fade={getFade(6)}>Starring</h3>
<div class="flex flex-col gap-1">
{#each castMembers.slice(0, 5) as a}
<a
href={'https://www.themoviedb.org/person/' + a.id}
target="_blank"
class="tracking-widest font-extralight text-sm"
in:fade={getFade(7)}>{a.name}</a
>
{/each}
<a
href={'https://www.themoviedb.org/movie/' + movie.id + '/cast'}
target="_blank"
class="tracking-widest font-extralight text-sm"
in:fade={getFade(8)}>View all...</a
>
</div>
<div class="grid">
<div
class="min-h-max h-screen w-screen overflow-hidden row-start-1 col-start-1 relative"
out:fade={{ duration }}
in:fade={{ delay: duration, duration }}
>
{#key video?.key + movie.id}
<div
class="absolute inset-0 bg-center bg-cover transition-[background-image] duration-500 delay-500"
style={"background-image: url('" + TMDB_IMAGES + movie.backdrop_path + "');"}
transition:fade
/>
<div class="youtube-container absolute h-full scale-[150%] hidden sm:block" transition:fade>
{#if video?.key}
<iframe
class={classNames('transition-opacity', {
'opacity-100': showTrailer,
'opacity-0': !showTrailer
})}
src={'https://www.youtube.com/embed/' +
video.key +
'?autoplay=1&mute=1&loop=1&controls=0&modestbranding=1&playsinline=1&rel=0&enablejsapi=1'}
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
/>
{/if}
</div>
<slot name="page-controls" />
</div>
{/key}
{/key}
{#key movie.id}
<div
class={classNames(
'bg-gradient-to-b from-darken via-20% via-transparent transition-opacity absolute inset-0 z-[1]',
{
'opacity-100': focusTrailer,
'opacity-0': !focusTrailer
}
)}
/>
<div
class={classNames(
'h-full w-full px-16 pb-8 pt-32',
'grid grid-cols-[1fr_max-content] grid-rows-[1fr_min-content] gap-x-16 gap-y-8 relative z-[2]',
'transition-colors',
{
'bg-darken': !focusTrailer,
'bg-transparent': focusTrailer
}
)}
>
<div class="flex flex-col justify-self-start min-w-0 row-span-full">
<div class="relative" style={opacityStyle} in:fly={{ x: -20, duration, delay: 400 }}>
<h2 class="text-zinc-300 text-sm self-end">
<span class="font-bold uppercase tracking-wider"
>{monthNames[releaseDate.getMonth()]}</span
>
{releaseDate.getFullYear()}
</h2>
<h2
class="tracking-wider font-display font-extrabold text-amber-300 absolute opacity-10 text-8xl -ml-6 mt-8"
>
<slot name="reason">Popular Now</slot>
</h2>
<h1 class="uppercase text-8xl font-bold font-display z-[1] relative">
{movie.original_title}
</h1>
</div>
<div
class="mt-auto max-w-3xl flex flex-col gap-4"
style={opacityStyle}
in:fly={{ x: -20, duration, delay: 600 }}
>
<div class="text-xl font-semibold tracking-wider">{movie.tagline}</div>
<div
class="tracking-wider text-zinc-200 font-light leading-6 pl-4 border-l-2 border-zinc-300"
>
{movie.overview}
</div>
</div>
<div class="flex gap-6 mt-10" in:fly={{ x: -20, duration, delay: 600 }}>
<div class="flex gap-1">
<div style={opacityStyle}>
<Button
disabled={streamButtonDisabled}
size="lg"
on:click={() => (videoPlayerVisible = true)}>Stream</Button
>
</div>
<div
class="hidden items-center justify-center border-2 border-white w-10 cursor-pointer hover:bg-white hover:text-zinc-900 transition-colors"
>
<ChevronDown size="20" />
</div>
</div>
<div style={opacityStyle} class:hidden={showDetails}>
<Button
size="lg"
type="secondary"
on:click={() => {
detailsVisible = true;
localDetailsTop?.scrollIntoView({ behavior: 'smooth' });
}}>Details</Button
>
</div>
<Button
size="lg"
type="secondary"
on:mouseover={() => (focusTrailer = trailer)}
on:mouseleave={() => (focusTrailer = false)}
on:click={openTrailer}>Watch Trailer</Button
>
</div>
</div>
<div class="flex flex-col gap-6 max-w-[14rem] row-span-full" style={opacityStyle}>
<h3 class="text-xs tracking-wide uppercase" in:fade={getFade(0)}>Details</h3>
<div class="flex flex-col gap-1">
<div class="tracking-widest font-extralight text-sm" in:fade={getFade(1)}>
{movie.genres.map((g) => g.name.charAt(0).toUpperCase() + g.name.slice(1)).join(', ')}
</div>
<div class="flex gap-1.5 items-center" in:fade={getFade(2)}>
<Clock size="14" />
<div class="tracking-widest font-extralight text-sm">
{Math.floor(movie.runtime / 60)}h {movie.runtime % 60}m
</div>
</div>
<div class="tracking-widest font-extralight text-sm" in:fade={getFade(3)}>
Currently <b>Streaming</b>
</div>
<a
href={'https://www.themoviedb.org/movie/' + movie.id}
target="_blank"
class="tracking-widest font-extralight text-sm"
in:fade={getFade(4)}
>
<b>{movie.vote_average.toFixed(1)}</b> TMDB
</a>
<div class="flex mt-4" in:fade={getFade(5)}>
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="text-white w-4"
><g
><path d="M0 0h24v24H0z" fill="none" /><path
d="M11.29 3.814l2.02 5.707.395 1.116.007-4.81.01-4.818h4.27L18 11.871c.003 5.98-.003 10.89-.015 10.9-.012.009-.209 0-.436-.027-.989-.118-2.29-.236-3.34-.282a14.57 14.57 0 0 1-.636-.038c-.003-.004-.273-.762-.776-2.184v-.004l-2.144-6.061-.34-.954-.008 4.586c-.006 4.365-.01 4.61-.057 4.61-.163 0-1.57.09-2.04.136-.308.027-.926.09-1.37.145-.446.051-.816.085-.823.078C6.006 22.77 6 17.867 6 11.883V1.002h.005V1h4.288l.028.08c.007.016.065.176.157.437l.641 1.778.173.496-.001.023z"
fill-rule="evenodd"
fill="currentColor"
/></g
></svg
>
</div>
</div>
{#if castMembers?.length > 0}
<h3 class="text-xs tracking-wide uppercase" in:fade={getFade(6)}>Starring</h3>
<div class="flex flex-col gap-1">
{#each castMembers.slice(0, 5) as a}
<a
href={'https://www.themoviedb.org/person/' + a.id}
target="_blank"
class="tracking-widest font-extralight text-sm"
in:fade={getFade(7)}>{a.name}</a
>
{/each}
<a
href={'https://www.themoviedb.org/movie/' + movie.id + '/cast'}
target="_blank"
class="tracking-widest font-extralight text-sm"
in:fade={getFade(8)}>View all...</a
>
</div>
{/if}
</div>
<slot name="page-controls" />
</div>
{/key}
</div>
</div>
<HeightHider visible={detailsVisible}>
<div bind:this={localDetailsTop} />
{#key movie.id}
<PlaybackDetails
openJellyfinStream={() => (videoPlayerVisible = true)}
jellyfinStreamDisabled={streamButtonDisabled}
tmdbId={movie.id}
/>
{/key}
</HeightHider>
{#if jellyfinId}
<VideoPlayer bind:visible={videoPlayerVisible} {jellyfinId} />
{/if}
<style>
.youtube-container {
overflow: hidden;

View File

@@ -1,134 +0,0 @@
<script lang="ts">
import { onMount } from 'svelte';
import { formatSize } from '$lib/utils';
import Button from '../Ui/Button.svelte';
import { DotFilled, Plus } from 'radix-icons-svelte';
import RequestModal from '../RequestModal/RequestModal.svelte';
import { addRadarrMovie, getQueuedById, getRadarrMovie } from '$lib/radarr/radarr';
import IconButton from '../IconButton.svelte';
import classNames from 'classnames';
import VideoPlayer from '../VideoPlayer/VideoPlayer.svelte';
import { getJellyfinItemByTmdbId } from '$lib/jellyfin/jellyfin';
let isRequestModalVisible = false;
export let tmdbId: string;
let videoPlayerVisible;
const { data: localResource, load, didLoad } = getRadarrMovie();
const { data: queueResponse, load: loadQueued } = getQueuedById();
const { data: addMovieResponse, loading: addMovieLoading, load: addToRadarr } = addRadarrMovie();
const { data: jellyfinData, load: loadJellyfinData } = getJellyfinItemByTmdbId();
function refreshRadarrMovie() {
if (tmdbId) {
load(tmdbId);
loadJellyfinData(tmdbId);
}
}
onMount(() => {
refreshRadarrMovie();
});
addMovieResponse.subscribe(() => {
if ($addMovieResponse) refreshRadarrMovie();
});
const headerStyle = 'uppercase tracking-widest font-bold';
function openRequestModal() {
if ($localResource) isRequestModalVisible = true;
}
localResource.subscribe((resource) => {
if (resource?.id) loadQueued(resource.id);
});
</script>
<div class="flex flex-col gap-8 p-8">
{#if !$didLoad}
Loading...
{:else if !$localResource?.movieFile}
<div>
<h1 class="text-lg mb-1 font-medium tracking-wide">No sources found</h1>
<p class="text-zinc-300">
No local or remote sources found for this title. You can configure your sources on the <a
href="/sources"
class="text-amber-200 hover:text-amber-100">sources</a
> page.
</p>
</div>
{/if}
{#if $localResource}
<div class="">
<div class="flex items-center gap-2 mb-4">
<div class={headerStyle}>Local Library</div>
<IconButton on:click={openRequestModal}>
<Plus size="20" />
</IconButton>
</div>
{#each $queueResponse || [] as downloadingFile}
<div
class={classNames('border-l-2 p-1 px-4 flex justify-between items-center py-1', {
'border-purple-400': downloadingFile.status === 'downloading',
'border-amber-400': downloadingFile.status !== 'downloading'
})}
>
<div class="flex gap-1 items-center">
<b class="">{downloadingFile.quality.quality.resolution}p</b>
<DotFilled class="text-zinc-300" />
<h2 class="text-zinc-200 text-sm">{formatSize(downloadingFile.size)} on disk</h2>
<DotFilled class="text-zinc-300" />
<h2 class="uppercase text-zinc-200 text-sm">
{downloadingFile.quality.quality.source}
</h2>
<DotFilled class="text-zinc-300" />
<h2 class="text-zinc-200 text-sm">
Completed in {downloadingFile.timeleft}
</h2>
</div>
<Button size="sm" disabled={true}
>{downloadingFile.status === 'downloding' ? 'Downloading...' : 'Importing...'}</Button
>
</div>
{/each}
{#each $localResource?.movieFile ? [$localResource.movieFile] : [] as movieFile (movieFile.id)}
<div class="border-l-2 border-zinc-200 p-1 px-4 flex justify-between items-center my-1">
<div class="flex gap-1 items-center">
<b class="">{movieFile.quality.quality.resolution}p</b>
<DotFilled class="text-zinc-300" />
<h2 class="text-zinc-200 text-sm">{formatSize(movieFile.size)} on disk</h2>
<DotFilled class="text-zinc-300" />
<h2 class="uppercase text-zinc-200 text-sm">
{movieFile.quality.quality.source}
</h2>
<DotFilled class="text-zinc-300" />
<h2 class="uppercase text-zinc-200 text-sm">
{movieFile.mediaInfo.videoCodec}
</h2>
</div>
<Button size="sm" on:click={() => (videoPlayerVisible = true)}>Stream</Button>
</div>
{/each}
</div>
{/if}
</div>
<div class="flex gap-4 items-center bg-black p-8 py-4 empty:hidden">
{#if !$localResource && $didLoad && tmdbId}
<Button on:click={() => addToRadarr(tmdbId)} disabled={$addMovieLoading}>Add to Radarr</Button>
{/if}
{#if $localResource?.movieFile}
<Button type="secondary">Manage Local Files</Button>
{/if}
</div>
{#if $localResource?.id}
<RequestModal
bind:visible={isRequestModalVisible}
radarrId={$localResource.id}
on:download={() => refreshRadarrMovie()}
/>
{/if}
{#if $jellyfinData?.Id}
<VideoPlayer bind:visible={videoPlayerVisible} jellyfinVideoId={$jellyfinData.Id} />
{/if}