-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
260 lines (198 loc) · 6.55 KB
/
main.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
// DOM Elements
const joinBtn = document.getElementById("joinBtn");
const peerIdTextBox = document.getElementById("peerIdTextBox");
const sendMssgBtn = document.getElementById("sendMssgBtn");
const mssgTextBox = document.getElementById("mssgTextBox");
const mssgList = document.getElementById("mssgList");
const userNameTextBox = document.getElementById("userNameTextBox");
const setUserNameBtn = document.getElementById("setUserNameBtn");
const disconnectBtn = document.getElementById("disconnectBtn");
// disabled till the peer is set up
joinBtn.disabled = true;
// disabled till a connection is established
sendMssgBtn.disabled = true;
disconnectBtn.disabled = true;
// Global variables:
const peer = new Peer(); // my peer
let connections = []; // array of connections
const connectionUserName = new Map();
let userName;
// --- PEER EVENT LISTENERS ---
// peer set up successfully
peer.on('open', function (id) {
// enable join
joinBtn.disabled = false;
let mssgElement = document.createElement("button");
mssgElement.className = "list-group-item list-group-item-primary text-center";
mssgElement.innerText = `Your peer ID: ${peer.id}`;
mssgList.append(mssgElement);
mssgElement.onclick = () => {
copyToClipboard(peer.id);
};
// set default user name
userNameTextBox.value = userName = peer.id.substring(0, 5);
});
// received a connection
peer.on('connection', function (conn) {
conn.on('open', function () {
onOpenConnection(conn);
// send the peer id of all connections
// so that the new peer can connect to
// all peers this peer is connected to
// forming a complete graph
connections.forEach((connection) => {
if (connection.peer != conn.peer) {
conn.send({
type: "peer",
message: connection.peer
});
}
});
});
// Event Listener for received data
conn.on('data', function (data) { onReceiveData(conn, data) });
conn.on('close', function () { onCloseConnection(conn); });
});
peer.on('error', function (err) {
if (err.type == 'peer-unavailable') {
let mssgElement = document.createElement("li");
mssgElement.className = "list-group-item list-group-item-primary text-center";
mssgElement.innerText = `Coudnt not connect to a peer`;
mssgList.append(mssgElement);
}
});
// --- ACTIONS ---
// Try to connect to remote peer
function connect(peerId) {
// if connection already exists ignore
for (let i = 0; i < connections.length; i++) {
if (connections[i].peer == peerId)
return;
}
let conn = peer.connect(peerId);
conn.on('open', function () {
onOpenConnection(conn);
});
// Receive messages
conn.on('data', function (data) { onReceiveData(conn, data) });
conn.on('close', function () { onCloseConnection(conn); });
}
function disconnectAll() {
while (connections.length > 0) {
connections[0].close();
}
}
function onOpenConnection(connection) {
// if connection already exists close this new connection
for (let i = 0; i < connections.length; i++) {
if (connections[i].peer == connection.peer) {
connection.close();
return;
}
}
sendMssgBtn.disabled = false;
disconnectBtn.disabled = false;
connections.push(connection);
// send current user name
connection.send({
type: "username",
message: userName
});
let mssgElement = document.createElement("li");
mssgElement.className = "list-group-item list-group-item-primary text-center";
mssgElement.innerText = `Connected to | ${connection.peer}`;
mssgList.append(mssgElement);
console.log(connections);
console.log(connectionUserName);
}
function onCloseConnection(connection) {
console.log("Closed connection")
let mssgElement = document.createElement("li");
mssgElement.className = "list-group-item list-group-item-primary text-center";
mssgElement.innerText = `Data Connection closed | ${connection.peer}`;
mssgList.append(mssgElement);
// remove from connections:
removeFromArray(connections, connection);
// remoce from username map:
connectionUserName.delete(connection);
if (connections.length == 0) {
sendMssgBtn.disabled = true;
disconnectBtn.disabled = true;
}
console.log(connections);
console.log(connectionUserName);
}
function onReceiveData(connection, data) {
if (data.type == "message") {
let mssgElement = document.createElement("li");
mssgElement.className = "list-group-item";
mssgElement.innerText = "[ " + connectionUserName.get(connection) + " ] | " + data.message;
mssgList.append(mssgElement);
}
else if (data.type == "username") {
connectionUserName.set(connection, data.message);
console.log(connections);
console.log(connectionUserName);
} else if (data.type == "peer") {
connect(data.message);
}
}
// --- BUTTON ONCLICK FUNCTIONS ---
joinBtn.onclick = () => {
// join a new lobby
// diconnect from the current lobby
disconnectAll();
connect(peerIdTextBox.value);
peerIdTextBox.value = "";
};
sendMssgBtn.onclick = () => {
if (!mssgTextBox.value) return;
const mssg = {
type: "message",
message: mssgTextBox.value
};
mssgTextBox.value = "";
let mssgElement = document.createElement("li");
mssgElement.className = "list-group-item text-end";
mssgElement.innerText = mssg.message + " | [ You] ";
mssgList.append(mssgElement);
broadcast(mssg);
};
setUserNameBtn.onclick = () => {
if (!userNameTextBox.value) {
userNameTextBox.value = userName;
} else {
userName = userNameTextBox.value;
// send current user name
broadcast({
type: "username",
message: userName
});
}
};
disconnectBtn.onclick = () => {
disconnectAll();
console.log(connections);
};
// --- UTILITY FUNCTIONS ---
function broadcast(data) {
connections.forEach((conn) => {
if (conn.open) {
conn.send(data);
}
});
}
function removeFromArray(array, toRemove) {
const index = array.indexOf(toRemove);
if (index > -1) {
array.splice(index, 1);
}
}
function copyToClipboard(str) {
const el = document.createElement('textarea');
el.value = str;
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
};