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

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

@ -37,18 +37,25 @@ interface CardProps extends LinkProps {
title?: string title?: string
} }
type Expression = { type AtomicExpression = {
leading: string atomic: string
left: Expression | null
operator: Operator | null
right: Expression | null
trailing: string
atomic: string | null
} }
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 = { type OrderOfOperation = {
before: string before: string
@ -57,14 +64,13 @@ type OrderOfOperation = {
} }
type FetchResult = { type FetchResult = {
status: string
version: string | null version: string | null
before: string before: string
after: string after: string
orderOperations: OrderOfOperation[] | null orderOfOperations: OrderOfOperation[]
expression: Expression | null expression: Expression | null
header: string[] | null truthTable?: {
table: { header: string[]
truthMatrix: Table truthMatrix: TruthMatrix
} | null } | null
} }