mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* llm instructions * vibe dailyco * vibe dailyco * doc update (vibe) * dont show recording ui on call * stub processor (vibe) * stub processor (vibe) self-review * stub processor (vibe) self-review * chore(main): release 0.14.0 (#670) * Add multitrack pipeline * Mixdown audio tracks * Mixdown with pyav filter graph * Trigger multitrack processing for daily recordings * apply platform from envs in priority: non-dry * Use explicit track keys for processing * Align tracks of a multitrack recording * Generate waveforms for the mixed audio * Emit multriack pipeline events * Fix multitrack pipeline track alignment * dailico docs * Enable multitrack reprocessing * modal temp files uniform names, cleanup. remove llm temporary docs * docs cleanup * dont proceed with raw recordings if any of the downloads fail * dry transcription pipelines * remove is_miltitrack * comments * explicit dailyco room name * docs * remove stub data/method * frontend daily/whereby code self-review (no-mistake) * frontend daily/whereby code self-review (no-mistakes) * frontend daily/whereby code self-review (no-mistakes) * consent cleanup for multitrack (no-mistakes) * llm fun * remove extra comments * fix tests * merge migrations * Store participant names * Get participants by meeting session id * pop back main branch migration * s3 paddington (no-mistakes) * comment * pr comments * pr comments * pr comments * platform / meeting cleanup * Use participant names in summary generation * platform assignment to meeting at controller level * pr comment * room playform properly default none * room playform properly default none * restore migration lost * streaming WIP * extract storage / use common storage / proper env vars for storage * fix mocks tests * remove fall back * streaming for multifile * cenrtal storage abstraction (no-mistakes) * remove dead code / vars * Set participant user id for authenticated users * whereby recording name parsing fix * whereby recording name parsing fix * more file stream * storage dry + tests * remove homemade boto3 streaming and use proper boto * update migration guide * webhook creation script - print uuid --------- Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com> Co-authored-by: Mathieu Virbel <mat@meltingrocks.com> Co-authored-by: Sergey Mankovsky <sergey@monadical.com>
102 lines
2.7 KiB
TypeScript
102 lines
2.7 KiB
TypeScript
"use client";
|
|
|
|
import { useCallback, useEffect, useRef, RefObject } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import type { components } from "../../reflector-api";
|
|
import { useAuth } from "../../lib/AuthProvider";
|
|
import { getWherebyUrl, useWhereby } from "../../lib/wherebyClient";
|
|
import { assertExistsAndNonEmptyString, NonEmptyString } from "../../lib/utils";
|
|
import {
|
|
ConsentDialogButton as BaseConsentDialogButton,
|
|
useConsentDialog,
|
|
recordingTypeRequiresConsent,
|
|
} from "../../lib/consent";
|
|
|
|
type Meeting = components["schemas"]["Meeting"];
|
|
|
|
interface WherebyRoomProps {
|
|
meeting: Meeting;
|
|
}
|
|
|
|
function WherebyConsentDialogButton({
|
|
meetingId,
|
|
wherebyRef,
|
|
}: {
|
|
meetingId: NonEmptyString;
|
|
wherebyRef: React.RefObject<HTMLElement>;
|
|
}) {
|
|
const previousFocusRef = useRef<HTMLElement | null>(null);
|
|
|
|
useEffect(() => {
|
|
const element = wherebyRef.current;
|
|
if (!element) return;
|
|
|
|
const handleWherebyReady = () => {
|
|
previousFocusRef.current = document.activeElement as HTMLElement;
|
|
};
|
|
|
|
element.addEventListener("ready", handleWherebyReady);
|
|
|
|
return () => {
|
|
element.removeEventListener("ready", handleWherebyReady);
|
|
if (previousFocusRef.current && document.activeElement === element) {
|
|
previousFocusRef.current.focus();
|
|
}
|
|
};
|
|
}, [wherebyRef]);
|
|
|
|
return <BaseConsentDialogButton meetingId={meetingId} />;
|
|
}
|
|
|
|
export default function WherebyRoom({ meeting }: WherebyRoomProps) {
|
|
const wherebyLoaded = useWhereby();
|
|
const wherebyRef = useRef<HTMLElement>(null);
|
|
const router = useRouter();
|
|
const auth = useAuth();
|
|
const status = auth.status;
|
|
const isAuthenticated = status === "authenticated";
|
|
|
|
const wherebyRoomUrl = getWherebyUrl(meeting);
|
|
const recordingType = meeting.recording_type;
|
|
const meetingId = meeting.id;
|
|
|
|
const isLoading = status === "loading";
|
|
|
|
const handleLeave = useCallback(() => {
|
|
router.push("/browse");
|
|
}, [router]);
|
|
|
|
useEffect(() => {
|
|
if (isLoading || !isAuthenticated || !wherebyRoomUrl || !wherebyLoaded)
|
|
return;
|
|
|
|
wherebyRef.current?.addEventListener("leave", handleLeave);
|
|
|
|
return () => {
|
|
wherebyRef.current?.removeEventListener("leave", handleLeave);
|
|
};
|
|
}, [handleLeave, wherebyRoomUrl, isLoading, isAuthenticated, wherebyLoaded]);
|
|
|
|
if (!wherebyRoomUrl || !wherebyLoaded) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<whereby-embed
|
|
ref={wherebyRef}
|
|
room={wherebyRoomUrl}
|
|
style={{ width: "100vw", height: "100vh" }}
|
|
/>
|
|
{recordingType &&
|
|
recordingTypeRequiresConsent(recordingType) &&
|
|
meetingId && (
|
|
<WherebyConsentDialogButton
|
|
meetingId={assertExistsAndNonEmptyString(meetingId)}
|
|
wherebyRef={wherebyRef}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
}
|