X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=empathy%2Fempathy.jsx;h=39461898cf5efd9d7478a2acd68a333c791be74c;hp=b69ce6f15c3d090e178b27e78e89686a2e7051a1;hb=ff43730d806faf03b488ee59c49d576686696d6c;hpb=dee335da95357a8993a22aab01809d5bbd3e9b57 diff --git a/empathy/empathy.jsx b/empathy/empathy.jsx index b69ce6f..3946189 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 * *********************************************************/ @@ -80,7 +88,7 @@ function copy_to_clipboard(id) document.body.removeChild(tmp); } -function GameInfo(props) { +const GameInfo = React.memo(props => { if (! props.id) return null; @@ -97,9 +105,9 @@ function GameInfo(props) { >Copy Link ); -} +}); -function PlayerInfo(props) { +const PlayerInfo = React.memo(props => { if (! props.player.id) return null; @@ -115,7 +123,7 @@ function PlayerInfo(props) { ))} ); -} +}); function fetch_method_json(method, api = '', data = {}) { const response = fetch(api, { @@ -136,7 +144,7 @@ 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(); @@ -210,11 +218,7 @@ class CategoryRequest extends React.Component { } } -function PromptOptions(props) { - - function handle_click(id) { - fetch_post_json(`vote/${id}`); - } +const PromptOptions = React.memo(props => { if (props.prompts.length === 0) return null; @@ -231,7 +235,7 @@ function PromptOptions(props) { + + ); +}); + +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 ( +
+

Answers submitted

+

+ 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.Component { +class Game extends React.PureComponent { constructor(props) { super(props); this.state = { @@ -302,9 +432,21 @@ class Game extends React.Component { }); } + set_active_prompt(prompt) { + this.setState({ + active_prompt: prompt + }); + } + render() { const state = this.state; + if (state.active_prompt) { + return ; + } + return [ , + ]; }