From f13b74a94ff89d6d29a00714eff553a98b48ea76 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sun, 19 Mar 2023 23:13:09 +0100 Subject: [PATCH] Updated to next version of backend --- src/truth-table.tsx | 28 +++++++++++++++++----------- src/types/interfaces.ts | 5 +---- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 3c194ae..80d6b5d 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -25,6 +25,10 @@ import { exportToExcel } from "./functions/export"; import { Link } from "./components/link"; import { isTouch } from "./functions/touch"; +const endpoint = "https://api.martials.no/simplify-truths/do/simplify/table"; +const localhost = "http://localhost:8080/simplify/table"; +const useDev = true; + type Option = { name: string, value: "NONE" | "TRUE" | "FALSE" | "DEFAULT" | "TRUE_FIRST" | "FALSE_FIRST" }; // TODO move some code to new components @@ -80,7 +84,7 @@ const TruthTablePage: Component = () => { const [isLoaded, setIsLoaded] = createSignal(null); - const [error, setError] = createSignal(null); + const [error, setError] = createSignal<{ title: string, message: string } | null>(null); /** * Updates the state of the current expression to the new search with all whitespace removed. @@ -107,12 +111,17 @@ hide=${ hideValues().value }&sort=${ sortValues().value }&hideIntermediate=${ hi setError(null); setIsLoaded(false); - fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ encodeURIComponent(exp) }& + fetch(`${ useDev ? localhost : endpoint }/${ encodeURIComponent(exp) }? simplify=${ simplifyEnabled() }&hide=${ hideValues().value }&sort=${ sortValues().value }&caseSensitive=false& hideIntermediate=${ hideIntermediates() }`) .then(res => res.json()) - .then(res => setFetchResult(res)) - .catch(err => setError(err.toString())) + .then(res => { + if (res.status !== "OK" && !res.ok) { + return setError({ title: "Input error", message: res.message }); + } + return setFetchResult(res); + }) + .catch(err => setError({ title: "Fetch error", message: err.toString() })) .finally(() => setIsLoaded(true)); } } @@ -301,12 +310,9 @@ hideIntermediate=${ hideIntermediates() }`) - - - - - - + + 0 } keyed> @@ -315,7 +321,7 @@ hideIntermediate=${ hideIntermediates() }`) - + diff --git a/src/types/interfaces.ts b/src/types/interfaces.ts index 014c5dc..90a9eae 100644 --- a/src/types/interfaces.ts +++ b/src/types/interfaces.ts @@ -58,10 +58,7 @@ export type OrderOfOperations = { }[]; export type FetchResult = { - status: { - code: number, - message: string, - }, + status: string, before: string, after: string, orderOperations: OrderOfOperations | null,