Added video calling

This commit is contained in:
Mitchell McCaffrey 2020-03-19 12:02:31 +11:00
parent 25ee35de44
commit fb43cc3fc2
8 changed files with 97 additions and 15 deletions

17
src/components/Party.js Normal file
View File

@ -0,0 +1,17 @@
import React from "react";
import { Flex } from "theme-ui";
import PartyVideo from "./PartyVideo";
function Party({ streams }) {
return (
<Flex p={4} bg="highlight" sx={{ flexDirection: "column", width: "200px" }}>
{Object.entries(streams).map(([id, stream]) => (
<PartyVideo key={id} stream={stream} />
))}
</Flex>
);
}
export default Party;

View File

@ -0,0 +1,15 @@
import React, { useRef, useEffect } from "react";
function PartyVideo({ stream }) {
const videoRef = useRef();
useEffect(() => {
if (videoRef.current) {
videoRef.current.srcObject = stream;
}
}, [stream]);
return <video ref={videoRef} autoPlay muted />;
}
export default PartyVideo;

View File

@ -1,6 +1,5 @@
import React from "react";
import Draggable from "react-draggable";
import { Styled } from "theme-ui";
function Token({ onDrag, position }) {
return (

View File

@ -4,7 +4,7 @@ const GameContext = React.createContext();
export function GameProvider({ children }) {
const [gameId, setGameId] = useState(null);
const value = [gameId, setGameId];
const value = { gameId, setGameId };
return <GameContext.Provider value={value}>{children}</GameContext.Provider>;
}

View File

@ -1,10 +1,17 @@
import { useEffect, useState } from "react";
import Peer from "peerjs";
const getUserMedia =
navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia;
function useSession(onConnectionOpen, onConnectionSync) {
const [peerId, setPeerId] = useState(null);
const [peer, setPeer] = useState(null);
const [connections, setConnections] = useState({});
const [streams, setStreams] = useState({});
function addConnection(connection) {
setConnections(prevConnnections => ({
...prevConnnections,
@ -12,13 +19,35 @@ function useSession(onConnectionOpen, onConnectionSync) {
}));
}
function addStream(stream, id) {
setStreams(prevStreams => ({
...prevStreams,
[id]: stream
}));
}
useEffect(() => {
setPeer(new Peer());
}, []);
// Clean up stream on dismount
useEffect(() => {
return () => {
for (let stream of Object.values(streams)) {
for (let track of stream.getTracks()) {
track.stop();
}
}
};
}, [streams]);
useEffect(() => {
function handleOpen(id) {
setPeerId(id);
getUserMedia({ video: true, audio: true }, stream => {
addStream(stream, id);
});
}
function handleConnection(connection) {
@ -34,7 +63,7 @@ function useSession(onConnectionOpen, onConnectionSync) {
}
}
addConnection(connection);
addConnection(connection, false);
if (onConnectionOpen) {
onConnectionOpen(connection);
@ -47,22 +76,30 @@ function useSession(onConnectionOpen, onConnectionSync) {
return rest;
});
}
connection.on("close", removeConnection);
connection.on("error", removeConnection);
}
function handleCall(call) {
call.answer(streams[peerId]);
call.on("stream", remoteStream => {
addStream(remoteStream, call.peer);
});
}
if (!peer) {
return;
}
peer.on("open", handleOpen);
peer.on("connection", handleConnection);
peer.on("call", handleCall);
return () => {
peer.removeListener("open", handleOpen);
peer.removeListener("connection", handleConnection);
peer.removeListener("call", handleCall);
};
}, [peer, peerId, connections, onConnectionOpen]);
}, [peer, peerId, connections, onConnectionOpen, onConnectionSync, streams]);
function sync(connectionIds) {
for (let connectionId of connectionIds) {
@ -72,7 +109,11 @@ function useSession(onConnectionOpen, onConnectionSync) {
const connection = peer.connect(connectionId, {
metadata: { sync: false }
});
addConnection(connection);
addConnection(connection, false);
const call = peer.call(connectionId, streams[peerId]);
call.on("stream", stream => {
addStream(stream, connectionId);
});
}
}
@ -93,10 +134,18 @@ function useSession(onConnectionOpen, onConnectionSync) {
onConnectionOpen(connection);
}
});
addConnection(connection);
console.log(streams);
const call = peer.call(connectionId, streams[peerId]);
call.on("stream", remoteStream => {
addStream(remoteStream, connectionId);
});
addConnection(connection, false);
}
return [peer, peerId, connections, connectTo];
return { peer, peerId, streams, connections, connectTo };
}
export default useSession;

View File

@ -11,21 +11,22 @@ import GameContext from "../contexts/GameContext";
import useSession from "../helpers/useSession";
import Token from "../components/Token";
import Party from "../components/Party";
function Game() {
const [gameId, setGameId] = useContext(GameContext);
const { gameId } = useContext(GameContext);
const handleConnectionOpenCallback = useCallback(handleConnectionOpen);
const handleConnectionSyncCallback = useCallback(handleConnectionSync);
const [peer, peerId, connections, connectTo] = useSession(
const { peerId, connections, connectTo, streams } = useSession(
handleConnectionOpenCallback,
handleConnectionSyncCallback
);
useEffect(() => {
if (gameId !== null && peerId !== null) {
if (gameId !== null && peerId !== null && streams[peerId]) {
connectTo(gameId);
}
}, [gameId, peerId, connectTo]);
}, [gameId, peerId, connectTo, streams]);
const [imageSource, setImageSource] = useState(null);
const imageDataRef = useRef(null);
@ -34,7 +35,7 @@ function Game() {
imageDataRef.current = event.target.files[0];
setImageSource(URL.createObjectURL(imageDataRef.current));
for (let connection of Object.values(connections)) {
connection.send({ id: "image", data: imageDataRef.current });
connection.data.send({ id: "image", data: imageDataRef.current });
}
}
@ -82,6 +83,7 @@ function Game() {
/>
</Box>
</Flex>
<Party streams={streams} />
<Flex sx={{ justifyContent: "center" }}>
<Image src={imageSource} />
</Flex>

View File

@ -5,7 +5,7 @@ import { Container, Flex, Button } from "theme-ui";
import GameContext from "../contexts/GameContext";
function Home() {
const [gameId, setGameId] = useContext(GameContext);
const { setGameId } = useContext(GameContext);
function handleStartGame() {
setGameId(null);

View File

@ -5,7 +5,7 @@ import { Container, Box, Label, Input, Button } from "theme-ui";
import GameContext from "../contexts/GameContext";
function Join() {
const [gameId, setGameId] = useContext(GameContext);
const { gameId, setGameId } = useContext(GameContext);
function handleChange(event) {
setGameId(event.target.value);