Updated types and adapted to new API

This commit is contained in:
Martin Berg Alstad 2024-06-17 00:47:23 +02:00
parent e834476526
commit 5043a7b4bd
2 changed files with 16 additions and 10 deletions

View File

@ -298,10 +298,7 @@ hideIntermediate=${hideIntermediates()}`)
/> />
</Show> </Show>
<Show <Show when={simplifyEnabled() && (fetchResult()?.operations?.length ?? 0) > 0} keyed>
when={simplifyEnabled() && (fetchResult()?.orderOfOperations?.length ?? 0) > 0}
keyed
>
<ShowMeHow fetchResult={fetchResult} /> <ShowMeHow fetchResult={fetchResult} />
</Show> </Show>
</div> </div>
@ -369,7 +366,7 @@ const ShowMeHow: Component<ShowMeHowProps> = ({ fetchResult }) => (
<MyDisclosure title={"Show me how it's done"}> <MyDisclosure title={"Show me how it's done"}>
<table class={"table"}> <table class={"table"}>
<tbody> <tbody>
<For each={fetchResult()?.orderOfOperations}>{orderOperationRow()}</For> <For each={fetchResult()?.operations}>{operationRow()}</For>
</tbody> </tbody>
</table> </table>
</MyDisclosure> </MyDisclosure>
@ -395,7 +392,7 @@ const HowTo: Component = () => (
</MyDisclosureContainer> </MyDisclosureContainer>
) )
const orderOperationRow = () => (operation: OrderOfOperation, index: Accessor<number>) => ( const operationRow = () => (operation: Operation, index: Accessor<number>) => (
<tr class={"border-b border-dotted border-gray-500"}> <tr class={"border-b border-dotted border-gray-500"}>
<td>{index() + 1}:</td> <td>{index() + 1}:</td>
<td class={"px-2"}> <td class={"px-2"}>

17
src/types/types.d.ts vendored
View File

@ -55,19 +55,28 @@ type Expression = AtomicExpression | NotExpression | BinaryExpression
type BinaryOperator = "AND" | "OR" | "IMPLICATION" type BinaryOperator = "AND" | "OR" | "IMPLICATION"
type Law =
| "ELIMINATION_OF_IMPLICATION"
| "DE_MORGANS_LAWS"
| "ABSORPTION_LAW"
| "ASSOCIATIVE_LAW"
| "DISTRIBUTION_LAW"
| "DOUBLE_NEGATION_ELIMINATION"
| "COMMUTATIVE_LAW"
type TruthMatrix = boolean[][] type TruthMatrix = boolean[][]
type OrderOfOperation = { type Operation = {
before: string before: string
after: string after: string
law: string law: Law
} }
type FetchResult = { type FetchResult = {
version: string | null version: string
before: string before: string
after: string after: string
orderOfOperations: OrderOfOperation[] operations: Operation[]
expression: Expression | null expression: Expression | null
truthTable?: { truthTable?: {
header: string[] header: string[]