mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-21 14:47:41 +01:00
27 lines
723 B
TypeScript
27 lines
723 B
TypeScript
import { MWStreamQuality, MWStreamType } from "@/backend/helpers/streams";
|
|
import { useContext, useEffect, useRef } from "react";
|
|
import { VideoPlayerDispatchContext } from "../VideoContext";
|
|
|
|
interface SourceControlProps {
|
|
source: string;
|
|
type: MWStreamType;
|
|
quality: MWStreamQuality;
|
|
}
|
|
|
|
export function SourceControl(props: SourceControlProps) {
|
|
const dispatch = useContext(VideoPlayerDispatchContext);
|
|
const didInitialize = useRef(false);
|
|
|
|
useEffect(() => {
|
|
if (didInitialize.current) return;
|
|
dispatch({
|
|
type: "SET_SOURCE",
|
|
url: props.source,
|
|
sourceType: props.type,
|
|
quality: props.quality,
|
|
});
|
|
didInitialize.current = true;
|
|
}, [props, dispatch]);
|
|
|
|
return null;
|
|
}
|