mirror of
https://github.com/randyjc/Rahoot.git
synced 2026-03-13 20:15:35 +01:00
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
"use client"
|
|
|
|
import logo from "@rahoot/web/assets/logo.svg"
|
|
import Room from "@rahoot/web/components/game/join/Room"
|
|
import Username from "@rahoot/web/components/game/join/Username"
|
|
import { useEvent, useSocket } from "@rahoot/web/contexts/socketProvider"
|
|
import { usePlayerStore } from "@rahoot/web/stores/player"
|
|
import Image from "next/image"
|
|
import { useEffect } from "react"
|
|
import toast from "react-hot-toast"
|
|
|
|
export default function Home() {
|
|
const { isConnected, connect } = useSocket()
|
|
const { player } = usePlayerStore()
|
|
|
|
useEffect(() => {
|
|
if (!isConnected) {
|
|
connect()
|
|
}
|
|
}, [connect, isConnected])
|
|
|
|
useEvent("game:errorMessage", (message) => {
|
|
toast.error(message)
|
|
})
|
|
|
|
return (
|
|
<section className="relative flex min-h-screen flex-col items-center justify-center">
|
|
<div className="absolute h-full w-full overflow-hidden">
|
|
<div className="bg-primary/15 absolute -top-[15vmin] -left-[15vmin] min-h-[75vmin] min-w-[75vmin] rounded-full"></div>
|
|
<div className="bg-primary/15 absolute -right-[15vmin] -bottom-[15vmin] min-h-[75vmin] min-w-[75vmin] rotate-45"></div>
|
|
</div>
|
|
|
|
<Image src={logo} className="mb-6 h-32" alt="logo" />
|
|
|
|
{!player ? <Room /> : <Username />}
|
|
</section>
|
|
)
|
|
}
|