diff --git a/src/truth-table.tsx b/src/truth-table.tsx index e11956a..ceb6959 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -57,7 +57,7 @@ const TruthTablePage: Component = () => { const [sortValues, setSortValues] = createSignal(sortOptions[0]); - const [isLoaded, setIsLoaded] = createSignal(true); + const [isLoaded, setIsLoaded] = createSignal(null); const [error, setError] = createSignal(null); @@ -68,16 +68,16 @@ const TruthTablePage: Component = () => { function onClick(e: { preventDefault: () => void; }): void { e.preventDefault(); // Stops the page from reloading onClick const exp = getInputElement()?.value; - - history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }`); - - getFetchResult(exp).then(null); + if (exp) { + history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }`); + getFetchResult(exp).then(null); + } } - async function getFetchResult(exp: string | null): Promise { + async function getFetchResult(exp: string): Promise { setFetchResult(null); - if (exp && exp !== "") { + if (exp !== "") { setError(null); setIsLoaded(false); fetch(`https://api.martials.no/simplify-truths/simplify/table?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() } @@ -107,6 +107,7 @@ const TruthTablePage: Component = () => { if (el) { el.value = ""; setTyping(false); + history.replaceState(null, "", location.pathname); el.focus(); } } @@ -118,8 +119,10 @@ const TruthTablePage: Component = () => { const searchParams = new URLSearchParams(location.search); if (searchParams.has("exp")) { const exp = searchParams.get("exp"); - getInputElement().value = exp; - getFetchResult(exp).then(null); + if (exp !== "") { + getInputElement().value = exp; + getFetchResult(exp).then(null); + } } // Focuses searchbar on load @@ -248,7 +251,7 @@ const TruthTablePage: Component = () => { - +