From 153f9bf797f1a1a8ce9dddd1e3e47f8fb4f0ea36 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Tue, 24 Jan 2023 23:32:36 +0100 Subject: [PATCH] Refactoring and added link to docs --- src/truth-table.tsx | 93 +++++++++++++++++++++++++++------------------ 1 file changed, 55 insertions(+), 38 deletions(-) diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 1698999..5c596b2 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -22,6 +22,7 @@ import { import { Button, MySwitch } from "./components/button"; import MyDialog from "./components/dialog"; import { exportToExcel } from "./functions/export"; +import { Link } from "./components/link"; type Option = { name: string, value: "NONE" | "TRUE" | "FALSE" | "DEFAULT" | "TRUE_FIRST" | "FALSE_FIRST" }; @@ -146,11 +147,12 @@ const TruthTablePage: Component = () => {
-

{ `Fill in a truth expression and it will be simplified for you as much as possible. +

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` }

+ Keywords for operators are defined below. Parentheses is also allowed.

+

API docs can be found here.

@@ -286,41 +288,7 @@ const TruthTablePage: Component = () => { 0 } keyed> - - - -
- - - { - (operation, index) => ( - - - - { typeof window !== "undefined" && window.outerWidth > 640 && - } - - ) } - - - -
{ index() + 1 }:{ - - - { (part) => ( - - { part.value } - ) } - } - - { typeof window !== "undefined" && window.outerWidth <= 640 && -

{ "using" }: { operation.law }

} -
{ "using" }: { operation.law }
-
-
- +
@@ -328,7 +296,7 @@ const TruthTablePage: Component = () => { + title={ "Output:" } id={ "expression-output" }>

{ fetchResult()?.after }

@@ -379,4 +347,53 @@ const ErrorBox: Component<{ title: string, error: string }> = ({ title, error }) ) } +interface ShowMeHowProps { + fetchResult: Accessor, +} + +const ShowMeHow: Component = ({ fetchResult }) => { + return ( + + + + + + { + (operation, index) => ( + + + + 640 } + keyed> + + + + ) } + + + +
{ index() + 1 }:{ + + + { (part) => ( + + { part.value } + ) } + } + + +

{ "using" }: { operation.law }

+
+ +
{ "using" }: { operation.law }
+
+
+ ) +} + render(() => , document.getElementById("root") as HTMLElement);