Create Rooms
Rooms are the channels that WebSockets can enter and leave (i.e. connect and disconnect). Events emitted by sockets in a room will be broadcasted only to other sockets within the same room.
Create and connect to a PluvRoom
Create and connect to a PluvRoom
by mounting a PluvRoomProvider
from your @pluv/react
bundle. When this provider is mounted, all of the hooks from the createRoomBundle
output will become usable in the child react tree, and the user joins the room as an active WebSocket connection. When the component unmounts, the user leaves the room.
Note You may not have multiple PluvRoomProvider components mounted at the same time with the same
room
attribute within your app.
1import { FC } from "react";2import { PluvRoomProvider } from "frontend/io";34export const MyPage: FC = () => {5 return (6 <PluvRoomProvider room="my-room-id">7 <MyRoom />8 </PluvRoomProvider>9 );10};