forked from LoPaul/Briteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocket-events.js
164 lines (131 loc) · 5.29 KB
/
socket-events.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
const v4 = require('uuid/v4');
let DEBUG = false;
const clients = {};
////////////////////////////////////////////
// USER HELPERS //
////////////////////////////////////////////
const getCurrentUsers = (board) => {
const currentUsers = [];
for (let client in clients) {
if (clients[client].boardId === board) {
currentUsers.push({ [client]: clients[client] });
}
}
return currentUsers;
};
////////////////////////////////////////////
// CANVAS HELPERS //
////////////////////////////////////////////
// update component history with incoming changes
// event-handler for new incoming connections
const updateboardHistory = (boardHistory, changes) => {
history = boardHistory.find(each => each.id === changes.id);
if (history) {
history.left = changes.left;
history.top = changes.top,
history.height = changes.height;
history.scaleX = changes.scaleX,
history.scaleY = changes.scaleY,
history.angle = changes.angle,
history.text = changes.text
}
};
// Export to server.js
module.exports = (io, boards) => {
// Socket connection established
io.on('connect', function(socket) {
console.log("client connected");
// Join room via unique board URL
const board = (socket.request.headers.referer).split('/').reverse()[0];
socket.join(board);
////////////////////////////////////////////
// USER EVENTS //
////////////////////////////////////////////
const client = { id: v4(), boardId: board };
clients[socket.id] = client;
// Send connection message to client
socket.emit('connected', {
currentUsers: getCurrentUsers(board),
data: boards.getBoard(board),
notification: "You've successfully connected!"
});
// Send connected user to all clients
socket.on('username selected', (username) => {
clients[socket.id].name = username;
socket.emit('connection established', clients[socket.id]);
socket.to(board).emit('new connection', clients[socket.id]);
});
// Send disconnect message to everyone in the room
socket.on('disconnect', (reason) => {
io.in(board).emit('user disconnected', clients[socket.id]);
delete clients[socket.id];
});
// Notify other clients the board has been deleted
socket.on('delete board', (boardId) => {
socket.to(board).emit('board deleted');
});
////////////////////////////////////////////
// CAVAS EVENTS //
////////////////////////////////////////////
var boardHistory = boards.getBoardHistory(board);
const removeFromHistory = (boardHistory, data) => {
return boardHistory.filter(each => each.id !== data.id);
};
// first send the history to the new client
for (let data of boardHistory) {
socket.emit('create_component', data);
}
// Set initial background color to new client
let myBoard = boards.getBoard(board);
if(myBoard)
socket.emit('set_background_color', {color: myBoard.backgroundColor});
// add handler for broadcast of component creation
socket.on('create_component', function(objectData) {
boardHistory = boards.getBoardHistory(board);
boardHistory.push(objectData);
boards.updateBoard(board, objectData, boardHistory);
socket.to(board).emit('create_component', objectData);
});
// broadcast movements without saving to db
socket.on('modify_component', function(objectData) {
boardHistory = boards.getBoardHistory(board);
updateboardHistory(boardHistory, objectData);
socket.to(board).emit('modify_component', objectData);
});
// broadcast and update db when movement has stopped
socket.on('modified_component', function(objectData) {
boardHistory = boards.getBoardHistory(board);
updateboardHistory(boardHistory, objectData);
boards.updateBoard(board, objectData, boardHistory);
socket.to(board).emit('modify_component', objectData);
});
// Remove component from db and broadcast
socket.on('remove_component', function(objectData) {
boardHistory = boards.getBoardHistory(board);
boardHistory = boardHistory.filter(each => each.id !== objectData.id);
boardHistory = removeFromHistory(boardHistory, objectData);
boards.deleteBoardHistory(board, objectData, boardHistory);
socket.to(board).emit('remove_component', objectData);
});
// Update db path creation and broadcast
socket.on('path_created', function(objectData) {
boardHistory = boards.getBoardHistory(board);
boardHistory.push(objectData);
boards.updateBoard(board, objectData, boardHistory);
socket.to(board).emit('path_created', objectData);
});
// Broadcast layering of component
socket.on('layer_component', function(objectData) {
socket.to(board).emit('layer_component', objectData);
});
// Broadcast user cursor positions
socket.on('user_cursor_position', function(objectData) {
socket.to(board).emit('user_cursor_position', objectData);
});
// Update db with change in background color and broadcast
socket.on('set_background_color', function(objectData) {
boards.updateBackgroundColor(board, objectData);
socket.to(board).emit('set_background_color', objectData);
});
});
};