1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-23 15:07:43 +01:00
smov/src/pages/parts/player/ScrapingPart.tsx

138 lines
3.8 KiB
TypeScript
Raw Normal View History

import { ProviderControls, ScrapeMedia } from "@movie-web/providers";
2023-10-06 00:20:19 +02:00
import classNames from "classnames";
import { useEffect, useRef } from "react";
import type { AsyncReturnType } from "type-fest";
2023-11-10 22:14:41 +01:00
import {
scrapePartsToProviderMetric,
2023-11-10 22:14:41 +01:00
useReportProviders,
} from "@/backend/helpers/report";
import {
ScrapeCard,
ScrapeItem,
} from "@/components/player/internals/ScrapeCard";
import {
ScrapingItems,
ScrapingSegment,
useListCenter,
useScrape,
} from "@/hooks/useProviderScrape";
export interface ScrapingProps {
media: ScrapeMedia;
onGetStream?: (stream: AsyncReturnType<ProviderControls["runAll"]>) => void;
onResult?: (
sources: Record<string, ScrapingSegment>,
sourceOrder: ScrapingItems[]
) => void;
}
export function ScrapingPart(props: ScrapingProps) {
2023-11-10 22:14:41 +01:00
const { report } = useReportProviders();
const { startScraping, sourceOrder, sources, currentSource } = useScrape();
const containerRef = useRef<HTMLDivElement | null>(null);
const listRef = useRef<HTMLDivElement | null>(null);
2023-10-06 00:20:19 +02:00
const renderedOnce = useListCenter(
containerRef,
listRef,
sourceOrder,
currentSource
);
const resultRef = useRef({
sourceOrder,
sources,
});
useEffect(() => {
resultRef.current = {
sourceOrder,
sources,
};
}, [sourceOrder, sources]);
const started = useRef(false);
useEffect(() => {
if (started.current) return;
started.current = true;
(async () => {
const output = await startScraping(props.media);
props.onResult?.(
resultRef.current.sources,
resultRef.current.sourceOrder
);
2023-11-10 22:14:41 +01:00
report(
scrapePartsToProviderMetric(
props.media,
resultRef.current.sourceOrder,
resultRef.current.sources
2023-11-10 22:14:41 +01:00
)
);
props.onGetStream?.(output);
})();
}, [startScraping, props, report]);
const currentProvider = sourceOrder.find(
(s) => sources[s.id].status === "pending"
);
let currentProviderIndex = sourceOrder.findIndex(
(provider) => currentProvider?.id === provider.id
);
if (currentProviderIndex === -1)
currentProviderIndex = sourceOrder.length - 1;
return (
<div className="h-full w-full relative" ref={containerRef}>
2023-10-06 00:20:19 +02:00
<div
className={classNames({
"absolute transition-[transform,opacity] opacity-0": true,
"!opacity-100": renderedOnce,
})}
ref={listRef}
>
{sourceOrder.map((order) => {
const source = sources[order.id];
const distance = Math.abs(
sourceOrder.findIndex((t) => t.id === order.id) -
currentProviderIndex
);
return (
<div
className="transition-opacity duration-100"
style={{ opacity: Math.max(0, 1 - distance * 0.3) }}
key={order.id}
>
<ScrapeCard
id={order.id}
name={source.name}
status={source.status}
hasChildren={order.children.length > 0}
percentage={source.percentage}
>
<div
className={classNames({
"space-y-6 mt-8": order.children.length > 0,
})}
>
{order.children.map((embedId) => {
const embed = sources[embedId];
return (
<ScrapeItem
id={embedId}
name={embed.name}
status={embed.status}
percentage={embed.percentage}
key={embedId}
/>
);
})}
</div>
</ScrapeCard>
</div>
);
})}
</div>
</div>
);
}