From f4edf94a7bcf94d34eaf91397e3c0eeefec0cc8b Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 17 Mar 2024 20:14:35 +0100 Subject: view: Add editing of existing recipe steps --- view/html/recipe-edit.html | 49 +++++++++++++++++++++++++++++++++++++++++++++- view/static/ceres.js | 33 ------------------------------- 2 files changed, 48 insertions(+), 34 deletions(-) (limited to 'view') diff --git a/view/html/recipe-edit.html b/view/html/recipe-edit.html index a6b4a66..33661c3 100644 --- a/view/html/recipe-edit.html +++ b/view/html/recipe-edit.html @@ -29,7 +29,12 @@

-

+

{{range .Steps}} + +
+ + +
{{end}} @@ -37,6 +42,48 @@ {{ template "footer" }} + {{end}} diff --git a/view/static/ceres.js b/view/static/ceres.js index 2fff18c..a8326da 100644 --- a/view/static/ceres.js +++ b/view/static/ceres.js @@ -1,36 +1,3 @@ -var forms = document.querySelectorAll('form'); -forms.forEach(form => { - form.addEventListener('submit', updateFormData); -}); - -function updateFormData(event) { - event.preventDefault(); - - const form = event.target; - const url = form.getAttribute('action'); - const data = new FormData(form); - const obj = Object.fromEntries(data.entries()); - - fetch(url, { - method: 'POST', - headers: {'Content-Type': 'application/json'}, - body: JSON.stringify(obj) - }) - .then(response => { - if (response.ok) { - console.log('Form submitted successfully'); - } else { - console.error('Form submission failed'); - } - if (response.redirected) { - window.location.href = response.url; - } - }) - .catch(error => { - console.error('Network error:', error); - }); -} - function create(url) { fetch(url, {method: 'POST'}) .then(response => { -- cgit v1.2.3-70-g09d2