import { createSignal, onCleanup, onMount } from "solid-js";import { Key } from "@solid-primitives/keyed";import Cursor from "./components/Cursor.jsx";import styles from "./App.module.css";
const COLORS = [ "#E57373", "#9575CD", "#4FC3F7", "#81C784", "#FFF176", "#FF8A65", "#F06292", "#7986CB",];
function App({ room }) { const [currentUser, setCurrentUser] = createSignal(room.getPresence()); const [users, setUsers] = createSignal([]);
onMount(() => { const unsubscribePresence = room.subscribe("my-presence", (presence) => { setCurrentUser(presence); });
const unsubscribeOthers = room.subscribe("others", (others) => { const othersWithPresence = others.filter((user) => user?.presence); setUsers(othersWithPresence); });
onCleanup(() => { unsubscribePresence(); unsubscribeOthers(); }); });
return ( <main class={styles.App} onPointerMove={(event) => { room.updatePresence({ cursor: { x: Math.round(event.clientX), y: Math.round(event.clientY), }, }); }} onPointerLeave={() => room.updatePresence({ cursor: null, }) } > <div class={styles.Text}> {currentUser().cursor ? `${currentUser().cursor.x} × ${currentUser().cursor.y}` : "Move your cursor to broadcast its position to other people in the room."} </div>
{} <Key each={users()} by="connectionId"> {(user) => ( <Show when={user().presence?.cursor}> <Cursor x={user().presence.cursor.x} y={user().presence.cursor.y} color={COLORS[user().connectionId % COLORS.length]} /> </Show> )} </Key> </main> );}
export default App;