2023-01-24 18:12:37 +01:00
|
|
|
import { MWStreamQuality, MWStreamType } from "@/backend/helpers/streams";
|
2023-01-17 21:12:39 +01:00
|
|
|
import { useContext, useEffect, useRef } from "react";
|
2023-01-08 13:15:32 +01:00
|
|
|
import { VideoPlayerDispatchContext } from "../VideoContext";
|
|
|
|
|
|
|
|
interface SourceControlProps {
|
|
|
|
source: string;
|
2023-01-14 00:12:56 +01:00
|
|
|
type: MWStreamType;
|
2023-01-24 18:12:37 +01:00
|
|
|
quality: MWStreamQuality;
|
2023-01-08 13:15:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export function SourceControl(props: SourceControlProps) {
|
|
|
|
const dispatch = useContext(VideoPlayerDispatchContext);
|
2023-01-17 21:12:39 +01:00
|
|
|
const didInitialize = useRef(false);
|
2023-01-08 13:15:32 +01:00
|
|
|
|
|
|
|
useEffect(() => {
|
2023-01-17 21:12:39 +01:00
|
|
|
if (didInitialize.current) return;
|
2023-01-08 13:15:32 +01:00
|
|
|
dispatch({
|
|
|
|
type: "SET_SOURCE",
|
|
|
|
url: props.source,
|
2023-01-10 19:53:55 +01:00
|
|
|
sourceType: props.type,
|
2023-01-24 18:12:37 +01:00
|
|
|
quality: props.quality,
|
2023-01-08 13:15:32 +01:00
|
|
|
});
|
2023-01-17 21:12:39 +01:00
|
|
|
didInitialize.current = true;
|
2023-01-10 19:53:55 +01:00
|
|
|
}, [props, dispatch]);
|
2023-01-08 13:15:32 +01:00
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|