From a93e0827656a9a04d5f1ab4aebcb8771ac1383cd Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Mon, 16 Jan 2023 20:59:02 +0100 Subject: [PATCH] Encoding of the expression in the uri --- src/truth-table.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 998e2e6..44e23b0 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -77,7 +77,7 @@ const TruthTablePage: Component = () => { setError(null); setIsLoaded(false); - fetch(`https://api.martials.no/simplify-truths/simplify/table?exp=${ exp }&simplify=${ simplifyEnabled() } + fetch(`https://api.martials.no/simplify-truths/simplify/table?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() } &hide=${ hideValues().value }&sort=${ sortValues().value }`) .then(res => res.json()) .then(res => setFetchResult(res)) @@ -86,18 +86,18 @@ const TruthTablePage: Component = () => { } } - function getInputElement() { + function getInputElement(): HTMLInputElement | null { return document.getElementById(inputId) as HTMLInputElement | null; } - function onTyping() { + function onTyping(): void { const el = getInputElement(); if (el && (el.value !== "") !== typing()) { setTyping(el.value !== ""); } } - function clearSearch() { + function clearSearch(): void { const el = getInputElement(); if (el) { el.value = ""; @@ -109,7 +109,7 @@ const TruthTablePage: Component = () => { const tableId = "truth-table"; const filenameId = "excel-filename"; - onMount(() => { + onMount((): void => { // Focuses searchbar on load getInputElement()?.focus(); });