From fa4c7e7af50817bc895f56f3fa25b50b8444407d Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 3 Mar 2024 17:23:09 +0100 Subject: view: Add recipe create --- view/html/nav.html | 1 + view/html/recipe.html | 1 + view/static/ceres.js | 17 +++++++++++++++++ 3 files changed, 19 insertions(+) (limited to 'view') diff --git a/view/html/nav.html b/view/html/nav.html index 7bc0206..9da1b6b 100644 --- a/view/html/nav.html +++ b/view/html/nav.html @@ -1,5 +1,6 @@ {{define "nav"}} {{end}} diff --git a/view/html/recipe.html b/view/html/recipe.html index 04230ea..bce4ffa 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -15,6 +15,7 @@ {{ template "footer" }} + {{end}} diff --git a/view/static/ceres.js b/view/static/ceres.js index 3bfeb6c..2fff18c 100644 --- a/view/static/ceres.js +++ b/view/static/ceres.js @@ -31,6 +31,23 @@ function updateFormData(event) { }); } +function create(url) { + fetch(url, {method: 'POST'}) + .then(response => { + if (response.ok) { + console.log('Create successfully'); + } else { + console.error('Create failed'); + } + if (response.redirected) { + window.location.href = response.url; + } + }) + .catch(error => { + console.error('Network error:', error); + }); +} + function del(url) { fetch(url, {method: 'DELETE'}) .then(response => { -- cgit v1.2.3-70-g09d2