@@ -6,9 +6,7 @@ import { useState } from 'react'
6
6
import { BOARDS } from '@/boards'
7
7
import { Board } from '@/components/Board'
8
8
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'
12
10
import { getNewBoard } from '@/lib/getNewBoard'
13
11
import { getTileGroups } from '@/lib/getTileGroups'
14
12
import { GameState } from '@/types/game'
@@ -30,36 +28,10 @@ const Page = () => {
30
28
hint : undefined ,
31
29
} )
32
30
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
-
44
31
return (
45
32
< div className = "sm:px-4 sm:py-8" >
46
33
< 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 } />
63
35
64
36
< Board
65
37
board = { gameState . boardHistory [ 0 ] }
0 commit comments