diff --git a/src/components/menu.tsx b/src/components/menu.tsx new file mode 100644 index 0000000..604e2fb --- /dev/null +++ b/src/components/menu.tsx @@ -0,0 +1,71 @@ +/* @refresh reload */ +import type { TitleProps } from "../types/interfaces"; +import { type Component, createEffect, createSignal, JSX, Show } from "solid-js"; +import { Button } from "./button"; + +interface MenuProps extends TitleProps { + button?: JSX.Element, + buttonClassName?: string, + itemsClassName?: string, +} + +const MyMenu: Component = ( + { + title, + button, + children, + id, + className, + buttonClassName, + itemsClassName, + }) => { + + const [isOpen, setIsOpen] = createSignal(false); + + function closeMenu(): void { + setIsOpen(false); + } + + function toggleMenu(): void { + setIsOpen(!isOpen()); + } + + createEffect(() => { + + function click(e: MouseEvent): void { + if (e.target instanceof HTMLElement) { + if (e.target.closest(`#${ id }`) === null) { + closeMenu(); + } + } + } + + if (isOpen()) { + document.addEventListener("click", click); + } + else { + document.removeEventListener("click", click); + } + }); + + return ( // TODO transition +
+ + + + +
+
{ children }
+
+
+ +
+ ); +} + +export default MyMenu; diff --git a/src/truth-table.tsx b/src/truth-table.tsx index 138b1a3..3750cb2 100644 --- a/src/truth-table.tsx +++ b/src/truth-table.tsx @@ -5,16 +5,18 @@ import { Icon } from "solid-heroicons"; import TruthTable from "./components/truth-table"; import { InfoBox, MyDisclosure, MyDisclosureContainer } from "./components/output"; import { diffChars } from "diff"; -// import MyMenu from "./components/menu"; +import MyMenu from "./components/menu"; import { type BookType, utils, write, writeFile } from "xlsx" import type { FetchResult } from "./types/interfaces"; -import { type Component, createSignal, JSX, onMount, Show } from "solid-js"; +import { type Component, createEffect, createSignal, JSX, onMount, Show } from "solid-js"; import { For, render } from "solid-js/web"; import Row from "./components/row"; -import { arrowDownTray, magnifyingGlass, xMark } from "solid-heroicons/solid"; +import { arrowDownTray, check, eye, eyeSlash, funnel, magnifyingGlass, xMark } from "solid-heroicons/solid"; import { Button, MySwitch } from "./components/button"; import MyDialog from "./components/dialog"; +type Option = { name: string, value: string }; + // TODO move some code to new components const TruthTablePage: Component = () => { @@ -34,13 +36,13 @@ const TruthTablePage: Component = () => { */ const [typing, setTyping] = createSignal(false); - const hideOptions = [ + const hideOptions: Option[] = [ { name: "Show all result", value: "NONE" }, { name: "Hide true results", value: "TRUE" }, { name: "Hide false results", value: "FALSE" }, ]; - const sortOptions = [ + const sortOptions: Option[] = [ { name: "Sort by default", value: "DEFAULT" }, { name: "Sort by true first", value: "TRUE_FIRST" }, { name: "Sort by false first", value: "FALSE_FIRST" }, @@ -208,44 +210,47 @@ const TruthTablePage: Component = () => { name={ "Turn on/off simplify expressions" } className={ "mx-1" } />
- {/* :*/ } - {/* // */ } - {/* // }*/ } - {/* children={*/ } - {/* */ } - {/* { (option) => (*/ } - {/* setHideValues(option) }*/ } - {/* option={ option }*/ } - {/* currentValue={ hideValues } />)*/ } - {/* }*/ } - {/* */ } - {/* } itemsClassName={ "right-0" }*/ } - {/*/>*/ } + + } fallback={ + + } keyed /> + } + children={ + + { (option) => ( + setHideValues(option) } + option={ option } + currentValue={ hideValues() } /> + ) } + + } itemsClassName={ "right-0" } + />
- {/* }*/ } - {/* children={*/ } - {/* */ } - {/* { option => (*/ } - {/* setSortValues(option) } />)*/ } - {/* }*/ } - {/* */ } - {/* }*/ } - {/* itemsClassName={ "right-0" }*/ } - {/*/>*/ } + } + children={ + + { (option) => ( + setSortValues(option) } /> + ) } + + } + itemsClassName={ "right-0" } + />
- { - fetchResult()?.expression && + + @@ -262,7 +267,8 @@ const TruthTablePage: Component = () => { - } + + { @@ -339,22 +345,20 @@ const TruthTablePage: Component = () => { export default TruthTablePage; interface SingleMenuItem { - option: any, - currentValue?: any, + option: Option, + currentValue?: Option, onClick: JSX.EventHandlerUnion, } +// TODO not rerendering when currentValue changes const SingleMenuItem: Component = ({ option, currentValue, onClick }) => { - return (<> - // - //
- // - // { option.name } - //
- //
+ return ( +
+ + { option.name } +
); }