From fc671488158c921c13264ef325dac999eec33ec3 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Tue, 10 Jan 2023 22:49:19 +0100 Subject: [PATCH] Added switch --- src/components/button.tsx | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/components/button.tsx diff --git a/src/components/button.tsx b/src/components/button.tsx new file mode 100644 index 0000000..ecb8f83 --- /dev/null +++ b/src/components/button.tsx @@ -0,0 +1,41 @@ +/* @refresh reload */ +import { type Component, createSignal } from "solid-js"; +import type { TitleProps } from "../types/interfaces"; + +interface SwitchProps extends TitleProps { + defaultValue?: boolean, + onChange?: (value: boolean) => void, +} + +export const MySwitch: Component = ( + { + defaultValue = false, + title, + onChange, + className, + name, + id + }) => { + + const [checked, setChecked] = createSignal(defaultValue); + + function handleChange() { + const newChecked = !checked(); + setChecked(newChecked); + if (onChange) { + onChange(newChecked); + } + } + + return ( + + ); +};