-
Notifications
You must be signed in to change notification settings - Fork 10
/
App.js
406 lines (333 loc) · 11.1 KB
/
App.js
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
import React, { Component } from 'react';
import io from 'socket.io-client'
import Video from './components/video'
import Videos from './components/videos'
class App extends Component {
constructor(props) {
super(props)
this.state = {
localStream: null, // used to hold local stream object to avoid recreating the stream everytime a new offer comes
remoteStream: null, // used to hold remote stream object that is displayed in the main screen
remoteStreams: [], // holds all Video Streams (all remote streams)
peerConnections: {}, // holds all Peer Connections
selectedVideo: null,
status: 'Please wait...',
pc_config: {
"iceServers": [
{
urls : 'stun:stun.l.google.com:19302'
}
]
},
sdpConstraints: {
'mandatory': {
'OfferToReceiveAudio': true,
'OfferToReceiveVideo': true
}
},
}
// DONT FORGET TO CHANGE TO YOUR URL
this.serviceIP = 'https://cc82bd38.ngrok.io/webrtcPeer'
// https://reactjs.org/docs/refs-and-the-dom.html
// this.localVideoref = React.createRef()
// this.remoteVideoref = React.createRef()
this.socket = null
// this.candidates = []
}
getLocalStream = () => {
// called when getUserMedia() successfully returns - see below
// getUserMedia() returns a MediaStream object (https://developer.mozilla.org/en-US/docs/Web/API/MediaStream)
const success = (stream) => {
window.localStream = stream
// this.localVideoref.current.srcObject = stream
// this.pc.addStream(stream);
this.setState({
localStream: stream
})
this.whoisOnline()
}
// called when getUserMedia() fails - see below
const failure = (e) => {
console.log('getUserMedia Error: ', e)
}
// https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia
// see the above link for more constraint options
const constraints = {
// audio: true,
video: true,
// video: {
// width: 1280,
// height: 720
// },
// video: {
// width: { min: 1280 },
// }
options: {
mirror: true,
}
}
// https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia
navigator.mediaDevices.getUserMedia(constraints)
.then(success)
.catch(failure)
}
whoisOnline = () => {
// let all peers know I am joining
this.sendToPeer('onlinePeers', null, {local: this.socket.id})
}
sendToPeer = (messageType, payload, socketID) => {
this.socket.emit(messageType, {
socketID,
payload
})
}
createPeerConnection = (socketID, callback) => {
try {
let pc = new RTCPeerConnection(this.state.pc_config)
// add pc to peerConnections object
const peerConnections = { ...this.state.peerConnections, [socketID]: pc }
this.setState({
peerConnections
})
pc.onicecandidate = (e) => {
if (e.candidate) {
this.sendToPeer('candidate', e.candidate, {
local: this.socket.id,
remote: socketID
})
}
}
pc.oniceconnectionstatechange = (e) => {
// if (pc.iceConnectionState === 'disconnected') {
// const remoteStreams = this.state.remoteStreams.filter(stream => stream.id !== socketID)
// this.setState({
// remoteStream: remoteStreams.length > 0 && remoteStreams[0].stream || null,
// })
// }
}
pc.ontrack = (e) => {
const remoteVideo = {
id: socketID,
name: socketID,
stream: e.streams[0]
}
this.setState(prevState => {
// If we already have a stream in display let it stay the same, otherwise use the latest stream
const remoteStream = prevState.remoteStreams.length > 0 ? {} : { remoteStream: e.streams[0] }
// get currently selected video
let selectedVideo = prevState.remoteStreams.filter(stream => stream.id === prevState.selectedVideo.id)
// if the video is still in the list, then do nothing, otherwise set to new video stream
selectedVideo = selectedVideo.length ? {} : { selectedVideo: remoteVideo }
return {
// selectedVideo: remoteVideo,
...selectedVideo,
// remoteStream: e.streams[0],
...remoteStream,
remoteStreams: [...prevState.remoteStreams, remoteVideo]
}
})
}
pc.close = () => {
// alert('GONE')
}
if (this.state.localStream)
pc.addStream(this.state.localStream)
// return pc
callback(pc)
} catch(e) {
console.log('Something went wrong! pc not created!!', e)
// return;
callback(null)
}
}
componentDidMount = () => {
this.socket = io.connect(
this.serviceIP,
{
path: '/io/webrtc',
query: {}
}
)
this.socket.on('connection-success', data => {
this.getLocalStream()
console.log(data.success)
const status = data.peerCount > 1 ? `Total Connected Peers: ${data.peerCount}` : 'Waiting for other peers to connect'
this.setState({
status: status
})
})
this.socket.on('peer-disconnected', data => {
console.log('peer-disconnected', data)
const remoteStreams = this.state.remoteStreams.filter(stream => stream.id !== data.socketID)
this.setState(prevState => {
// check if disconnected peer is the selected video and if there still connected peers, then select the first
const selectedVideo = prevState.selectedVideo.id === data.socketID && remoteStreams.length ? { selectedVideo: remoteStreams[0] } : null
return {
// remoteStream: remoteStreams.length > 0 && remoteStreams[0].stream || null,
remoteStreams,
...selectedVideo,
}
}
)
})
// this.socket.on('offerOrAnswer', (sdp) => {
// this.textref.value = JSON.stringify(sdp)
// // set sdp as remote description
// this.pc.setRemoteDescription(new RTCSessionDescription(sdp))
// })
this.socket.on('online-peer', socketID => {
console.log('connected peers ...', socketID)
// create and send offer to the peer (data.socketID)
// 1. Create new pc
this.createPeerConnection(socketID, pc => {
// 2. Create Offer
if (pc)
pc.createOffer(this.state.sdpConstraints)
.then(sdp => {
pc.setLocalDescription(sdp)
this.sendToPeer('offer', sdp, {
local: this.socket.id,
remote: socketID
})
})
})
})
this.socket.on('offer', data => {
this.createPeerConnection(data.socketID, pc => {
pc.addStream(this.state.localStream)
pc.setRemoteDescription(new RTCSessionDescription(data.sdp)).then(() => {
// 2. Create Answer
pc.createAnswer(this.state.sdpConstraints)
.then(sdp => {
pc.setLocalDescription(sdp)
this.sendToPeer('answer', sdp, {
local: this.socket.id,
remote: data.socketID
})
})
})
})
})
this.socket.on('answer', data => {
// get remote's peerConnection
const pc = this.state.peerConnections[data.socketID]
console.log(data.sdp)
pc.setRemoteDescription(new RTCSessionDescription(data.sdp)).then(()=>{})
})
this.socket.on('candidate', (data) => {
// get remote's peerConnection
const pc = this.state.peerConnections[data.socketID]
if (pc)
pc.addIceCandidate(new RTCIceCandidate(data.candidate))
})
// const pc_config = null
// const pc_config = {
// "iceServers": [
// // {
// // urls: 'stun:[STUN_IP]:[PORT]',
// // 'credentials': '[YOR CREDENTIALS]',
// // 'username': '[USERNAME]'
// // },
// {
// urls : 'stun:stun.l.google.com:19302'
// }
// ]
// }
// https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection
// create an instance of RTCPeerConnection
// this.pc = new RTCPeerConnection(this.state.pc_config)
// triggered when a new candidate is returned
// this.pc.onicecandidate = (e) => {
// // send the candidates to the remote peer
// // see addCandidate below to be triggered on the remote peer
// if (e.candidate) {
// // console.log(JSON.stringify(e.candidate))
// this.sendToPeer('candidate', e.candidate)
// }
// }
// triggered when there is a change in connection state
// this.pc.oniceconnectionstatechange = (e) => {
// console.log(e)
// }
// triggered when a stream is added to pc, see below - this.pc.addStream(stream)
// this.pc.onaddstream = (e) => {
// this.remoteVideoref.current.srcObject = e.stream
// }
// this.pc.ontrack = (e) => {
// debugger
// // this.remoteVideoref.current.srcObject = e.streams[0]
// this.setState({
// remoteStream: e.streams[0]
// })
// }
}
switchVideo = (_video) => {
console.log(_video)
this.setState({
selectedVideo: _video
})
}
render() {
console.log(this.state.localStream)
const statusText = <div style={{ color: 'yellow', padding: 5 }}>{this.state.status}</div>
return (
<div>
<Video
videoStyles={{
zIndex:2,
position: 'absolute',
right:0,
width: 200,
height: 200,
margin: 5,
backgroundColor: 'black'
}}
// ref={this.localVideoref}
videoStream={this.state.localStream}
autoPlay muted>
</Video>
<Video
videoStyles={{
zIndex: 1,
position: 'fixed',
bottom: 0,
minWidth: '100%',
minHeight: '100%',
backgroundColor: 'black'
}}
// ref={ this.remoteVideoref }
videoStream={this.state.selectedVideo && this.state.selectedVideo.stream}
autoPlay>
</Video>
<br />
<div style={{
zIndex: 3,
position: 'absolute',
margin: 10,
backgroundColor: '#cdc4ff4f',
padding: 10,
borderRadius: 5,
}}>
{ statusText }
</div>
<div>
<Videos
switchVideo={this.switchVideo}
remoteStreams={this.state.remoteStreams}
></Videos>
</div>
<br />
{/* <div style={{zIndex: 1, position: 'fixed'}} >
<button onClick={this.createOffer}>Offer</button>
<button onClick={this.createAnswer}>Answer</button>
<br />
<textarea style={{ width: 450, height:40 }} ref={ref => { this.textref = ref }} />
</div> */}
{/* <br />
<button onClick={this.setRemoteDescription}>Set Remote Desc</button>
<button onClick={this.addCandidate}>Add Candidate</button> */}
</div>
)
}
}
export default App;