File size: 2,936 Bytes
1e8ff3b
 
 
 
 
 
 
 
 
fc610e2
 
 
 
 
1e8ff3b
 
 
 
 
 
 
 
 
 
 
 
 
fc610e2
1e8ff3b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fc610e2
1e8ff3b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fc610e2
 
 
 
 
1e8ff3b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
"use client";

import { useCallback, useEffect, useState } from "react";
import Card from "../components/Card";
import { VideoCameraIcon, PaintBrushIcon } from "@heroicons/react/24/outline";
import Avatar from "../components/Avatar";
import CreateRoom from "../components/CreateRoom";
import { apiUrl } from "../utils";
import Join from "../components/Joining";
import {
  DailyVideo,
  useLocalSessionId,
  useParticipantIds,
} from "@daily-co/daily-react";

const STATE_IDLE = "idle";
const STATE_JOINING = "joining";
const STATE_JOINED = "joined";
const STATE_LEFT = "left";
const BOT_STATE_STARTING = "bot_starting";
const BOT_STATE_STARTED = "bot_started";

export default function Call() {
  const [callState, setCallState] = useState(STATE_IDLE);
  const [roomUrl, setRoomUrl] = useState();
  const [botState, setBotState] = useState(BOT_STATE_STARTING);
  const localSessionId = useLocalSessionId();
  const participantIds = useParticipantIds({ filter: "remote" });

  const start = useCallback(async () => {
    const resp = await fetch(`${apiUrl}/start`, {
      method: "POST",
      mode: "cors",
      cache: "no-cache",
      credentials: "same-origin",
      headers: {
        "Content-Type": "application/json",
      },
      body: JSON.stringify({ room_url: roomUrl }),
    });

    const data = await resp.json();
  }, [roomUrl]);

  useEffect(() => {
    if (callState !== STATE_JOINED || botState === BOT_STATE_STARTED) return;
    start();
  }, [callState, botState, start]);

  if (callState === STATE_IDLE) {
    return (
      <CreateRoom
        onCreateRoom={(roomUrl) => {
          setRoomUrl(roomUrl);
          setCallState(STATE_JOINING);
        }}
      />
    );
  }

  if (callState === STATE_JOINING) {
    return <Join roomUrl={roomUrl} onJoin={() => setCallState(STATE_JOINED)} />;
  }

  // Main call loop
  return (
    <main className="container py-24">
      {roomUrl}
      <div className="grid grid-cols-2 grid-flow-col gap-4">
        <div>
          <Card headerText="Local Webcam" HeaderIcon={VideoCameraIcon}>
            <div className="overflow-hidden bg-gray-50 sm:rounded-lg">
              <div className="aspect-video flex items-center justify-center">
                <DailyVideo automirror sessionId={localSessionId} />
              </div>
            </div>
          </Card>
          <div className="relative">Config - Resolution, Mbps, FPS</div>
        </div>
        <div>
          <Card headerText="Inference" HeaderIcon={PaintBrushIcon}>
            <div className="overflow-hidden bg-gray-50 sm:rounded-lg">
              <div className="aspect-video flex items-center justify-center">
                {participantIds.length ? (
                  <DailyVideo sessionId={participantIds[0]} />
                ) : (
                  <Avatar />
                )}
              </div>
            </div>
          </Card>
        </div>
      </div>
    </main>
  );
}