useDisclosure

useDisclosure is a custom hook used to help handle common open, close, or toggle scenarios. It can be used to control feedback component such as Modal, AlertDialog, Drawer.

Import#

import { useDisclosure } from '@dwarvesf/react-hooks'

Return value#

The useDisclosure hook returns an object with the following fields:

NameTypeDefaultDescription
isOpenbooleanfalseIf true, it sets the controlled component to its visible state.
onClose() => void_Callback function to set a falsy value for the isOpen parameter.
onOpen() => void_Callback function to set a truthy value for the isOpen parameter.
onToggle() => void_Callback function to toggle the value of the isOpen parameter.
onOpenChange(isOpen: boolean) => void_Callback function to set the value for the isOpen parameter.

Usage#

function Example() {
const { isOpen, onOpen, onClose } = useDisclosure()
return (
<>
<Button onClick={onOpen}>Open Drawer</Button>
<Drawer placement="right" onClose={onClose} isOpen={isOpen}>
<DrawerOverlay />
<DrawerContent>
<DrawerHeader borderBottomWidth="1px">Basic Drawer</DrawerHeader>
<DrawerBody>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</DrawerBody>
</DrawerContent>
</Drawer>
</>
)
}

Parameters#

The useDisclosure hook accepts an optional object with the following properties:

NameTypeDefaultDescription
defaultIsOpenbooleanfalseThe default value.
onClose() => void_The callback when the isOpen is set to false.
onOpen() => void_The callback when the isOpen is set to true.
Edit this page

Made with ❤️ by Dwarves Foundation