X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=tictactoe%2Ftictactoe.jsx;h=49c6005c38fe395c610502853f1ec69ab28d3438;hp=f0e9e88d6a83f6a9262cbb47a467f293a431b3a7;hb=e92b0500735ed3f70c218cb38ad421483a497d18;hpb=d3a035c38d6deff85f63e313430ac7e45955e2a9 diff --git a/tictactoe/tictactoe.jsx b/tictactoe/tictactoe.jsx index f0e9e88..49c6005 100644 --- a/tictactoe/tictactoe.jsx +++ b/tictactoe/tictactoe.jsx @@ -100,9 +100,13 @@ function PlayerInfo(props) {

Players

{props.player.name} {props.player.team ? ` (${props.player.team})` : ""} - {", "} - {props.opponent.name} - {props.opponent.team ? ` (${props.opponent.team})` : ""} + {props.opponents.map(opponent => ( + + {", "} + {opponent.name} + {opponent.team ? ` (${opponent.team})` : ""} + + ))} ); } @@ -186,7 +190,7 @@ class Game extends React.Component { this.state = { game_info: {}, player_info: {}, - opponent_info: {}, + opponent_info: [], history: [ { squares: Array(9).fill(null) @@ -210,8 +214,15 @@ class Game extends React.Component { } set_opponent_info(info) { + const new_opponents = [...this.state.opponent_info]; + const idx = new_opponents.findIndex(o => o.id === info.id); + if (idx >= 0) { + new_opponents[idx] = info; + } else { + new_opponents.push(info); + } this.setState({ - opponent_info: info + opponent_info: new_opponents }); } @@ -322,7 +333,7 @@ class Game extends React.Component { ,