X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=b03d697ef1cfd2561ffc1b223d4939e3b616fa4a;hp=cd8062959ec67cab269d4e95db44c3167f0e49e2;hb=ae931528b06e796b57147b974b669e980b18c51f;hpb=68a66356ecb9d184e44b8d75e1f7db25926d4af3 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index cd80629..b03d697 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -52,6 +52,42 @@ events.addEventListener("player-update", event => { window.game.set_other_player_info(info); }); +events.addEventListener("game-state", event => { + const state = JSON.parse(event.data); + + for (let prompt of state.prompts) { + window.game.add_or_update_prompt(prompt); + } + + window.game.set_active_prompt(state.active_prompt); + + window.game.set_scores(state.scores); +}); + +events.addEventListener("prompt", event => { + const prompt = JSON.parse(event.data); + + window.game.add_or_update_prompt(prompt); +}); + +events.addEventListener("start", event => { + const prompt = JSON.parse(event.data); + + window.game.set_active_prompt(prompt); +}); + +events.addEventListener("answered", event => { + const players_answered = JSON.parse(event.data); + + window.game.set_players_answered(players_answered); +}); + +events.addEventListener("scores", event => { + const scores = JSON.parse(event.data); + + window.game.set_scores(scores); +}); + /********************************************************* * Game and supporting classes * *********************************************************/ @@ -66,7 +102,7 @@ function copy_to_clipboard(id) document.body.removeChild(tmp); } -function GameInfo(props) { +const GameInfo = React.memo(props => { if (! props.id) return null; @@ -83,9 +119,9 @@ function GameInfo(props) { >Copy Link ); -} +}); -function PlayerInfo(props) { +const PlayerInfo = React.memo(props => { if (! props.player.id) return null; @@ -101,7 +137,7 @@ function PlayerInfo(props) { ))} ); -} +}); function fetch_method_json(method, api = '', data = {}) { const response = fetch(api, { @@ -122,9 +158,44 @@ async function fetch_put_json(api = '', data = {}) { return fetch_method_json('PUT', api, data); } -class CategoryRequest extends React.Component { +class CategoryRequest extends React.PureComponent { constructor(props) { super(props); + this.category = React.createRef(); + + this.handle_change = this.handle_change.bind(this); + this.handle_submit = this.handle_submit.bind(this); + } + + handle_change(event) { + const category_input = this.category.current; + const category = category_input.value; + + if (/[0-9]/.test(category)) + category_input.setCustomValidity(""); + } + + handle_submit(event) { + const form = event.currentTarget; + const category_input = this.category.current; + const category = category_input.value; + + /* Prevent the default page-changing form-submission behavior. */ + event.preventDefault(); + + const match = category.match(/[0-9]+/); + if (match === null) { + category_input.setCustomValidity("Category must include a number"); + form.reportValidity(); + return; + } + + fetch_post_json("prompts", { + items: parseInt(match[0], 10), + prompt: category + }); + + form.reset(); } render() { @@ -132,20 +203,21 @@ class CategoryRequest extends React.Component {

Submit a Category

- Suggest a category to play with your friends. Don't forget to - include the number of items for each person to submit. + Suggest a category to play. Don't forget to include the + number of items for each person to submit.

-
+
- + required + autoComplete="off" + onChange={this.handle_change} + ref={this.category} + />
@@ -160,13 +232,182 @@ class CategoryRequest extends React.Component { } } -class Game extends React.Component { +const PromptOptions = React.memo(props => { + + if (props.prompts.length === 0) + return null; + + return ( +
+

Vote on Categories

+

+ Select any categories below that you'd like to play. + You can choose as many as you'd like. +

+ {props.prompts.map(p => { + return ( + + ); + })} +
+ ); +}); + +const LetsPlay = React.memo(props => { + + function handle_click(prompt_id) { + fetch_post_json + } + + const quorum = Math.round((props.num_players + 1) / 2); + const max_votes = props.prompts.reduce( + (max_so_far, v) => Math.max(max_so_far, v.votes.length), 0); + + if (max_votes < quorum) + return null; + + const candidates = props.prompts.filter(p => p.votes.length >= quorum); + const index = Math.floor(Math.random() * candidates.length); + const winner = candidates[index]; + + return ( +
+

Let's Play

+

+ That should be enough voting. If you're not waiting for any + other players to join, then let's start. +

+ +
+ ); +}); + +class ActivePrompt extends React.PureComponent { + + constructor(props) { + super(props); + const items = props.prompt.items; + + this.state = { + submitted: false + }; + + this.answers = [...Array(items)].map(() => React.createRef()); + this.handle_submit = this.handle_submit.bind(this); + } + + async handle_submit(event) { + const form = event.currentTarget; + + /* Prevent the default page-changing form-submission behavior. */ + event.preventDefault(); + + const response = await fetch_post_json(`answer/${this.props.prompt.id}`, { + answers: this.answers.map(r => r.current.value) + }); + if (response.status == 200) { + const result = await response.json(); + if (! result.valid) { + add_message("danger", result.message); + return; + } + } else { + add_message("danger", "An error occurred submitting your answers"); + return; + } + + /* Everything worked. Server is happy with our answers. */ + form.reset(); + this.setState({ + submitted: true + }); + } + + render() { + if (this.state.submitted) + return ( +
+

{this.props.players_answered}/ + {this.props.players_total} players have responded

+

+ Please wait for the rest of the players to submit their answers. +

+
+ ); + + return ( +
+

The Game of Empathy

+

+ Remember, you're trying to match your answers with + what the other players submit. + Give {this.props.prompt.items} answers for the following prompt: +

+

{this.props.prompt.prompt}

+ + {Array(this.props.prompt.items).fill(null).map((whocares,i) => { + return ( +
+ +
+ ); + })} + +
+ +
+ + +
+ ); + } +} + +class Game extends React.PureComponent { constructor(props) { super(props); this.state = { game_info: {}, player_info: {}, other_players: [], + prompts: [], + active_prompt: null, + players_answered: 0 }; } @@ -195,8 +436,86 @@ class Game extends React.Component { }); } + add_or_update_prompt(prompt) { + const prompts_copy = [...this.state.prompts]; + const idx = prompts_copy.findIndex(p => p.id === prompt.id); + if (idx >= 0) { + prompts_copy[idx] = prompt; + } else { + prompts_copy.push(prompt); + } + this.setState({ + prompts: prompts_copy + }); + } + + set_active_prompt(prompt) { + this.setState({ + active_prompt: prompt + }); + } + + set_players_answered(players_answered) { + this.setState({ + players_answered: players_answered + }); + } + + set_scores(scores) { + this.setState({ + scores: scores + }); + } + render() { const state = this.state; + const players_total = 1 + state.other_players.length; + + if (state.scores) { + return ( +
+

Scores

+
    + {state.scores.scores.map(score => { + return ( +
  • + {score.player}: {score.score} +
  • + ); + })} +
+

Words submitted

+
    + {state.scores.words.map(word => { + return ( +
  • + {word.word}: + {word.players.map(p => { + return ( + {p}{" "} + ); + })} +
  • + ); + })} +
+ +
+ ); + } + + if (state.active_prompt) { + return ; + } return [

, , + , + ]; }