Updated types and adapted to new API

This commit is contained in:
Martin Berg Alstad 2024-06-13 18:44:02 +02:00
parent 0528645838
commit e834476526
3 changed files with 1473 additions and 1912 deletions

3296
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -25,8 +25,8 @@ type Option = {
}
const fetchUrls = [
"http://localhost:8080/simplify/table/",
"https://api.martials.no/simplify-truths/simplify/table/"
"http://localhost:8000/simplify/table/",
"https://api.martials.no/simplify-truths/v2/simplify/table/"
]
// TODO move some code to new components
@ -78,11 +78,11 @@ const TruthTablePage: Component = () => {
hideIntermediate: hideIntermediates()
})
getFetchResult(exp)
void getFetchResult(exp)
}
}
function getFetchResult(exp: string | null): void {
async function getFetchResult(exp: string | null): Promise<void> {
setFetchResult(null)
if (exp && exp !== "") {
@ -90,18 +90,30 @@ const TruthTablePage: Component = () => {
setError(null)
setIsLoaded(false)
fetch(`${fetchUrls[useLocalhost() ? 0 : 1]}${encodeURIComponent(exp)}?
try {
const response =
await fetch(`${fetchUrls[useLocalhost() ? 0 : 1]}${encodeURIComponent(exp)}?
simplify=${simplifyEnabled()}&hide=${hideValues().value}&sort=${sortValues().value}&caseSensitive=false&
hideIntermediate=${hideIntermediates()}`)
.then((res) => res.json())
.then((res) => {
if (res.status !== "OK" && !res.ok) {
return setError({ title: "Input error", message: res.message })
}
return setFetchResult(res)
const body = await response.json()
if (!response.ok) {
setError({
title: "Input error",
message: body.message
})
} else {
const fetchResult: FetchResult = body
setFetchResult(fetchResult)
}
} catch (e: any) {
setError({
title: "Error",
message: e.message
})
.catch((err) => setError({ title: "Fetch error", message: err.toString() }))
.finally(() => setIsLoaded(true))
} finally {
setIsLoaded(true)
}
}
}
@ -120,7 +132,7 @@ hideIntermediate=${hideIntermediates()}`)
setSortValues(sortOptions.find((o) => o.value === sort) ?? sortOptions[0])
}
getFetchResult(exp)
void getFetchResult(exp)
}
// Focuses searchbar on load
@ -286,12 +298,15 @@ hideIntermediate=${hideIntermediates()}`)
/>
</Show>
<Show when={simplifyEnabled() && (fetchResult()?.orderOperations?.length ?? 0) > 0} keyed>
<Show
when={simplifyEnabled() && (fetchResult()?.orderOfOperations?.length ?? 0) > 0}
keyed
>
<ShowMeHow fetchResult={fetchResult} />
</Show>
</div>
<Show when={isLoaded() && error() === null} keyed>
<Show when={isLoaded() && error() === null && fetchResult()?.truthTable} keyed>
<Show when={simplifyEnabled()} keyed>
<InfoBox
className={"mx-auto w-fit pb-1 text-center text-lg"}
@ -305,8 +320,8 @@ hideIntermediate=${hideIntermediates()}`)
<div class={"m-2 flex justify-center"}>
<div id={"table"} class={"h-[45rem] overflow-auto"}>
<TruthTable
header={fetchResult()?.header ?? undefined}
table={fetchResult()?.table?.truthMatrix}
header={fetchResult()!.truthTable!.header}
table={fetchResult()!.truthTable!.truthMatrix}
id={tableId}
/>
</div>
@ -354,7 +369,7 @@ const ShowMeHow: Component<ShowMeHowProps> = ({ fetchResult }) => (
<MyDisclosure title={"Show me how it's done"}>
<table class={"table"}>
<tbody>
<For each={fetchResult()?.orderOperations}>{orderOperationRow()}</For>
<For each={fetchResult()?.orderOfOperations}>{orderOperationRow()}</For>
</tbody>
</table>
</MyDisclosure>
@ -437,7 +452,7 @@ const KeywordsDisclosure: Component = () => (
</tr>
<tr>
<td class={"pr-2"}>Implication:</td>
<td>{"->"}</td>
<td>{"=>"}</td>
<td class={"px-2"}>IMPLICATION</td>
<td>IMP</td>
</tr>

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

@ -37,18 +37,25 @@ interface CardProps extends LinkProps {
title?: string
}
type Expression = {
leading: string
left: Expression | null
operator: Operator | null
right: Expression | null
trailing: string
atomic: string | null
type AtomicExpression = {
atomic: string
}
type Operator = "AND" | "OR" | "NOT" | "IMPLICATION"
type NotExpression = {
not: Expression
}
type Table = boolean[][]
type BinaryExpression = {
left: Expression
operator: BinaryOperator
right: Expression
}
type Expression = AtomicExpression | NotExpression | BinaryExpression
type BinaryOperator = "AND" | "OR" | "IMPLICATION"
type TruthMatrix = boolean[][]
type OrderOfOperation = {
before: string
@ -57,14 +64,13 @@ type OrderOfOperation = {
}
type FetchResult = {
status: string
version: string | null
before: string
after: string
orderOperations: OrderOfOperation[] | null
orderOfOperations: OrderOfOperation[]
expression: Expression | null
header: string[] | null
table: {
truthMatrix: Table
truthTable?: {
header: string[]
truthMatrix: TruthMatrix
} | null
}