diff --git a/src/truth-table.tsx b/src/truth-table.tsx index cd00b44..e08f049 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -5,9 +5,7 @@ import { Input } from "./components/input"; import { Icon } from "solid-heroicons"; import TruthTable from "./components/truth-table"; import { InfoBox, MyDisclosure, MyDisclosureContainer } from "./components/output"; -// import MySwitch from "./components/switch"; // import { diffChars } from "diff"; -// import { Menu } from "@headlessui/react"; // import MyMenu from "./components/menu"; // import { type BookType, utils, write, writeFile } from "xlsx" // import MyDialog from "./components/myDialog"; @@ -16,6 +14,7 @@ import { type Component, createSignal, JSX, Show } from "solid-js"; import { For, render } from "solid-js/web"; import Row from "./components/row"; import { magnifyingGlass, xMark } from "solid-heroicons/solid"; +import { MySwitch } from "./components/button"; // TODO move some code to new components const TruthTablePage: Component = () => { @@ -66,34 +65,36 @@ const TruthTablePage: Component = () => { e.preventDefault(); // Stops the page from reloading onClick const exp = (document.getElementById(inputId) as HTMLInputElement | null)?.value; + setFetchResult(null); + if (exp && exp !== "") { // TODO add loading animation let result: FetchResult | undefined; - await fetch(`https://api.martials.no/simplify-truths/simplify/table?exp=${ exp }&simplify=${ simplifyEnabled() }`) + await fetch(`http://localhost:8080/simplify/table?exp=${ exp }&simplify=${ simplifyEnabled() }`) .then(res => res.json()) .then(res => result = res) .catch(err => console.error(err)) // TODO show error on screen .finally(); - console.log(result); + // console.log(result); setFetchResult(result); } - else { - setFetchResult(null); - } + } + + function getInput() { + return document.getElementById(inputId) as HTMLInputElement | null; } function onTyping() { - console.log("typing"); - const el = (document.getElementById(inputId) as HTMLInputElement | null); + const el = getInput(); if (el && (el.value !== "") !== typing()) { setTyping(el.value !== ""); } } function clearSearch() { - const el = (document.getElementById(inputId) as HTMLInputElement | null); + const el = getInput(); if (el) { el.value = ""; setFetchResult(null); @@ -203,8 +204,9 @@ const TruthTablePage: Component = () => { { "Simplify" }: - {/**/ } +
{/* { {/*}*/ } - {/*{*/ } - {/* fetchResult && fetchResult()?.status.code !== 200 &&*/ } - {/* */ } - {/*

{ fetchResult()?.status.message }

*/ } - {/*
*/ } - {/*}*/ } - {/*{*/ } - {/* fetchResult()?.orderOperations && simplifyEnabled() && fetchResult()?.orderOperations.length > 0 &&*/ } - {/* */ } - {/* */ } - {/* */ } - {/* */ } - {/* {*/ } - {/* (operation, index) => (*/ } - {/* */ } - {/* */ } - {/* */ } - {/* { typeof window !== "undefined" && window.outerWidth > 640 &&*/ } - {/* }*/ } - {/* */ } - {/* ) }*/ } - {/* */ } - {/* */ } - {/*
{ index() + 1 }:*/ } - {/* /!**!/*/ } - {/* /!* { (part) => (*!/*/ } - {/* /!* *!/*/ } - {/* /!* { part.value }*!/*/ } - {/* /!* ) }*!/*/ } - {/* /!**!/*/ } - {/* { typeof window !== "undefined" && window.outerWidth <= 640 &&*/ } - {/*

{ t("using") }: { operation.law }

}*/ } - {/*
{ t("using") }: { operation.law }
*/ } - {/*
*/ } - {/*
*/ } - {/*}*/ } + { + fetchResult() && fetchResult()?.status.code !== 200 && + +

{ fetchResult()?.status.message }

+
+ } + { + fetchResult()?.orderOperations && simplifyEnabled() && fetchResult()?.orderOperations.length > 0 && + + + + + { + (operation, index) => ( + + + + { typeof window !== "undefined" && window.outerWidth > 640 && + } + + ) } + + +
{ index() + 1 }: + {/* // TODO add method or create own + + { (part) => ( + + { part.value } + ) } + + */ } + { typeof window !== "undefined" && window.outerWidth <= 640 && +

{ "using" }: { operation.law }

} +
{ "using" }: { operation.law }
+
+
+ }
{ fetchResult()?.expression && <> - {/*
*/ } - {/* {*/ } - {/* simplifyEnabled &&*/ } - {/* */ } - {/*

{ fetchResult()?.after }

*/ } - {/*
*/ } - {/* }*/ } - {/*
*/ } +
+ { + simplifyEnabled && + +

{ fetchResult()?.after }

+
+ } +