'use client'; import { useEffect, useState } from 'react'; import { useParams } from 'next/navigation'; import { useAppContext } from '@/app/AppContext'; import { Eye } from 'lucide-react'; import Card from '@/components/Card'; import CopyButton from '@/components/CopyButton'; import Notes from '@/components/Notes'; import NotFound from '@/components/NotFound'; import Settings from '@/components/Settings'; import CardSelect from '@/components/CardSelect'; import { cardMap, layout } from '@/constants/tarokka'; import type { Deck } from '@/types'; export default function GamePage() { const { gameData, noGame, flipCard, handleSettings, redraw, select, setGameID } = useAppContext(); const { gameID } = useParams(); const [selectCard, setSelectCard] = useState(-1); const { dmID, cards, settings } = gameData; const isDM = !!dmID; const selectDeck: Deck | null = selectCard >= 0 ? cards[selectCard].deck : null; useEffect(() => { if (gameID) { setGameID(Array.isArray(gameID) ? gameID[0] : gameID); } }, [gameID]); const handleSelect = (cardIndex: number, cardID: string) => { setSelectCard(-1); select(cardIndex, cardID); }; // map our five Tarokka cards to their proper locations in a 3x3 grid // common deck cards: left, top, and right // high deck cards: bottom and center const arrangeCards = (_cell: unknown, index: number) => cards[cardMap[index]]; return noGame ? ( ) : cards ? ( {isDM && ( )} {isDM && } {Array.from({ length: 9 }) .map(arrangeCards) .map((card, index) => ( {card && ( flipCard(cardMap[index])} redrawAction={() => redraw(cardMap[index])} selectAction={() => setSelectCard(cardMap[index])} /> )} ))} flipped)} /> setSelectCard(-1)} selectAction={(cardID) => handleSelect(selectCard, cardID)} /> ) : null; }