I'm trying to implement Scoket.io in my NextJs project for notifications, but I have some issues. First of all, I must say I haven't worked with WebSockets before and trying to learn with this implementation. With that said, I'm trying to send a message through an event and works almost perfectly, the thing is that it has limits for the message, i.e. if I send "Hello world!!!Hello World!!!" the message is received on the server normally, but if I send "Hello world!!! Hello World!!!" the event is no longer received on the server. This happens with everything I tried ((event, message), (event, {message, room}), (event, message, room)) if the args of the event are longer than ~29 characters, event is not being received on the server. What am I doing wrong? this is the weirdest problem I have ever encountered and it's probably of something I set wrong or haven't set at all. Any help would be appreciated.
Here's a bit of my code, part of my server.ts
app.prepare().then(() => {
const httpServer = createServer((req, res) => {
const parsedUrl = parse(req.url!, true);
handle(req, res, parsedUrl);
}).listen(port);
const io = new Server(httpServer);
io.on("connection", async (socket) => {
// region TEST
socket.on(
NotificationEvent.notify,
async (data: { notification: TypeNotification; userId: string }) => {
await prisma.$transaction(async (tx) => {
const dbNotifications = new DbNotifications(tx);
return await dbNotifications.createNotificationsEntries(data.userId, [
data.notification,
]);
});
},
);
socket.on(NotificationEvent.notifyAll, async (message: string) => {
const userId = "1234567890";
const notification: TypeNotification = {
title: "test",
message,
room: NotificationsRoom.General,
type: NotificationType.Alert,
notificationLink: "www.abc",
};
await prisma.$transaction(async (tx) => {
const dbNotifications = new DbNotifications(tx);
return await dbNotifications.createNotificationsEntries(userId, [
notification,
]);
});
});Server listening at http://localhost:${port} as ${
dev ? "development" : process.env.NODE_ENV
} <===`,
);
});