Compare commits

...

8 Commits

Author SHA1 Message Date
Martin Berg Alstad
d64e2497a8 Updated deps.
Fixed type errors.
2024-07-18 16:30:03 +02:00
Martin Berg Alstad
2376eadea9 Changed operators before sending to backend 2024-07-04 13:29:28 +02:00
Martin Berg Alstad
fea9b8324d Updated name of law 2024-06-27 19:23:47 +02:00
Martin Berg Alstad
ed1fc8ef59 IgnoreCase and changed imply symbol 2024-06-21 18:06:54 +02:00
Martin Berg Alstad
b75cbba462 Merge remote-tracking branch 'origin/master' into simplify-truths-v2 2024-06-21 17:54:17 +02:00
Martin Berg Alstad
2c92ef38df Fixed hideIntermediateSteps 2024-06-17 23:12:44 +02:00
Martin Berg Alstad
5043a7b4bd Updated types and adapted to new API 2024-06-17 00:47:23 +02:00
Martin Berg Alstad
e834476526 Updated types and adapted to new API 2024-06-13 18:44:02 +02:00
6 changed files with 1594 additions and 2018 deletions

View File

@ -11,22 +11,22 @@
}, },
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"autoprefixer": "^10.4.17", "autoprefixer": "^10.4.19",
"postcss": "^8.4.35", "postcss": "^8.4.39",
"prettier": "3.2.5", "prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.5.11", "prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.1", "tailwindcss": "^3.4.6",
"typescript": "^5.3.3", "typescript": "^5.5.3",
"vite": "^5.1.4", "vite": "^5.3.4",
"vite-plugin-solid": "^2.10.1" "vite-plugin-solid": "^2.10.2"
}, },
"dependencies": { "dependencies": {
"@solidjs/router": "^0.12.4", "@solidjs/router": "^0.14.1",
"@types/diff": "^5.0.9", "@types/diff": "^5.2.1",
"diff": "^5.2.0", "diff": "^5.2.0",
"solid-headless": "^0.13.1", "solid-headless": "^0.13.1",
"solid-heroicons": "^3.2.4", "solid-heroicons": "^3.2.4",
"solid-js": "^1.8.15", "solid-js": "^1.8.18",
"xlsx": "^0.18.5" "xlsx": "^0.18.5"
} }
} }

