1.1.0 • Published 3 years ago

@clave/use-boolean-state v1.1.0

Weekly downloads
2
License
ISC
Repository
-
Last release
3 years ago

useBooleanState

Make it easier to work with state of boolean values

Documentation

npm install @clave/use-boolean-state

The goal of this hook is to make it easier to work with boolean state. It's very common to toggle a boolean value, and it's possible to do that with setState(x => !x), but isn't it easier and clearer to use setState.toggle()? This is very useful for buttons, where you can pass the toggle method by reference as <button onClick={isOpen.toggle}>Open</button>. There are also setState.toTrue() and setState.toFalse() available for easily setting or resetting the value.

Usage

import useBooleanState from "@clave/use-boolean-state";

// useBooleanState instead of useState
const [checked, setChecked] = useBooleanState(); //defaults to false

console.log(checked); // false

// setChecked behaves like normal
setChecked(true); // true

// Set the value to true
setChecked.toTrue(); // true

// Set the value to false
setChecked.toFalse(); // false

// Set the value to the opposite
setChecked.toggle(); // true -> false, false -> true
1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

4 years ago

0.0.2

4 years ago