-
Notifications
You must be signed in to change notification settings - Fork 2
/
socketIoHandler.js
96 lines (74 loc) · 2.61 KB
/
socketIoHandler.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
import { Server } from 'socket.io'
export default function injectSocketIO(server) {
const io = new Server(server)
const users = {}
const connectUser = (userId, chatId) => {
users[chatId] = [
...users[chatId].filter((u) => u.id !== userId), // filter other instances of the same user
{ id: userId, connected: true, typing: false },
]
}
const disconnectUser = (userId, chatId) => {
users[chatId] = users[chatId].filter((u) => u.id !== userId)
}
const setUserTyping = (userId, chatId) => {
users[chatId] = [
...users[chatId].filter((u) => u.id !== userId),
{ id: userId, connected: true, typing: true },
]
}
const unsetUserTyping = (userId, chatId) => {
users[chatId] = [
...users[chatId].filter((u) => u.id !== userId),
{ id: userId, connected: true, typing: false },
]
}
io.on('connection', (socket) => {
socket.on('join-chat', ({ userId, chatId }) => {
socket.join(chatId)
users[chatId] ||= []
connectUser(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
socket.on('start-typing', () => {
setUserTyping(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
})
socket.on('stop-typing', () => {
unsetUserTyping(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
})
socket.on('stream-response', (data) => {
connectUser(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
socket.to(chatId).emit('streaming-response', data)
})
socket.on('delete-message', (data) => {
connectUser(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
socket.to(chatId).emit('message-deleted', data)
})
socket.on('delete-chat', (data) => {
connectUser(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
socket.to(chatId).emit('chat-deleted', data)
})
socket.on('leave-chat', () => {
disconnectUser(userId, chatId)
socket.leave(chatId)
io.to(chatId).emit('users-changed', users[chatId])
})
socket.on('cancel-answer', () => {
connectUser(userId, chatId)
io.to(chatId).emit('users-changed', users[chatId])
socket.to(chatId).emit('answer-cancelled')
})
})
socket.on('disconnect', () => {
socket.removeAllListeners('connection')
socket.removeAllListeners('join-chat')
socket.removeAllListeners('start-typing')
socket.removeAllListeners('stop-typing')
socket.removeAllListeners('leave-chat')
})
})
}