From 4c95704f86a395dd24190cd648365b8e7a67cbec Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sat, 21 Jan 2023 11:44:12 +0100 Subject: [PATCH] When simplifying, the expression will be added to the url, and start a fetch on load if present --- src/truth-table.tsx | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 44e23b0..e11956a 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -28,8 +28,6 @@ type Option = { name: string, value: "NONE" | "TRUE" | "FALSE" | "DEFAULT" | "TR // TODO move some code to new components const TruthTablePage: Component = () => { - const inputId = "truth-input"; - /** * Stores the boolean value of the simplify toggle */ @@ -59,7 +57,7 @@ const TruthTablePage: Component = () => { const [sortValues, setSortValues] = createSignal(sortOptions[0]); - const [isLoaded, setIsLoaded] = createSignal(null); + const [isLoaded, setIsLoaded] = createSignal(true); const [error, setError] = createSignal(null); @@ -67,14 +65,19 @@ const TruthTablePage: Component = () => { * Updates the state of the current expression to the new search with all whitespace removed. * If the element is not found, reset. */ - async function onClick(e: { preventDefault: () => void; }): Promise { + function onClick(e: { preventDefault: () => void; }): void { e.preventDefault(); // Stops the page from reloading onClick - const exp = (document.getElementById(inputId) as HTMLInputElement | null)?.value; + const exp = getInputElement()?.value; + history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }`); + + getFetchResult(exp).then(null); + } + + async function getFetchResult(exp: string | null): Promise { setFetchResult(null); if (exp && exp !== "") { - setError(null); setIsLoaded(false); fetch(`https://api.martials.no/simplify-truths/simplify/table?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() } @@ -86,6 +89,8 @@ const TruthTablePage: Component = () => { } } + const inputId = "truth-input"; + function getInputElement(): HTMLInputElement | null { return document.getElementById(inputId) as HTMLInputElement | null; } @@ -110,6 +115,13 @@ const TruthTablePage: Component = () => { const filenameId = "excel-filename"; onMount((): void => { + const searchParams = new URLSearchParams(location.search); + if (searchParams.has("exp")) { + const exp = searchParams.get("exp"); + getInputElement().value = exp; + getFetchResult(exp).then(null); + } + // Focuses searchbar on load getInputElement()?.focus(); }); @@ -236,7 +248,7 @@ const TruthTablePage: Component = () => { - +