- internals.port.postMessage({
- action: 'error'
- });
- internals.port.disconnect();
- internals.createAudioElement(data.tada);
- }
- },
-
- hangUp() {
- document.querySelectorAll('.junction-call-audio').forEach((audioElement) => audioElement.remove());
- internals.socket.close();
- internals.port.disconnect();
- },
+ Peers.add(data.peerId, internals.tada);
+ const peerId = data.peerId;
+
+ const peerConnection = new RTCPeerConnection(
+ { iceServers: internals.kIceServers },
+ { optional: [{ DtlsSrtpKeyAgreement: true }] }
+ );
+
+ internals.peers[peerId] = peerConnection;
+ mediaStream.getTracks().forEach((track) => {
+ peerConnection.addTrack(track, localStream);
+ });
+
+ peerConnection.onicecandidate = (event) => {
+ if (event.candidate) {
+ internals.socket.emit('relayICECandidate', {
+ peerId: peerId,
+ candidate: event.candidate
+ });
+ }
+ }
+
+ const remoteStream = new MediaStream();
+ peerConnection.ontrack = (event) => {
+ remoteStream.addTrack(event.track);
+ const remoteAudioElement = new Audio();
+ remoteAudioElement.srcObject = remoteStream;
+ remoteAudioElement.play();
+ };
+
+ peerConnection.onnegotiationneeded = async () => {
+ console.log("Creating RTC offer to ", peerId);
+ const offer = await peerConnection.createOffer();
+ await peerConnection.setLocalDescription(offer);
+
+ // Emit the offer to the peer
+ socket.emit('relayOffer', { offer, peerId });
+ };
+
+ console.log(`There are now ${Peers.count()} participants`);
+ });
+
+ socket.on('offerReceived', async (data) => {