forked from partykit/partykit-nextjs-chat-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoomList.tsx
35 lines (32 loc) · 1.03 KB
/
RoomList.tsx
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
"use client";
import { useState } from "react";
import usePartySocket from "partysocket/react";
import { RoomInfo, SINGLETON_ROOM_ID } from "@/party/chatRooms";
import RoomCard from "./components/RoomCard";
import ConnectionStatus from "../components/ConnectionStatus";
import { PARTYKIT_HOST } from "../env";
export const RoomList: React.FC<{ initialRooms: RoomInfo[] }> = ({
initialRooms,
}) => {
// render with initial data, update from websocket as messages arrive
const [rooms, setRooms] = useState(initialRooms);
// open a websocket connection to the server
const socket = usePartySocket({
host: PARTYKIT_HOST,
party: "chatrooms",
room: SINGLETON_ROOM_ID,
onMessage(event: MessageEvent<string>) {
setRooms(JSON.parse(event.data) as RoomInfo[]);
},
});
return (
<>
<ul className="grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3">
{rooms.map((room) => (
<RoomCard key={room.id} room={room} />
))}
</ul>
<ConnectionStatus socket={socket} />
</>
);
};