]> git.cworth.org Git - lmno.games/blobdiff - tictactoe/tictactoe.jsx
Add a new fetch_put_json
[lmno.games] / tictactoe / tictactoe.jsx
index 5bb84f1b44790f9e08f22af22fef321c421b958c..71690b91e2ecf7692790eeb5517080aa35ef5653 100644 (file)
@@ -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);