From a577f5538760dc774097788264057d568f83185f Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 12 Nov 2020 21:44:11 -0700 Subject: [PATCH] handle JS errors (#6) --- www/index.html | 16 ++++++++++------ www/index.js | 26 ++++++++++++++++++-------- 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/www/index.html b/www/index.html index 7a414bf..7ffee01 100644 --- a/www/index.html +++ b/www/index.html @@ -22,19 +22,23 @@

gpx.thermokar.st

- +

This client-side tool is for merging GPX files. Please note, this has only been tested on GPX files produced by Garmin and Strava - your mileage may vary. - Source: - - https://github.com/thermokarst/gpx-web-utils - +

- +
+
+

+ + + https://github.com/thermokarst/gpx-web-utils + +

diff --git a/www/index.js b/www/index.js index e9f7a18..ecb0ea7 100644 --- a/www/index.js +++ b/www/index.js @@ -1,27 +1,37 @@ import * as gpx from "gpx-web-utils"; const inputElement = document.getElementById("gpxInput"); +const loadingElement = document.createElement("span"); +loadingElement.innerHTML = "processing..."; +inputElement.value = ""; inputElement.addEventListener("change", readFiles, false); function readFiles() { if (inputElement.files.length < 2) { alert("open two or more files"); return; } + inputElement.replaceWith(loadingElement); const files = Array.from(inputElement.files); const promises = files.map(f => f.text()); Promise.all(promises).then(gpxes => { - const merged = gpx.merge(gpxes); - writeOutput(merged); - inputElement.value = ""; + try { + const merged = gpx.merge(gpxes); + writeOutput(merged); + } catch { + alert("there was a problem, please check the console."); + } finally { + inputElement.value = ""; + loadingElement.replaceWith(inputElement); + } }); } function writeOutput(file) { const blob = new Blob([file], {type: "text/gpx"}); - const a = document.createElement("a"); - a.href = URL.createObjectURL(blob); - a.download = "merged.gpx"; - a.click(); - URL.revokeObjectURL(a.href); + const anchorElement = document.createElement("a"); + anchorElement.href = URL.createObjectURL(blob); + anchorElement.download = "merged.gpx"; + anchorElement.click(); + URL.revokeObjectURL(anchorElement.href); }