mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
154 lines
4.2 KiB
TypeScript
154 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import { useCallback, useEffect, useRef, useState } from "react";
|
|
import { Box, Spinner, Center, Text } from "@chakra-ui/react";
|
|
import { useRouter, useParams } from "next/navigation";
|
|
import DailyIframe, { DailyCall } from "@daily-co/daily-js";
|
|
import type { components } from "../../reflector-api";
|
|
import { useAuth } from "../../lib/AuthProvider";
|
|
import {
|
|
ConsentDialogButton,
|
|
recordingTypeRequiresConsent,
|
|
} from "../../lib/consent";
|
|
import { useRoomJoinMeeting } from "../../lib/apiHooks";
|
|
import { assertExists } from "../../lib/utils";
|
|
|
|
type Meeting = components["schemas"]["Meeting"];
|
|
|
|
interface DailyRoomProps {
|
|
meeting: Meeting;
|
|
}
|
|
|
|
export default function DailyRoom({ meeting }: DailyRoomProps) {
|
|
const router = useRouter();
|
|
const params = useParams();
|
|
const auth = useAuth();
|
|
const authLastUserId = auth.lastUserId;
|
|
const containerRef = useRef<HTMLDivElement>(null);
|
|
const joinMutation = useRoomJoinMeeting();
|
|
const [joinedMeeting, setJoinedMeeting] = useState<Meeting | null>(null);
|
|
|
|
const roomName = params?.roomName as string;
|
|
|
|
useEffect(() => {
|
|
if (authLastUserId === undefined || !meeting?.id || !roomName) return;
|
|
|
|
const join = async () => {
|
|
try {
|
|
const result = await joinMutation.mutateAsync({
|
|
params: {
|
|
path: {
|
|
room_name: roomName,
|
|
meeting_id: meeting.id,
|
|
},
|
|
},
|
|
});
|
|
setJoinedMeeting(result);
|
|
} catch (error) {
|
|
console.error("Failed to join meeting:", error);
|
|
}
|
|
};
|
|
|
|
join();
|
|
}, [meeting?.id, roomName, authLastUserId]);
|
|
|
|
const roomUrl = joinedMeeting?.host_room_url || joinedMeeting?.room_url;
|
|
|
|
const handleLeave = useCallback(() => {
|
|
router.push("/browse");
|
|
}, [router]);
|
|
|
|
useEffect(() => {
|
|
if (authLastUserId === undefined || !roomUrl || !containerRef.current)
|
|
return;
|
|
|
|
let frame: DailyCall | null = null;
|
|
let destroyed = false;
|
|
|
|
const createAndJoin = async () => {
|
|
try {
|
|
const existingFrame = DailyIframe.getCallInstance();
|
|
if (existingFrame) {
|
|
await existingFrame.destroy();
|
|
}
|
|
|
|
frame = DailyIframe.createFrame(containerRef.current!, {
|
|
iframeStyle: {
|
|
width: "100vw",
|
|
height: "100vh",
|
|
border: "none",
|
|
},
|
|
showLeaveButton: true,
|
|
showFullscreenButton: true,
|
|
});
|
|
|
|
if (destroyed) {
|
|
await frame.destroy();
|
|
return;
|
|
}
|
|
|
|
frame.on("left-meeting", handleLeave);
|
|
|
|
// TODO this method must not ignore no-recording option
|
|
// TODO this method is here to make dev environments work in some cases (not examined which)
|
|
frame.on("joined-meeting", async () => {
|
|
try {
|
|
assertExists(
|
|
frame,
|
|
"frame object got lost somewhere after frame.on was called",
|
|
).startRecording({ type: "raw-tracks" });
|
|
} catch (error) {
|
|
console.error("Failed to start recording:", error);
|
|
}
|
|
});
|
|
|
|
await frame.join({ url: roomUrl });
|
|
} catch (error) {
|
|
console.error("Error creating Daily frame:", error);
|
|
}
|
|
};
|
|
|
|
createAndJoin().catch((error) => {
|
|
console.error("Failed to create and join meeting:", error);
|
|
});
|
|
|
|
return () => {
|
|
destroyed = true;
|
|
if (frame) {
|
|
frame.destroy().catch((e) => {
|
|
console.error("Error destroying frame:", e);
|
|
});
|
|
}
|
|
};
|
|
}, [roomUrl, authLastUserId, handleLeave]);
|
|
|
|
if (authLastUserId === undefined) {
|
|
return (
|
|
<Center width="100vw" height="100vh">
|
|
<Spinner size="xl" />
|
|
</Center>
|
|
);
|
|
}
|
|
|
|
if (joinMutation.isError) {
|
|
return (
|
|
<Center width="100vw" height="100vh">
|
|
<Text color="red.500">Failed to join meeting. Please try again.</Text>
|
|
</Center>
|
|
);
|
|
}
|
|
|
|
if (!roomUrl) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<Box position="relative" width="100vw" height="100vh">
|
|
<div ref={containerRef} style={{ width: "100%", height: "100%" }} />
|
|
{meeting.recording_type &&
|
|
recordingTypeRequiresConsent(meeting.recording_type) &&
|
|
meeting.id && <ConsentDialogButton meetingId={meeting.id} />}
|
|
</Box>
|
|
);
|
|
}
|