Skip to content
Snippets Groups Projects
Commit e7d0f66f authored by Moritz Langenstein's avatar Moritz Langenstein Committed by Momo Langenstein
Browse files

(ml5717) (mnr17) Removed extraneous const self = this

parent 2945f7f3
No related branches found
No related tags found
1 merge request!20liowebrtc full mesh
Pipeline #101358 passed
...@@ -28,10 +28,9 @@ function extend(Y) { ...@@ -28,10 +28,9 @@ function extend(Y) {
}) })
this.webrtc = webrtc this.webrtc = webrtc
const self = this
webrtc.on("ready", () => { webrtc.on("ready", () => {
webrtc.joinRoom(self.webrtcOptions.room) webrtc.joinRoom(this.webrtcOptions.room)
webrtc.connection.on("message", (data) => webrtc.connection.on("message", (data) =>
console.log("socket.io", data), console.log("socket.io", data),
...@@ -41,11 +40,11 @@ function extend(Y) { ...@@ -41,11 +40,11 @@ function extend(Y) {
webrtc.on("joinedRoom", () => { webrtc.on("joinedRoom", () => {
const id = webrtc.getMyId() const id = webrtc.getMyId()
for (let f of self.userEventListeners) { for (let f of this.userEventListeners) {
f({ action: "userID", id: id }) f({ action: "userID", id: id })
} }
self.setUserId(id) this.setUserId(id)
}) })
// Cannot use createdPeer here as y-js will then try to send data before the channel is open // Cannot use createdPeer here as y-js will then try to send data before the channel is open
...@@ -55,7 +54,7 @@ function extend(Y) { ...@@ -55,7 +54,7 @@ function extend(Y) {
peer.id, peer.id,
this.webrtc.getPeers().map((peer) => peer.id), this.webrtc.getPeers().map((peer) => peer.id),
) )
self.userJoined(peer.id, "master") this.userJoined(peer.id, "master")
}) })
webrtc.on("receivedPeerData", (type, message, peer) => { webrtc.on("receivedPeerData", (type, message, peer) => {
...@@ -66,7 +65,7 @@ function extend(Y) { ...@@ -66,7 +65,7 @@ function extend(Y) {
message, message,
this.webrtc.getPeers().map((peer) => peer.id), this.webrtc.getPeers().map((peer) => peer.id),
) )
self.receiveMessage(peer.id, message) this.receiveMessage(peer.id, message)
}) })
webrtc.on("channelClose", (dataChannel, peer) => { webrtc.on("channelClose", (dataChannel, peer) => {
...@@ -75,7 +74,7 @@ function extend(Y) { ...@@ -75,7 +74,7 @@ function extend(Y) {
peer.id, peer.id,
this.webrtc.getPeers().map((peer) => peer.id), this.webrtc.getPeers().map((peer) => peer.id),
) )
self.userLeft(peer.id) this.userLeft(peer.id)
}) })
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment