Experimented with fetch in a web-worker
This commit is contained in:
parent
401e5bda08
commit
05da28d73e
21
src/functions/fetch.ts
Normal file
21
src/functions/fetch.ts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
/* @refresh reload */
|
||||||
|
import type { FetchResultsProps, WebWorkerProps } from '../types/interfaces';
|
||||||
|
|
||||||
|
onmessage = async (e) => {
|
||||||
|
console.log("Worker: Message received from main script")
|
||||||
|
const { expression, simplifyEnabled, hideValue, sortValue, hideIntermediates }: WebWorkerProps = e.data;
|
||||||
|
|
||||||
|
const result: FetchResultsProps = {
|
||||||
|
fetchResult: null,
|
||||||
|
error: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
await fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ encodeURIComponent(expression) }&
|
||||||
|
simplify=${ simplifyEnabled }&hide=${ hideValue }&sort=${ sortValue }&caseSensitive=false&
|
||||||
|
hideIntermediate=${ hideIntermediates }`)
|
||||||
|
.then(res => res.json())
|
||||||
|
.then(res => result.fetchResult = res)
|
||||||
|
.catch(err => result.error = err.toString());
|
||||||
|
|
||||||
|
postMessage(result);
|
||||||
|
};
|
@ -6,7 +6,7 @@ import TruthTable from "./components/truth-table";
|
|||||||
import { InfoBox, MyDisclosure, MyDisclosureContainer } from "./components/output";
|
import { InfoBox, MyDisclosure, MyDisclosureContainer } from "./components/output";
|
||||||
import { diffChars } from "diff";
|
import { diffChars } from "diff";
|
||||||
import MyMenu from "./components/menu";
|
import MyMenu from "./components/menu";
|
||||||
import type { FetchResult } from "./types/interfaces";
|
import type { FetchResultsProps, FetchResult, WebWorkerProps } from "./types/interfaces";
|
||||||
import { type Accessor, type Component, createSignal, JSX, onMount, Show } from "solid-js";
|
import { type Accessor, type Component, createSignal, JSX, onMount, Show } from "solid-js";
|
||||||
import { For, render } from "solid-js/web";
|
import { For, render } from "solid-js/web";
|
||||||
import Row from "./components/row";
|
import Row from "./components/row";
|
||||||
@ -107,13 +107,40 @@ hide=${ hideValues().value }&sort=${ sortValues().value }&hideIntermediate=${ hi
|
|||||||
setError(null);
|
setError(null);
|
||||||
setIsLoaded(false);
|
setIsLoaded(false);
|
||||||
|
|
||||||
fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ encodeURIComponent(exp) }&
|
if (window.Worker) {
|
||||||
|
const worker = new Worker(new URL("./functions/fetch.ts", import.meta.url));
|
||||||
|
|
||||||
|
const input: WebWorkerProps = {
|
||||||
|
expression: exp,
|
||||||
|
simplifyEnabled: simplifyEnabled(),
|
||||||
|
hideValue: hideValues().value,
|
||||||
|
sortValue: sortValues().value,
|
||||||
|
hideIntermediates: hideIntermediates()
|
||||||
|
};
|
||||||
|
|
||||||
|
worker.postMessage(input);
|
||||||
|
|
||||||
|
worker.onmessage = (e): void => {
|
||||||
|
const data: FetchResultsProps = e.data;
|
||||||
|
setIsLoaded(true);
|
||||||
|
if (data.fetchResult) {
|
||||||
|
setFetchResult(data.fetchResult);
|
||||||
|
}
|
||||||
|
else if (data.error) {
|
||||||
|
setError(data.error);
|
||||||
|
}
|
||||||
|
worker.terminate();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fetch(`https://api.martials.no/simplify-truths/do/simplify/table?exp=${ 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 => res.json())
|
||||||
.then(res => setFetchResult(res))
|
.then(res => setFetchResult(res))
|
||||||
.catch(err => setError(err.toString()))
|
.catch(err => setError(err.toString()))
|
||||||
.finally(() => setIsLoaded(true));
|
.finally(() => setIsLoaded(true));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,3 +71,16 @@ export type FetchResult = {
|
|||||||
truthMatrix: Table,
|
truthMatrix: Table,
|
||||||
} | null,
|
} | null,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type WebWorkerProps = {
|
||||||
|
expression: string,
|
||||||
|
simplifyEnabled: boolean,
|
||||||
|
hideValue: string,
|
||||||
|
sortValue: string,
|
||||||
|
hideIntermediates: boolean
|
||||||
|
};
|
||||||
|
|
||||||
|
export type FetchResultsProps = {
|
||||||
|
fetchResult: FetchResult | null,
|
||||||
|
error: string | null,
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user