X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=b58f9359ff5bdc7bed3bef174cc6119ee7cee0b7;hp=7ac92e01e4532eb35bd73fd2c878afca01fcc597;hb=6e3daa0768dafe57ad8f045b8314502316dc7c66;hpb=32a2a8dc67592143959e0c9ef77f7065466f4be0 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 7ac92e0..b58f935 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -48,7 +48,7 @@ events.addEventListener("player-enter", event => { events.addEventListener("player-exit", event => { const info = JSON.parse(event.data); - window.game.remove_player(info); + window.game.disable_player(info); }); events.addEventListener("player-update", event => { @@ -227,23 +227,43 @@ const PlayerInfo = React.memo(props => { if (! props.player.id) return null; - const all_players = [props.player, ...props.other_players]; + const all_players = [{...props.player, active:true}, ...props.other_players]; const sorted_players = all_players.sort((a,b) => { return b.score - a.score; }); - const names_and_scores = sorted_players.map(player => { - if (player.score) - return `${player.name} (${player.score})`; - else - return player.name; - }).join(', '); + /* Return a new array with the separator interspersed between + * each element of the array passed in as the argument. + */ + function intersperse(arr, sep) { + return arr.reduce((acc, val) => [...acc, sep, val], []).slice(1); + } + + let names_and_scores = sorted_players.map(player => { + if (player.score) { + return ( + + {player.name} ({player.score}) + + ); + } else { + if (player.active) + return player.name; + else + return null; + } + }).filter(component => component != null); + + names_and_scores = intersperse(names_and_scores, ", "); return (
Players: - {names_and_scores} + {names_and_scores}
); }); @@ -976,21 +996,29 @@ class Game extends React.PureComponent { } set_other_player_info(info) { + const player_object = {...info, active: true}; const other_players_copy = [...this.state.other_players]; const idx = other_players_copy.findIndex(o => o.id === info.id); if (idx >= 0) { - other_players_copy[idx] = info; + other_players_copy[idx] = player_object; } else { - other_players_copy.push(info); + other_players_copy.push(player_object); } this.setState({ other_players: other_players_copy }); } - remove_player(info) { + disable_player(info) { + const idx = this.state.other_players.findIndex(o => o.id === info.id); + if (idx < 0) + return; + + const other_players_copy = [...this.state.other_players]; + other_players_copy[idx].active = false; + this.setState({ - other_players: this.state.other_players.filter(o => o.id !== info.id) + other_players: other_players_copy }); }