Skip to content

Commit 900e1ca

Browse files
committed
refactor: extract stats component
1 parent b47e11b commit 900e1ca

File tree

4 files changed

+46
-127
lines changed

4 files changed

+46
-127
lines changed

src/app/[date]/page.tsx

+2-30
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ import { useState } from 'react'
66
import { BOARDS } from '@/boards'
77
import { Board } from '@/components/Board'
88
import { Controls } from '@/components/Controls'
9-
import { Counter } from '@/components/Counter'
10-
import { useUserRecord } from '@/hooks/useUserRecord'
11-
import { getBotTurns } from '@/lib/getBotTurns'
9+
import { Stats } from '@/components/Stats'
1210
import { getNewBoard } from '@/lib/getNewBoard'
1311
import { getTileGroups } from '@/lib/getTileGroups'
1412
import { GameState } from '@/types/game'
@@ -30,36 +28,10 @@ const Page = () => {
3028
hint: undefined,
3129
})
3230

33-
const [botTurns, setBotTurns] = useState<number | undefined>(undefined)
34-
35-
const { userRecord, setUserRecord } = useUserRecord()
36-
37-
if (gameState.boardHistory[0].flat().every((tile) => tile == '')) {
38-
if (!userRecord || gameState.stepCount < userRecord) {
39-
setUserRecord(gameState.stepCount)
40-
localStorage.setItem('record', gameState.stepCount.toString())
41-
}
42-
}
43-
4431
return (
4532
<div className="sm:px-4 sm:py-8">
4633
<div className="mx-auto flex max-w-screen-sm flex-col sm:flex-row sm:gap-2">
47-
<div className="flex h-min justify-between gap-4 bg-violet-900 p-3 sm:flex-col sm:rounded-lg">
48-
<div className="flex gap-4 sm:flex-col">
49-
<Counter label="Turns">{gameState.stepCount}</Counter>
50-
<Counter label="Record">{userRecord}</Counter>
51-
</div>
52-
53-
<Counter label="Bot">
54-
<button
55-
onClick={() => {
56-
setBotTurns(getBotTurns(boardOfTheDay.tiles))
57-
}}
58-
>
59-
{botTurns ?? 'Show'}
60-
</button>
61-
</Counter>
62-
</div>
34+
<Stats gameState={gameState} />
6335

6436
<Board
6537
board={gameState.boardHistory[0]}

src/components/Button.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ export const Button: React.FC<ButtonProps> = ({
1515
onClick={onClick}
1616
className="flex size-12 items-center justify-center rounded-full bg-violet-700"
1717
>
18-
<Icon className="text-violet-100" aria-label={label} />
18+
<Icon className="stroke-violet-100" aria-label={label} />
1919
</button>
2020
)

src/components/Stats.tsx

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { useState } from 'react'
2+
3+
import { useUserRecord } from '@/hooks/useUserRecord'
4+
import { getBotTurns } from '@/lib/getBotTurns'
5+
import { GameState } from '@/types/game'
6+
7+
import { Counter } from './Counter'
8+
9+
type StatsProps = {
10+
gameState: GameState
11+
}
12+
13+
export const Stats: React.FC<StatsProps> = ({ gameState }) => {
14+
const { userRecord, setUserRecord } = useUserRecord()
15+
16+
if (gameState.boardHistory[0].flat().every((tile) => tile == '')) {
17+
if (!userRecord || gameState.stepCount < userRecord) {
18+
setUserRecord(gameState.stepCount)
19+
localStorage.setItem('record', gameState.stepCount.toString())
20+
}
21+
}
22+
23+
const [botTurns, setBotTurns] = useState<number | undefined>(undefined)
24+
25+
return (
26+
<div className="flex h-min justify-between gap-4 bg-violet-900 p-3 sm:flex-col sm:rounded-lg">
27+
<div className="flex gap-4 sm:flex-col">
28+
<Counter label="Turns">{gameState.stepCount}</Counter>
29+
<Counter label="Record">{userRecord}</Counter>
30+
</div>
31+
32+
<Counter label="Bot">
33+
<button
34+
onClick={() => {
35+
setBotTurns(getBotTurns(gameState.boardHistory[0]))
36+
}}
37+
>
38+
{botTurns ?? 'Show'}
39+
</button>
40+
</Counter>
41+
</div>
42+
)
43+
}

src/game.tsx

-96
This file was deleted.

0 commit comments

Comments
 (0)