Fixed checkmark not updating
This commit is contained in:
parent
2a58aedd9a
commit
df4909af6f
@ -8,7 +8,7 @@ import { diffChars } from "diff";
|
|||||||
import MyMenu from "./components/menu";
|
import MyMenu from "./components/menu";
|
||||||
import { type BookType, utils, write, writeFile } from "xlsx"
|
import { type BookType, utils, write, writeFile } from "xlsx"
|
||||||
import type { FetchResult } from "./types/interfaces";
|
import type { FetchResult } from "./types/interfaces";
|
||||||
import { type Component, createEffect, createSignal, JSX, onMount, Show } from "solid-js";
|
import { Accessor, type Component, createEffect, 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";
|
||||||
import { arrowDownTray, check, eye, eyeSlash, funnel, magnifyingGlass, xMark } from "solid-heroicons/solid";
|
import { arrowDownTray, check, eye, eyeSlash, funnel, magnifyingGlass, xMark } from "solid-heroicons/solid";
|
||||||
@ -225,7 +225,7 @@ const TruthTablePage: Component = () => {
|
|||||||
{ (option) => (
|
{ (option) => (
|
||||||
<SingleMenuItem onClick={ () => setHideValues(option) }
|
<SingleMenuItem onClick={ () => setHideValues(option) }
|
||||||
option={ option }
|
option={ option }
|
||||||
currentValue={ hideValues() } />
|
currentValue={ hideValues } />
|
||||||
) }
|
) }
|
||||||
</For>
|
</For>
|
||||||
} itemsClassName={ "right-0" }
|
} itemsClassName={ "right-0" }
|
||||||
@ -240,7 +240,7 @@ const TruthTablePage: Component = () => {
|
|||||||
children={
|
children={
|
||||||
<For each={ sortOptions }>
|
<For each={ sortOptions }>
|
||||||
{ (option) => (
|
{ (option) => (
|
||||||
<SingleMenuItem option={ option } currentValue={ sortValues() }
|
<SingleMenuItem option={ option } currentValue={ sortValues }
|
||||||
onClick={ () => setSortValues(option) } />
|
onClick={ () => setSortValues(option) } />
|
||||||
) }
|
) }
|
||||||
</For>
|
</For>
|
||||||
@ -346,7 +346,7 @@ export default TruthTablePage;
|
|||||||
|
|
||||||
interface SingleMenuItem {
|
interface SingleMenuItem {
|
||||||
option: Option,
|
option: Option,
|
||||||
currentValue?: Option,
|
currentValue?: Accessor<Option>,
|
||||||
onClick: JSX.EventHandlerUnion<HTMLDivElement, MouseEvent>,
|
onClick: JSX.EventHandlerUnion<HTMLDivElement, MouseEvent>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -356,7 +356,7 @@ const SingleMenuItem: Component<SingleMenuItem> = ({ option, currentValue, onCli
|
|||||||
<div class={ `hover:underline cursor-pointer last:mb-1 flex-row-center` }
|
<div class={ `hover:underline cursor-pointer last:mb-1 flex-row-center` }
|
||||||
onClick={ onClick }>
|
onClick={ onClick }>
|
||||||
<Icon path={ check }
|
<Icon path={ check }
|
||||||
class={ `h-6 w-6 text-white ${ currentValue.value !== option.value && "text-transparent" }` } />
|
class={ `h-6 w-6 text-white ${ currentValue().value !== option.value && "text-transparent" }` } />
|
||||||
{ option.name }
|
{ option.name }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user