improved logging; improved error handeling; made FIP entrys delete

This commit is contained in:
Marcel Gansfusz
2025-09-07 21:16:42 +02:00
parent 6b1805c0ac
commit 09e1e74af2
4 changed files with 84 additions and 24 deletions

View File

@@ -288,6 +288,7 @@ async function submitForm(formData) {
//let responseJSON=await response.json();
if (response.ok) {
console.log("Submit OK");
doc = new PDFDocument("./files/greeting", "greeting", "pdf");
// console.log(response);
// window.open(response);
// console.log(URL.createObjectURL(response.body));
@@ -300,6 +301,7 @@ async function submitForm(formData) {
window.open(blobURL, "_blank");
} else {
console.log("Submit failed");
window.alert("Error: " + (await response.json())["detail"]);
}
} catch (error) {
console.error("Error" + error);
@@ -339,6 +341,7 @@ async function uploadFile(formData) {
);
} else {
console.log("upload failed");
window.alert("Error: " + (await response.json())["detail"]);
}
} catch (error) {
console.error("Error: " + error);

View File

@@ -8,7 +8,11 @@ function autocomplete(inp, type) {
the text field element and an array of possible autocompleted values:*/
var currentFocus;
/*execute a function when someone writes in the text field:*/
inp.addEventListener("focus", updateAutocomplete);
inp.addEventListener("focus", (e) => {
e.target.select();
// this.select();
updateAutocomplete();
});
inp.addEventListener("input", updateAutocomplete);
async function updateAutocomplete() {
activeAutocompletion = type;