X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=0771bbe3d46e04071927e93de3b01ad3f38910b7;hp=110b330a71142a5de6c27ee0bd567a1c5abf0591;hb=efb56934eb9333fb19e515432c5f03f47e5aa3cf;hpb=67bface07504b1e5809c860f81c2cdc1d3a720a3 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index 110b330..0771bbe 100644 --- a/empathy/empathy.jsx +++ b/empathy/empathy.jsx @@ -58,6 +58,8 @@ events.addEventListener("game-state", event => { for (let prompt of state.prompts) { window.game.add_or_update_prompt(prompt); } + + window.game.set_active_prompt(state.active_prompt); }); events.addEventListener("prompt", event => { @@ -66,6 +68,12 @@ events.addEventListener("prompt", event => { window.game.add_or_update_prompt(prompt); }); +events.addEventListener("start", event => { + const prompt = JSON.parse(event.data); + + window.game.set_active_prompt(prompt); +}); + /********************************************************* * Game and supporting classes * *********************************************************/ @@ -249,6 +257,86 @@ const PromptOptions = React.memo(props => { ); }); +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. +

+ +
+ ); +}); + +const ActivePrompt = React.memo(props => { + + function handle_submit(event) { + + /* Prevent the default page-changing form-submission behavior. */ + event.preventDefault(); + } + + return ( +
+

The Game of Empathy

+

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

+

{props.prompt.prompt}

+
+ {Array(props.prompt.items).fill(null).map((whocares,i) => { + return ( +
+ +
+ ); + })} + +
+ +
+ +
+
+ ); +}); + class Game extends React.PureComponent { constructor(props) { super(props); @@ -298,9 +386,21 @@ class Game extends React.PureComponent { }); } + set_active_prompt(prompt) { + this.setState({ + active_prompt: prompt + }); + } + render() { const state = this.state; + if (state.active_prompt) { + return ; + } + return [ , + ]; }