Refactor
authorgparant <g.parant@thecodingmachine.com>
Wed, 29 Apr 2020 15:49:40 +0000 (17:49 +0200)
committergparant <g.parant@thecodingmachine.com>
Wed, 29 Apr 2020 15:49:40 +0000 (17:49 +0200)
front/src/WebRtc/SimplePeer.ts

index b04511d7fa3465f8b934f95b49dddcba8dd4f92d..3c94bbaf33be8b624ecc8d4680e00f18b963d40b 100644 (file)
@@ -8,14 +8,14 @@ export interface SimplePeerInterface {
 export class SimplePeer {
     Connexion: ConnexionInterface;
     MediaManager: MediaManager;
-    RoomId: string;
+    WebRtcRoomId: string;
     Users: Array<any>;
 
     PeerConnexionArray: Array<any> = new Array<any>();
 
-    constructor(Connexion: ConnexionInterface, roomId: string = "test-webrtc") {
+    constructor(Connexion: ConnexionInterface, WebRtcRoomId: string = "test-webrtc") {
         this.Connexion = Connexion;
-        this.RoomId = roomId;
+        this.WebRtcRoomId = WebRtcRoomId;
         this.MediaManager = new MediaManager();
         this.initialise();
     }
@@ -62,7 +62,7 @@ export class SimplePeer {
      */
     receiveWebrtcStart(message: string) {
         let data = JSON.parse(message);
-        this.RoomId = data.roomId;
+        this.WebRtcRoomId = data.roomId;
         this.Users = data.clients;
 
         //active button for player
@@ -108,7 +108,7 @@ export class SimplePeer {
      * @param data
      */
     sendWebrtcSignal(data: any, userId : string) {
-        this.Connexion.sendWebrtcSignal(data, this.RoomId, null, userId);
+        this.Connexion.sendWebrtcSignal(data, this.WebRtcRoomId, null, userId);
     }
 
     /**