Skip to content

Commit

Permalink
fix: make the courseId come from url (#1574)
Browse files Browse the repository at this point in the history
  • Loading branch information
devsargam authored Nov 21, 2024
1 parent 315bba1 commit fb470b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/VideoPlayer2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ export const VideoPlayer: FunctionComponent<VideoPlayerProps> = ({
const [player, setPlayer] = useState<any>(null);
const searchParams = useSearchParams();
const vidUrl = options.sources[0].src;
const href = window.location.href;
const courseId = href.split('/')[4];

const togglePictureInPicture = async () => {
try {
Expand Down Expand Up @@ -476,9 +478,8 @@ export const VideoPlayer: FunctionComponent<VideoPlayerProps> = ({

if (isYoutubeUrl(vidUrl)) return <YoutubeRenderer url={vidUrl} />;

//TODO: Figure out how to get the courseId
if (appxVideoId)
return <AppxVideoPlayer courseId={'14'} videoId={appxVideoId} />;
return <AppxVideoPlayer courseId={courseId} videoId={appxVideoId} />;

return (
<div
Expand Down

0 comments on commit fb470b5

Please sign in to comment.