Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@accessible/drawer
Advanced tools
npm i @accessible/drawer
An accessible and versatile drawer component for React. This drawer is just a few new styles on top of @accessible/modal so when using both, the drawer costs you nothing.
style
objects, anything!Check out the example on CodeSandbox
import {Drawer, Content, Trigger, Close} from '@accessible/drawer'
const Component = () => (
<Drawer>
<Content>
<div className="my-drawer">
<Close>
<button>Close me</button>
</Close>
</div>
</Content>
<Trigger>
<button>Open me</button>
</Trigger>
</Drawer>
)
Component | Description |
---|---|
<Drawer> | This component creates the context for your drawer box and trigger and contains some configuration options. |
<Content> | This component wraps any React element and turns it into a drawer box. |
<Trigger> | This component wraps any React element and turns it into a drawer trigger. |
<Close> | This is a convenience component that wraps any React element and adds an onClick handler to close the drawer. |
Hook | Description |
---|---|
useDrawer() | This hook provides the value of the drawer's DrawerContextValue object. |
useControls() | This hook provides access to the drawer's open , close , and toggle functions. |
useIsOpen() | This hook provides access to the drawer's isOpen value. |
<Drawer>
This component creates the context for your drawer box and trigger and contains some configuration options.
Prop | Type | Default | Required? | Description |
---|---|---|---|---|
defaultOpen | boolean | false | No | This sets the default open state of the drawer. By default the drawer is closed. |
open | boolean | undefined | No | You can control the open/closed state of the drawer with this prop. When it isn't undefined, this value will take precedence over any calls to open() , close() , or toggle() . |
id | string | undefined | No | By default this component creates a unique id for you, as it is required for certain aria attributes. Supplying an id here overrides the auto id feature. |
children | React.ReactNode | React.ReactNode[] | JSX.Element | ((context: DrawerContextValue) => React.ReactNode) | undefined | No | Your drawer contents and any other children. |
<Content>
This component wraps any React element and turns it into a drawer content.
Prop | Type | Default | Required? | Description |
---|---|---|---|---|
placement | "top" | "right" | "bottom" | "left" | "left" | No | Sets the edge of the window you want your drawer content to render on. |
portal | boolean | string | false | No | When true this will render the drawer into a React portal with the id #portals . You can render it into any portal by providing its query selector here, e.g. #foobar , [data-portal=true] , or .foobar . |
closeOnEscape | boolean | true | No | By default the drawer will close when the Escape key is pressed. You can turn this off by providing false here. |
closedClass | string | undefined | No | This class name will be applied to the child element when the drawer is closed . |
openClass | string | "modal--open" | No | This class name will be applied to the child element when the drawer is open . |
closedStyle | React.CSSProperties | undefined | No | These styles will be applied to the child element when the drawer is closed in addition to the default styles that set the box's visibility. |
openStyle | React.CSSProperties | undefined | No | These styles name will be applied to the child element when the drawer is open in addition to the default styles that set the box's visibility. |
children | React.ReactElement | undefined | Yes | The child is cloned by this component and has aria attributes injected into its props as well as the events defined above. |
<Content>
<div className="alert">Alert</div>
</Content>
// <div
// class="alert"
// aria-hidden="true"
// aria-drawer="false"
// id="modal--12"
// role="content"
// style="visibility: hidden; position: fixed; margin: auto; left: 0px; right: 0px; top: 50%; transform: translateY(-50%); z-index: 1;"
// >
// Alert
// </div>
<Trigger>
This component wraps any React element and adds an onClick
handler which toggles the open state
of the drawer content.
Prop | Type | Default | Required? | Description |
---|---|---|---|---|
closedClass | string | undefined | No | This class name will be applied to the child element when the drawer is closed . |
openClass | string | undefined | No | This class name will be applied to the child element when the drawer is open . |
closedStyle | React.CSSProperties | undefined | No | These styles will be applied to the child element when the drawer is closed . |
openStyle | React.CSSProperties | undefined | No | These styles name will be applied to the child element when the drawer is open . |
children | React.ReactElement | undefined | Yes | The child is cloned by this component and has aria attributes injected into its props as well as the events defined above. |
<Trigger on="click">
<button className="my-button">Open me!</button>
</Trigger>
// <button
// class="my-button"
// aria-controls="modal--12"
// aria-haspopup="content"
// aria-expanded="false"
// >
// Open me!
// </button>
<Close>
This is a convenience component that wraps any React element and adds an onClick handler which closes the drawer.
Prop | Type | Default | Required? | Description |
---|---|---|---|---|
children | React.ReactElement | undefined | Yes | The child is cloned by this component and has aria attributes injected into its props as well as the events defined above. |
<Close>
<button className="my-button">Close me</button>
</Close>
// <button
// class="my-button"
// aria-controls="modal--12"
// aria-haspopup="content"
// aria-expanded="false"
// >
// Close me
// </button>
useDrawer()
This hook provides the value of the drawer's DrawerContextValue object
const Component = () => {
const {open, close, toggle, isOpen} = useDrawer()
return <button onClick={toggle}>Toggle the drawer</button>
}
DrawerContextValue
interface DrawerContextValue {
isOpen: boolean
open: () => void
close: () => void
toggle: () => void
id: string
}
useControls()
This hook provides access to the drawer's open
, close
, and toggle
functions
const Component = () => {
const {open, close, toggle} = useControls()
return (
<Content>
<div className="my-drawer">
<button onClick={close}>Close me</button>
</div>
</Content>
)
}
useIsOpen()
This hook provides access to the drawer's isOpen
value
const Component = () => {
const isOpen = useIsOpen()
return (
<Content>
<div className="my-drawer">Am I open? {isOpen ? 'Yes' : 'No'}</div>
</Content>
)
}
MIT
FAQs
🅰 An accessible and versatile drawer component for React
The npm package @accessible/drawer receives a total of 68 weekly downloads. As such, @accessible/drawer popularity was classified as not popular.
We found that @accessible/drawer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.