diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 5c596b2..62155ef 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -29,10 +29,19 @@ type Option = { name: string, value: "NONE" | "TRUE" | "FALSE" | "DEFAULT" | "TR // TODO move some code to new components const TruthTablePage: Component = () => { + let searchParams: URLSearchParams; + let simplifyDefault = true + if (typeof location !== "undefined") { + searchParams = new URLSearchParams(location.search); + if (searchParams.has("simplify")) { + simplifyDefault = searchParams.get("simplify") === "true"; + } + } + /** * Stores the boolean value of the simplify toggle */ - const [simplifyEnabled, setSimplifyEnabled] = createSignal(true); + const [simplifyEnabled, setSimplifyEnabled] = createSignal(simplifyDefault); /** * The state element used to store the simplified string, "empty string" by default */ @@ -73,7 +82,8 @@ const TruthTablePage: Component = () => { exp = exp.replaceAll("|", "/") if (exp) { - history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }`); + history.pushState(null, "", `?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() }& +hide=${ hideValues().value }&sort=${ sortValues().value }`); getFetchResult(exp).then(null); } } @@ -84,8 +94,8 @@ const TruthTablePage: Component = () => { if (exp !== "") { setError(null); setIsLoaded(false); - fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ encodeURIComponent(exp) }&simplify=${ simplifyEnabled() } - &hide=${ hideValues().value }&sort=${ sortValues().value }`) + fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ encodeURIComponent(exp) }& +simplify=${ simplifyEnabled() }&hide=${ hideValues().value }&sort=${ sortValues().value }&caseSensitive=false`) .then(res => res.json()) .then(res => setFetchResult(res)) .catch(err => setError(err.toString())) @@ -120,13 +130,21 @@ const TruthTablePage: Component = () => { const filenameId = "excel-filename"; onMount((): void => { - const searchParams = new URLSearchParams(location.search); if (searchParams.has("exp")) { const exp = searchParams.get("exp"); if (exp !== "") { getInputElement().value = exp; - getFetchResult(exp).then(null); } + const hide = searchParams.get("hide"); + if (hide) { + setHideValues(hideOptions.find(o => o.value === hide) ?? hideOptions[0]); + } + const sort = searchParams.get("sort"); + if (sort) { + setSortValues(sortOptions.find(o => o.value === sort) ?? sortOptions[0]); + } + + getFetchResult(exp).then(null); } // Focuses searchbar on load @@ -148,11 +166,13 @@ const TruthTablePage: Component = () => {

Fill in a truth expression and it will be simplified for you as much as possible. - It will also genereate a truth table with all possible values. You can use a single letter, - word or multiple words without spacing for each atomic value. - If you do not want to simplify the expression, simply turn off the toggle. - Keywords for operators are defined below. Parentheses is also allowed.

-

API docs can be found here.

+ It will also genereate a truth table with all possible values. You can use a single + letter, + word or multiple words without spacing for each atomic value. + If you do not want to simplify the expression, simply turn off the toggle. + Keywords for operators are defined below. Parentheses is also allowed.

+

API docs can be found here. +

@@ -208,6 +228,7 @@ const TruthTablePage: Component = () => { { "Simplify" }: +