2023-10-02 21:04:40 +02:00
|
|
|
import { BrandPill } from "@/components/layout/BrandPill";
|
2023-07-23 15:00:08 +02:00
|
|
|
import { Player } from "@/components/player";
|
2023-09-30 20:57:00 +02:00
|
|
|
import { usePlayer } from "@/components/player/hooks/usePlayer";
|
2023-10-02 21:04:40 +02:00
|
|
|
import { useShouldShowControls } from "@/components/player/hooks/useShouldShowControls";
|
2023-10-01 21:08:26 +02:00
|
|
|
import { ScrapingPart } from "@/pages/parts/player/ScrapingPart";
|
2023-09-30 20:57:00 +02:00
|
|
|
import { playerStatus } from "@/stores/player/slices/source";
|
2023-07-23 15:00:08 +02:00
|
|
|
|
|
|
|
export function PlayerView() {
|
2023-10-02 21:04:40 +02:00
|
|
|
const { status, setScrapeStatus } = usePlayer();
|
|
|
|
const desktopControlsVisible = useShouldShowControls();
|
2023-10-01 17:34:37 +02:00
|
|
|
|
2023-07-23 15:00:08 +02:00
|
|
|
return (
|
2023-10-01 17:34:37 +02:00
|
|
|
<Player.Container onLoad={setScrapeStatus}>
|
2023-10-02 21:04:40 +02:00
|
|
|
{status === playerStatus.SCRAPING ? (
|
|
|
|
<ScrapingPart
|
|
|
|
media={{
|
|
|
|
type: "movie",
|
2023-10-03 20:24:09 +02:00
|
|
|
title:
|
|
|
|
"Everything Everywhere All At Once bsbasjkdsakjdashjdasjhkds",
|
2023-10-02 21:04:40 +02:00
|
|
|
tmdbId: "545611",
|
|
|
|
releaseYear: 2022,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
|
|
|
|
<Player.BlackOverlay show={desktopControlsVisible} />
|
|
|
|
<Player.TopControls show={desktopControlsVisible}>
|
|
|
|
<div className="grid grid-cols-[1fr,auto] xl:grid-cols-3 items-center">
|
|
|
|
<div className="flex space-x-3 items-center">
|
|
|
|
<Player.BackLink />
|
|
|
|
<Player.BookmarkButton />
|
|
|
|
</div>
|
|
|
|
<div className="text-center hidden xl:flex justify-center items-center">
|
|
|
|
<span className="text-white font-medium mr-3">S1 E5</span>
|
|
|
|
<span className="text-type-secondary font-medium">
|
|
|
|
Mr. Jeebaloo discovers Atlantis
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end">
|
|
|
|
<BrandPill />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Player.TopControls>
|
|
|
|
<Player.BottomControls show={desktopControlsVisible}>
|
2023-10-01 21:08:26 +02:00
|
|
|
<Player.ProgressBar />
|
|
|
|
<div className="flex justify-between">
|
|
|
|
<div className="flex space-x-3 items-center">
|
|
|
|
<Player.Pause />
|
|
|
|
<Player.SkipBackward />
|
|
|
|
<Player.SkipForward />
|
|
|
|
<Player.Time />
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<Player.Fullscreen />
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-01 17:34:37 +02:00
|
|
|
</Player.BottomControls>
|
2023-07-23 15:00:08 +02:00
|
|
|
</Player.Container>
|
|
|
|
);
|
|
|
|
}
|