3454
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ import { For } from "solid-js/web"
import { type Component } from "solid-js" import { type Component } from "solid-js"
interface TruthTableProps extends SimpleProps { interface TruthTableProps extends SimpleProps {
table?: Table table?: TruthMatrix
header?: string[] header?: string[]
} }
@ -20,8 +20,7 @@ const TruthTable: Component<TruthTableProps> = ({ table, header, className, styl
<th <th
scope={"col"} scope={"col"}
class={ class={
`sticky top-0 bg-default-bg text-center outline `sticky top-0 bg-default-bg text-center outline outline-2 outline-offset-[-1px] outline-gray-500 [position:-webkit-sticky;]` /*TODO sticky header at the top of the screen */
outline-2 outline-offset-[-1px] outline-gray-500 [position:-webkit-sticky;]` /*TODO sticky header at the top of the screen */
} }
> >
<p class={"w-max px-2"}>{exp}</p> <p class={"w-max px-2"}>{exp}</p>
@ -37,8 +36,7 @@ const TruthTable: Component<TruthTableProps> = ({ table, header, className, styl
<For each={row}> <For each={row}>
{(value) => ( {(value) => (
<td <td
class={`border border-gray-500 text-center last:underline class={`border border-gray-500 text-center last:underline ${value ? "bg-green-700" : "bg-red-700"}`}
${value ? "bg-green-700" : "bg-red-700"}`}
> >
<p>{value ? "T" : "F"}</p> <p>{value ? "T" : "F"}</p>
</td> </td>

View File

@ -25,18 +25,20 @@ 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
// TODO option to ignore case
// TODO more user friendly options
const TruthTablePage: Component = () => { const TruthTablePage: Component = () => {
const [searchParams, setSearchParams] = useSearchParams() const [searchParams, setSearchParams] = useSearchParams()
let inputElement: HTMLInputElement | undefined = undefined let inputElement!: HTMLInputElement
let simplifyDefault = searchParams.simplify === undefined || searchParams.simplify === "true", let simplifyDefault = searchParams.simplify === undefined || searchParams.simplify === "true",
inputContent = !!searchParams.exp, inputContent = !!searchParams.exp,
hideIntermediate = searchParams.hideIntermediate === "true" hideIntermediate = searchParams.hideIntermediateSteps === "true"
const [simplifyEnabled, setSimplifyEnabled] = createSignal(simplifyDefault) const [simplifyEnabled, setSimplifyEnabled] = createSignal(simplifyDefault)
const [fetchResult, setFetchResult] = createSignal<FetchResult | null>(null) const [fetchResult, setFetchResult] = createSignal<FetchResult | null>(null)
@ -75,14 +77,14 @@ const TruthTablePage: Component = () => {
simplify: simplifyEnabled(), simplify: simplifyEnabled(),
hide: hideValues().value, hide: hideValues().value,
sort: sortValues().value, sort: sortValues().value,
hideIntermediate: hideIntermediates() hideIntermediateSteps: 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 +92,30 @@ const TruthTablePage: Component = () => {
setError(null) setError(null)
setIsLoaded(false) setIsLoaded(false)
fetch(`${fetchUrls[useLocalhost() ? 0 : 1]}${encodeURIComponent(exp)}? try {
simplify=${simplifyEnabled()}&hide=${hideValues().value}&sort=${sortValues().value}&caseSensitive=false& const response =
hideIntermediate=${hideIntermediates()}`) await fetch(`${fetchUrls[useLocalhost() ? 0 : 1]}${encodeURIComponent(exp)}?
.then((res) => res.json()) simplify=${simplifyEnabled()}&hide=${hideValues().value}&sort=${sortValues().value}&ignoreCase=false&
.then((res) => { hideIntermediateSteps=${hideIntermediates()}`)
if (res.status !== "OK" && !res.ok) {
return setError({ title: "Input error", message: res.message }) const body = await response.json()
} if (!response.ok) {
return setFetchResult(res) 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 {
.finally(() => setIsLoaded(true)) setIsLoaded(true)
}
} }
} }
@ -120,7 +134,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 +300,12 @@ hideIntermediate=${hideIntermediates()}`)
/> />
</Show> </Show>
<Show when={simplifyEnabled() && (fetchResult()?.orderOperations?.length ?? 0) > 0} keyed> <Show when={simplifyEnabled() && (fetchResult()?.operations?.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 +319,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 +368,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()?.operations}>{operationRow()}</For>
</tbody> </tbody>
</table> </table>
</MyDisclosure> </MyDisclosure>
@ -372,7 +386,8 @@ const HowTo: Component = () => (
Parentheses is also allowed. Parentheses is also allowed.
</p> </p>
<p> <p>
API docs can be found <Link to={"https://api.martials.no/simplify-truths"}>here</Link>. API docs can be found{" "}
<Link to={"https://api.martials.no/simplify-truths/v2/openapi"}>here</Link>.
</p> </p>
</MyDisclosure> </MyDisclosure>
@ -380,7 +395,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"}>
@ -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>

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

@ -37,34 +37,51 @@ 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 OrderOfOperation = { type Expression = AtomicExpression | NotExpression | BinaryExpression
type BinaryOperator = "AND" | "OR" | "IMPLICATION"
type Law =
| "ELIMINATION_OF_IMPLICATION"
| "DE_MORGANS_LAWS"
| "ABSORPTION_LAW"
| "ASSOCIATIVE_LAW"
| "DISTRIBUTIVE_LAW"
| "DOUBLE_NEGATION_ELIMINATION"
| "COMMUTATIVE_LAW"
type TruthMatrix = boolean[][]
type Operation = {
before: string before: string
after: string after: string
law: string law: Law
}
type Table = {
header: string[]
truthMatrix: TruthMatrix
} }
type FetchResult = { type FetchResult = {
status: string version: string
version: string | null
before: string before: string
after: string after: string
orderOperations: OrderOfOperation[] | null operations: Operation[]
expression: Expression | null expression: Expression | null
header: string[] | null truthTable?: Table | null
table: {
truthMatrix: Table
} | null
} }

View File

@ -7,8 +7,8 @@ export function replaceOperators(expression: string): string {
return expression return expression
.replaceAll(/\//g, "|") .replaceAll(/\//g, "|")
.replaceAll(/¬/g, "!") .replaceAll(/¬/g, "!")
.replaceAll(/\sOR\s/gi, " | ") .replaceAll(/\s(OR|)\s/gi, " | ")
.replaceAll(/\sAND\s/gi, " & ") .replaceAll(/\s(AND|⋀)\s/gi, " & ")
.replaceAll(/\s(IMPLICATION|IMP)\s/gi, " -> ") .replaceAll(/\s(IMPLICATION|IMP|->)\s/gi, " => ")
.replaceAll(/\sNOT\s/gi, " !") .replaceAll(/\sNOT\s/gi, " !")
} }