29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import { events } from "../globals";
|
|
import { WebSocket } from "ws";
|
|
|
|
export const attachEvents = (ws: WebSocket) => {
|
|
events.on('file-uploaded', (id, channelId, messageId, filePath, fileType, fileSize, originalName) => {
|
|
ws.send(JSON.stringify({ type: 'file-uploaded', id, channelId, messageId, filePath, fileType, fileSize, originalName }));
|
|
});
|
|
events.on('message-created', (id, channelId, content) => {
|
|
ws.send(JSON.stringify({ type: 'message-created', id, channelId, content }));
|
|
});
|
|
events.on('message-updated', (id, content) => {
|
|
ws.send(JSON.stringify({ type: 'message-updated', id, content }));
|
|
});
|
|
events.on('message-deleted', (id) => {
|
|
ws.send(JSON.stringify({ type: 'message-deleted', id }));
|
|
});
|
|
events.on('channel-created', (channel) => {
|
|
ws.send(JSON.stringify({ type: 'channel-created', channel }));
|
|
});
|
|
events.on('channel-deleted', (id) => {
|
|
ws.send(JSON.stringify({ type: 'channel-deleted', id }));
|
|
});
|
|
events.on('channel-merged', (channelId, targetChannelId) => {
|
|
ws.send(JSON.stringify({ type: 'channel-merged', channelId, targetChannelId }));
|
|
});
|
|
events.on('channel-updated', (id, name) => {
|
|
ws.send(JSON.stringify({ type: 'channel-updated', id, name }));
|
|
});
|
|
} |