front: NewGame component

This commit is contained in:
djmil 2023-10-27 19:36:00 +02:00
parent 984acda704
commit 567160caa1
5 changed files with 54 additions and 31 deletions

View File

@ -1,39 +1,19 @@
import './GameBoard.css'
import React, { useState } from 'react'
import { AppData } from '../../context/data'
import Board from './GameBoard/Board'
import { SelectPlayer } from './Player'
// import { WHITE, BLACK, WhiteStone, BlackStone } from './Stone'
import { WHITE, BLACK } from './Stone'
import { Player } from './Player'
export default function GameBoard() {
const [data] = React.useContext(AppData)
const [whiteName, setWhiteName] = useState('');
const [blackName, setBlackName] = useState('');
const nameOptions = data.leaderboard
? Object.keys(data.leaderboard).map(playerName => {
const displayName = data.isCurrentUser(playerName) ? 'You' : playerName
return <option key={playerName} value={playerName}>{displayName}</option>
})
: []
const whiteOptions = Array(nameOptions)
whiteOptions.push(<option key='default' value=''>{'⛀ …'}</option>)
const blackOptions = Array(nameOptions)
blackOptions.push(<option key='default' value=''>{'⛂ …'}</option>)
const [whiteName] = useState('');
const [blackName] = useState('');
return (
<div className='game-board'>
<SelectPlayer name={whiteName} setName={setWhiteName} nameOptions={whiteOptions} />
{/* <Player color={WHITE()} name={whiteName} setName={setWhiteName} nameOptions={whiteOptions} /> */}
<Player color={WHITE()} name={whiteName} />
<Board />
{/* <Player color={BLACK()} name={blackName} setName={setBlackName} nameOptions={blackOptions} /> */}
<SelectPlayer name={blackName} setName={setBlackName} nameOptions={blackOptions} />
<Player color={BLACK()} name={blackName} />
</div>
)
}

View File

@ -1,7 +1,7 @@
import './Selectable.css'
import React from 'react';
import { oppositeColor } from '../Stone';
import Player from '../Player';
import { Player } from '../Player';
export default function Selectable({ game, onClick }) {

View File

@ -0,0 +1,17 @@
.new-game {
margin-top: 70px;
}
.new-game * {
width: 230px;
}
.new-game .container {
margin-top: 40px;
margin-bottom: 40px;
}
.new-game .stone {
font-size: 150%;
vertical-align: -3px;
}

View File

@ -1,21 +1,47 @@
import './NewGame.css';
import React from 'react';
import { AppData } from '../../context/data'
import { useLocation, matchPath } from "react-router";
import { SelectPlayer } from './Player';
import { WhiteStone, BlackStone } from './Stone';
// import { AppContext } from '../../context/app'
export default function NewGame() {
// const [ctx, dispatchCtx] = React.useContext(AppContext)
const [data] = React.useContext(AppData)
const [whiteName, setWhiteName] = React.useState('');
const [blackName, setBlackName] = React.useState('');
const { pathname } = useLocation();
const isMyPath = matchPath("/game/new", pathname);
if (!isMyPath)
return
return
const nameOptions = data.leaderboard
? Object.keys(data.leaderboard).map(playerName => {
const displayName = data.isCurrentUser(playerName) ? 'You' : playerName
return <option key={playerName} value={playerName}>{displayName}</option>
})
: []
const whiteOptions = Array(nameOptions)
whiteOptions.push(<option key='default' value=''>{'select …'}</option>)
const blackOptions = Array(nameOptions)
blackOptions.push(<option key='default' value=''>{'select …'}</option>)
return (
<div className='new-game'>
<div>New game TBD</div>
<div className='container'>
<WhiteStone/> player
<SelectPlayer name={whiteName} setName={setWhiteName} nameOptions={whiteOptions} />
</div>
<div className='container'>
<SelectPlayer name={blackName} setName={setBlackName} nameOptions={blackOptions} />
<BlackStone/> player
</div>
</div>
)
}

View File

@ -2,7 +2,7 @@ import './Player.css'
import React from 'react'
import { Stone } from './Stone'
export default function Player({ color, name }) {
export function Player({ color, name }) {
return (
<div className='player'>