mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-22 14:57:40 +01:00
20 lines
425 B
TypeScript
20 lines
425 B
TypeScript
|
import { useContext, useEffect } from "react";
|
||
|
import { VideoPlayerDispatchContext } from "../VideoContext";
|
||
|
|
||
|
interface SourceControlProps {
|
||
|
source: string;
|
||
|
}
|
||
|
|
||
|
export function SourceControl(props: SourceControlProps) {
|
||
|
const dispatch = useContext(VideoPlayerDispatchContext);
|
||
|
|
||
|
useEffect(() => {
|
||
|
dispatch({
|
||
|
type: "SET_SOURCE",
|
||
|
url: props.source,
|
||
|
});
|
||
|
}, [props.source, dispatch]);
|
||
|
|
||
|
return null;
|
||
|
}
|