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
when={simplifyEnabled() && (fetchResult()?.orderOfOperations?.length ?? 0) > 0}
keyed
>
<Show when={simplifyEnabled() && (fetchResult()?.operations?.length ?? 0) > 0} keyed>
<ShowMeHow fetchResult={fetchResult} />
</Show>
</div>
@ -369,7 +366,7 @@ const ShowMeHow: Component<ShowMeHowProps> = ({ fetchResult }) => (
<MyDisclosure title={"Show me how it's done"}>
<table class={"table"}>
<tbody>
<For each={fetchResult()?.orderOfOperations}>{orderOperationRow()}</For>
<For each={fetchResult()?.operations}>{operationRow()}</For>
</tbody>
</table>
</MyDisclosure>
@ -395,7 +392,7 @@ const HowTo: Component = () => (
</MyDisclosureContainer>
)
const orderOperationRow = () => (operation: OrderOfOperation, index: Accessor<number>) => (
const operationRow = () => (operation: Operation, index: Accessor<number>) => (
<tr class={"border-b border-dotted border-gray-500"}>
<td>{index() + 1}:</td>
<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 Law =
| "ELIMINATION_OF_IMPLICATION"
| "DE_MORGANS_LAWS"
| "ABSORPTION_LAW"
| "ASSOCIATIVE_LAW"
| "DISTRIBUTION_LAW"
| "DOUBLE_NEGATION_ELIMINATION"
| "COMMUTATIVE_LAW"
type TruthMatrix = boolean[][]
type OrderOfOperation = {
type Operation = {
before: string
after: string
law: string
law: Law
}
type FetchResult = {
version: string | null
version: string
before: string
after: string
orderOfOperations: OrderOfOperation[]
operations: Operation[]
expression: Expression | null
truthTable?: {
header: string[]