From 78116f571ad4801bd10c51077b50ec87f1f68be7 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 17 Feb 2024 19:36:19 +0100 Subject: view: Send forms as JSON with JavaScript While forms can be send without JavaScript this new approach has the benefit that the whole data is send as one JSON. This JSON format can also be used for an API or testing. --- view/static/ceres.js | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 view/static/ceres.js (limited to 'view/static') diff --git a/view/static/ceres.js b/view/static/ceres.js new file mode 100644 index 0000000..acb52a4 --- /dev/null +++ b/view/static/ceres.js @@ -0,0 +1,32 @@ +var forms = document.querySelectorAll('form'); +forms.forEach(form => { + form.addEventListener('submit', sendFormAsJson); +}); + +function sendFormAsJson(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); + }); +} -- cgit v1.2.3-70-g09d2