given files

This commit is contained in:
Gu://em_ 2026-05-15 11:08:23 +02:00
parent 9bf88844e9
commit a2c31f873d
48 changed files with 10458 additions and 0 deletions

4
src/rooms/chat/index.js Normal file
View file

@ -0,0 +1,4 @@
// FIXME: This file should handle the room's chat subscription
// Functions may include:
// - subscribeToRoomChat (subscribe to the chat of a room)
// - sendChatMessage (send a chat message)

6
src/rooms/chat/utils.js Normal file
View file

@ -0,0 +1,6 @@
// FIXME: This file should handle the room's chat DOM manipulation
// Link buttons to their respective functions
// Handle the chat input form and its submission
// Functions may include:
// - displayChatMessage (display a chat message in the DOM)
// - displayUserEvents (display a user event in the DOM)