From 1ca1132787e13e99eaba70123ee8dd7c0cbab385 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Wed, 8 Jul 2020 02:17:10 +0200 Subject: Add HTML button for removing elements. --- static/script.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'static/script.js') diff --git a/static/script.js b/static/script.js index 27a46ae0..678ff244 100644 --- a/static/script.js +++ b/static/script.js @@ -169,6 +169,31 @@ function create_event_finisher (callback) { } } +// for debugging +let last_xml; + +async function remove_event (element) { + console.log(element); + let xmltext = element.getElementsByClassName("xcal")[0].innerText; + let parser = new DOMParser(); + let xml = parser.parseFromString(xmltext, "text/xml"); + + // for debugging + last_xml = xml; + + let uid = xml.querySelector("uid").textContent.trim() + + let data = new URLSearchParams(); + data.append('uid', uid); + + let response = await fetch ( '/remove', { + method: 'POST', + body: data + }); + + console.log(response); +} + function time_to_date (time) { return [ time.getFullYear(), String(time.getMonth() + 1).padStart(2, '0'), -- cgit v1.2.3