X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=tictactoe%2Ftictactoe.jsx;h=71690b91e2ecf7692790eeb5517080aa35ef5653;hp=498e708fbf9cc3d733517ff91215300952afee31;hb=e804009ec5cc7bb804c229915ce1c8ebedaa88c7;hpb=a203a3aca4fb8428bfa47d7f05c3478780d69554 diff --git a/tictactoe/tictactoe.jsx b/tictactoe/tictactoe.jsx index 498e708..71690b9 100644 --- a/tictactoe/tictactoe.jsx +++ b/tictactoe/tictactoe.jsx @@ -143,9 +143,9 @@ class Board extends React.Component { } } -function fetch_post_json(api = '', data = {}) { +function fetch_method_json(method, api = '', data = {}) { const response = fetch(api, { - method: 'POST', + method: method, headers: { 'Content-Type': 'application/json' }, @@ -154,6 +154,14 @@ function fetch_post_json(api = '', data = {}) { return response; } +function fetch_post_json(api = '', data = {}) { + return fetch_method_json('POST', api, data); +} + +async function fetch_put_json(api = '', data = {}) { + return fetch_method_json('PUT', api, data); +} + class Game extends React.Component { constructor(props) { super(props); @@ -247,15 +255,17 @@ class Game extends React.Component { return [ , , -
+
{status}