Basic concepts
Reakit is established on principles that make it more consistent throughout its components. Understanding these concepts will give you enough base to work with any Reakit component right away.
#Components
Like any other component library, components are the highest level API in Reakit. The DisclosureContent component, for example, renders an element that can be hidden or visible.
<DisclosureContent visible>Content</DisclosureContent>
#Options
Components receive two kinds of props: HTML props and option props. Options are just custom props that don't get rendered into the DOM (like visible
). They affect internal behavior and translate to actual HTML attributes.
// `className` is an HTML prop // `visible` is an option <DisclosureContent className="class" visible />
#as
prop
Components render only one element. You can change its type using the as
prop:
import { DisclosureContent } from "reakit"; function Example() { return ( <DisclosureContent visible as="button"> Content </DisclosureContent> ); }
Learn more in Composition.
#Render props
Alternatively, you can change the underlying element by passing children as a function (also known as render props):
import { DisclosureContent, Button } from "reakit"; function Example() { return ( <DisclosureContent visible> {(props) => <Button {...props}>Content</Button>} </DisclosureContent> ); }
Learn more in Composition.
#State hooks
Many Reakit components accept state props, and you can plug your own. As a convenience — and because some states need more complex logic —, Reakit provides state hooks out of the box. They receive some options as the initial state and return options needed by their respective components.
The returned options can be passed as props directly to the components, or used separately to access, update and/or extend the state.
import { useDisclosureState, DisclosureContent } from "reakit"; function Example() { // exposes `visible` state and methods like `show`, `hide` and `toggle` const disclosure = useDisclosureState({ visible: true }); return ( <> <button onClick={disclosure.toggle}>Disclosure</button> <DisclosureContent {...disclosure}>Content</DisclosureContent> </> ); }
Learn more in Managing state.
#Props hooks
Finally, as the lowest level API, Reakit exposes props hooks. These hooks hold most of the logic behind components and are heavily used within Reakit's source code as a means to compose behaviors without the hassle of polluting the tree with multiple components. For example, Dialog uses DisclosureContent, which in turn uses Role.
import { Role, useDisclosureState, useDisclosureContent, useDisclosure, } from "reakit"; function Example() { const state = useDisclosureState({ visible: true }); const contentProps = useDisclosureContent(state); const disclosureProps = useDisclosure(state); return ( <> <Role as="button" {...disclosureProps}> Disclosure </Role> <Role {...contentProps}>Content</Role> </> ); }
It's recommended to use the component API whenever possible. But there are two cases where these hooks may be a good fit:
- You're building a component library and want to leverage composition the same way Reakit does internally.
- You want to compose multiple Reakit components.
Learn more in Composition.