yarn format

This commit is contained in:
Koper
2023-07-18 15:52:39 +07:00
parent 21aec04008
commit 9382ab13ab
15 changed files with 1235 additions and 281 deletions

View File

@@ -1,36 +1,36 @@
import { useEffect, useState } from 'react';
import Peer from 'simple-peer';
import { useEffect, useState } from "react";
import Peer from "simple-peer";
const useWebRTC = (stream) => {
const [data, setData] = useState(null);
const [data, setData] = useState(null);
useEffect(() => {
let peer = new Peer({ initiator: true, stream: stream });
useEffect(() => {
let peer = new Peer({ initiator: true, stream: stream });
peer.on('signal', data => {
// This is where you'd send the signal data to the server.
// The server would then send it back to other peers who would then
// use `peer.signal()` method to continue the connection negotiation.
console.log('signal', data);
});
peer.on("signal", (data) => {
// This is where you'd send the signal data to the server.
// The server would then send it back to other peers who would then
// use `peer.signal()` method to continue the connection negotiation.
console.log("signal", data);
});
peer.on('connect', () => {
console.log('WebRTC connected');
});
peer.on("connect", () => {
console.log("WebRTC connected");
});
peer.on('data', data => {
// Received data from the server.
const serverData = JSON.parse(data.toString());
setData(serverData);
});
peer.on("data", (data) => {
// Received data from the server.
const serverData = JSON.parse(data.toString());
setData(serverData);
});
// Clean up
return () => {
peer.destroy();
}
}, [stream]);
// Clean up
return () => {
peer.destroy();
};
}, [stream]);
return data;
return data;
};
export default useWebRTC;