implementation

This commit is contained in:
djmil 2023-11-10 12:37:28 +01:00
parent 76eb556d09
commit c08177450a

View File

@ -1,20 +1,27 @@
import './GameBoard.css' import React, { useContext } from 'react';
import React from 'react' import { useLocation, matchPath } from 'react-router-dom';
import { GamesContext } from '../../context/games';
import { Color, Player, Board } from '../../components/Checkers'; import { Color, Player, Board } from '../../components/Checkers';
import './GameBoard.css';
//import { AppContext } from '../../context/app'
export default function GameBoard() { export default function GameBoard() {
const games = useContext(GamesContext);
const {pathname} = useLocation();
var whiteName = '';
var blackName = '';
//const [ctx] = React.useContext(AppContext) if (matchPath('/games/new', pathname)) {
whiteName = games.newGame.whitePlayer;
blackName = games.newGame.blackPlayer;
}
return ( return (
<div className='GameBoard'> <div className='GameBoard'>
<Player color={Color.white} name={/*ctx.newGame.whitePlayer*/"White player name"} /> <Player color={Color.white} name={whiteName} />
<Board /> <Board />
<Player color={Color.black} name={/*ctx.newGame.blackPlayer*/"Black player name"} /> <Player color={Color.black} name={blackName} />
</div> </div>
) )
} }