import { ProviderControls, ScrapeMedia } from "@movie-web/providers"; import classNames from "classnames"; import { useEffect, useRef } from "react"; import type { AsyncReturnType } from "type-fest"; import { usePlayer } from "@/components/player/hooks/usePlayer"; import { ScrapeCard, ScrapeItem, } from "@/components/player/internals/ScrapeCard"; import { useListCenter, useScrape } from "@/hooks/useProviderScrape"; export interface ScrapingProps { media: ScrapeMedia; onGetStream?: (stream: AsyncReturnType) => void; } export function ScrapingPart(props: ScrapingProps) { const { playMedia } = usePlayer(); const { startScraping, sourceOrder, sources, currentSource } = useScrape(); const containerRef = useRef(null); const listRef = useRef(null); const renderedOnce = useListCenter( containerRef, listRef, sourceOrder, currentSource ); const started = useRef(false); useEffect(() => { if (started.current) return; started.current = true; (async () => { const output = await startScraping(props.media); props.onGetStream?.(output); })(); }, [startScraping, props, playMedia]); const currentProvider = sourceOrder.find( (s) => sources[s.id].status === "pending" ); const currentProviderIndex = sourceOrder.findIndex((provider) => currentProvider?.id === provider.id) ?? sourceOrder.length - 1; return (
{sourceOrder.map((order) => { const source = sources[order.id]; const distance = Math.abs( sourceOrder.findIndex((t) => t.id === order.id) - currentProviderIndex ); return (
0} percentage={source.percentage} >
0, })} > {order.children.map((embedId) => { const embed = sources[embedId]; return ( ); })}
); })}
); }