Compare commits
2 Commits
ac50d92c1a
...
b632aa7dc3
Author | SHA1 | Date | |
---|---|---|---|
b632aa7dc3 | |||
6b8b75ba7f |
@ -26,14 +26,19 @@ export default function App() {
|
|||||||
const gamesApi = useGamesApi(dispatchGames);
|
const gamesApi = useGamesApi(dispatchGames);
|
||||||
gamesApi.list(pollingReducer);
|
gamesApi.list(pollingReducer);
|
||||||
|
|
||||||
|
const players = {
|
||||||
|
leaderboard,
|
||||||
|
isCurrentUser: (playerName) => user?.isCurrentUser(playerName) === true ? true : null
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BrowserRouter>
|
<BrowserRouter>
|
||||||
<Header pollingReducer={pollingReducer} />
|
<Header pollingReducer={pollingReducer} />
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path='/' element={<About />} />
|
<Route path='/' element={<About />} />
|
||||||
<Route path='/about' element={<About />} />
|
<Route path='/about' element={<About />} />
|
||||||
<Route path='/games/*' element={<Games games={games} dispatchGames={dispatchGames} gamesApi={gamesApi} />} />
|
<Route path='/games/*' element={<Games context={{ games, dispatchGames, gamesApi }} players={players} />} />
|
||||||
<Route path='/leaderboard' element={<Leaderboard leaderboard={leaderboard} user={user} />} />
|
<Route path='/leaderboard' element={<Leaderboard players={players} />} />
|
||||||
</Routes>
|
</Routes>
|
||||||
</BrowserRouter>
|
</BrowserRouter>
|
||||||
)
|
)
|
||||||
|
@ -110,11 +110,9 @@ export function Board() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function WhiteTile({ id, stone }) {
|
function WhiteTile({ id, stone }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div className='Tile white'
|
||||||
className='Tile white'
|
onClick={() => console.log('click', id)}
|
||||||
onClick={() => handleClick(id)}
|
|
||||||
>
|
>
|
||||||
{stone}
|
{stone}
|
||||||
</div>
|
</div>
|
||||||
@ -124,7 +122,3 @@ function WhiteTile({ id, stone }) {
|
|||||||
function BlackTile() {
|
function BlackTile() {
|
||||||
return <div className='Tile black' />
|
return <div className='Tile black' />
|
||||||
}
|
}
|
||||||
|
|
||||||
function handleClick(i) {
|
|
||||||
console.log("click", i)
|
|
||||||
}
|
|
@ -21,13 +21,13 @@ import GameBoard from './games/GameBoard';
|
|||||||
|
|
||||||
import { GamesContext, GamesDispatchContext, GamesApiContext } from '../context/games';
|
import { GamesContext, GamesDispatchContext, GamesApiContext } from '../context/games';
|
||||||
|
|
||||||
export default function Games({ games, dispatchGames, gamesApi }) {
|
export default function Games({ context }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="Games">
|
<GamesContext.Provider value={context.games} >
|
||||||
<GamesContext.Provider value={games} >
|
<GamesDispatchContext.Provider value={context.dispatchGames} >
|
||||||
<GamesDispatchContext.Provider value={dispatchGames} >
|
<GamesApiContext.Provider value={context.gamesApi} >
|
||||||
<GamesApiContext.Provider value={gamesApi} >
|
<div className="Games">
|
||||||
<div className='left-side'>
|
<div className='left-side'>
|
||||||
<ViewSelector />
|
<ViewSelector />
|
||||||
<ViewProvider />
|
<ViewProvider />
|
||||||
@ -39,10 +39,10 @@ export default function Games({ games, dispatchGames, gamesApi }) {
|
|||||||
<GameMessage />
|
<GameMessage />
|
||||||
<Message2Opponent /> */}
|
<Message2Opponent /> */}
|
||||||
</div>
|
</div>
|
||||||
</GamesApiContext.Provider>
|
</div >
|
||||||
</GamesDispatchContext.Provider>
|
</GamesApiContext.Provider>
|
||||||
</GamesContext.Provider>
|
</GamesDispatchContext.Provider>
|
||||||
</div >
|
</GamesContext.Provider>
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2,18 +2,17 @@ import './Leaderboard.css';
|
|||||||
import React from "react"
|
import React from "react"
|
||||||
import Loading from '../components/Loading';
|
import Loading from '../components/Loading';
|
||||||
|
|
||||||
export default function Leaderboard({ leaderboard, user }) {
|
export default function Leaderboard({ players }) {
|
||||||
|
|
||||||
|
const leaderboard = players.leaderboard;
|
||||||
|
|
||||||
if (leaderboard == null)
|
if (leaderboard == null)
|
||||||
return <Loading />
|
return <Loading />
|
||||||
|
|
||||||
const isCurrentUser = (playerName) =>
|
|
||||||
user?.isCurrentUser(playerName) === true ? true : null;
|
|
||||||
|
|
||||||
const tableRows = Object.keys(leaderboard).map(playerName => {
|
const tableRows = Object.keys(leaderboard).map(playerName => {
|
||||||
var rank = leaderboard[playerName];
|
var rank = leaderboard[playerName];
|
||||||
|
|
||||||
return <tr key={playerName} className={isCurrentUser(playerName) && 'currentuser'}>
|
return <tr key={playerName} className={players.isCurrentUser(playerName) && 'currentuser'}>
|
||||||
<td>{playerName}</td>
|
<td>{playerName}</td>
|
||||||
<td>{rank.gamesPlayed}</td>
|
<td>{rank.gamesPlayed}</td>
|
||||||
<td>{rank.gamesWon}</td>
|
<td>{rank.gamesWon}</td>
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
|
|
||||||
export default function ActiveGames() {
|
|
||||||
return (
|
|
||||||
<div>View: ActiveGame</div>
|
|
||||||
)
|
|
||||||
}
|
|
@ -1,7 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
|
|
||||||
export default function GameProposals() {
|
|
||||||
return (
|
|
||||||
<div>View: GameProposals</div>
|
|
||||||
)
|
|
||||||
}
|
|
48
webapp/src/container/games/view/GameSelector.css
Normal file
48
webapp/src/container/games/view/GameSelector.css
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
.GameSelector {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Selectable {
|
||||||
|
border: 1px solid black;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Selectable q {
|
||||||
|
color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Selectable i {
|
||||||
|
font-size: 70%;
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Selectable:hover {
|
||||||
|
background-color: #d3d3d360;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* .Games .li button.action {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Games .li:hover button.action {
|
||||||
|
display: initial;
|
||||||
|
} */
|
||||||
|
|
||||||
|
.Separator {
|
||||||
|
/* width: 20%; */
|
||||||
|
/* height: 20px; */
|
||||||
|
border-bottom: 1px dotted black;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 50%;
|
||||||
|
padding-left: 50%;
|
||||||
|
margin-bottom: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Selectable .Title {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
52
webapp/src/container/games/view/GameSelector.jsx
Normal file
52
webapp/src/container/games/view/GameSelector.jsx
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
import './GameSelector.css';
|
||||||
|
import React, { useContext } from 'react';
|
||||||
|
import { GamesContext } from '../../../context/games';
|
||||||
|
|
||||||
|
import { Color, Player } from '../../../components/Checkers';
|
||||||
|
import Loading from '../../../components/Loading';
|
||||||
|
|
||||||
|
export default function GameSelector({ yours, opponents, onClick }) {
|
||||||
|
|
||||||
|
const games = useContext(GamesContext);
|
||||||
|
if (games.list === null)
|
||||||
|
return <Loading />
|
||||||
|
|
||||||
|
const yoursList = games.list.filter(game => game.status === yours)
|
||||||
|
.map(game => <Selectable game={game} key={game.uuid} onClick={onClick} />)
|
||||||
|
|
||||||
|
const opponentsList = games.list.filter(game => game.status === opponents)
|
||||||
|
.map(game => <Selectable game={game} key={game.uuid} onClick={onClick} />)
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="GameSelector">
|
||||||
|
{yoursList}
|
||||||
|
{opponentsList.length > 0 && <Separator counter={opponentsList.length} />}
|
||||||
|
{opponentsList}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function Selectable({ game, onClick }) {
|
||||||
|
const myColor = game.myColor;
|
||||||
|
const opponentColor = Color.opposite(myColor);
|
||||||
|
const opponentName = game.opponentName;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='Selectable' onClick={() => onClick(game.uuid)}>
|
||||||
|
<div className='Title'>
|
||||||
|
<Player color={myColor} />
|
||||||
|
<i>vs</i>
|
||||||
|
<Player color={opponentColor} name={opponentName} />
|
||||||
|
</div>
|
||||||
|
<q>{game.message}</q>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
function Separator({ counter }) {
|
||||||
|
return (
|
||||||
|
<div className="Separator">
|
||||||
|
waiting for opponent ({counter})
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
@ -1,7 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
|
|
||||||
export default function GamesArchive() {
|
|
||||||
return (
|
|
||||||
<div>View: GameArchive</div>
|
|
||||||
)
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user