diff options
author | xengineering <me@xengineering.eu> | 2024-03-17 20:14:35 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-24 10:10:54 +0100 |
commit | f4edf94a7bcf94d34eaf91397e3c0eeefec0cc8b (patch) | |
tree | 5f898ec6bcc8560f5edbbc9eed2486b402dc5df1 /view/html/recipe-edit.html | |
parent | 40a576737de18af2fb20387b3b76b12053910fe9 (diff) | |
download | ceres-f4edf94a7bcf94d34eaf91397e3c0eeefec0cc8b.tar ceres-f4edf94a7bcf94d34eaf91397e3c0eeefec0cc8b.tar.zst ceres-f4edf94a7bcf94d34eaf91397e3c0eeefec0cc8b.zip |
view: Add editing of existing recipe steps
Diffstat (limited to 'view/html/recipe-edit.html')
-rw-r--r-- | view/html/recipe-edit.html | 49 |
1 files changed, 48 insertions, 1 deletions
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 @@ <p> <label>Notes</label> <textarea name="notes" rows="4" cols="50">{{.Notes}}</textarea> - </p> + </p>{{range .Steps}} + + <section> + <label>Text</label> + <textarea rows="4" cols="50">{{.Text}}</textarea> + </section>{{end}} <button type="submit">save</button> <button onclick="window.location.href='/recipe/{{.Id}}';">cancel</button> @@ -37,6 +42,48 @@ </main> {{ template "footer" }} <script src="/static/view/static/ceres.js"></script> + <script> + var forms = document.querySelectorAll('form'); + forms.forEach(form => { + form.addEventListener('submit', updateRecipe); + }); + + function updateRecipe(event) { + event.preventDefault(); + + const form = event.target; + const url = form.getAttribute('action'); + const data = new FormData(form); + let obj = Object.fromEntries(data.entries()); + + obj.steps = []; + const steps = document.querySelectorAll('form section textarea'); + steps.forEach(step => { + let s = {}; + s.text = step.value; + obj.steps.push(s); + }); + + 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); + }); + } + </script> </body> </html> {{end}} |