Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
rc-drawer
Advanced tools
The rc-drawer package is a React component that provides a drawer panel that can slide in from the edge of the screen. It is commonly used for implementing side menus, navigation, or other hidden content that can be revealed interactively.
Basic Drawer
This code sample demonstrates how to create a basic drawer that can be toggled open and closed with a button. The drawer's visibility is controlled by the 'open' state.
import Drawer from 'rc-drawer';
import React from 'react';
import ReactDOM from 'react-dom';
class App extends React.Component {
state = {
open: false,
};
onOpenChange = (open) => {
this.setState({ open });
};
render() {
return (
<div>
<button onClick={() => this.onOpenChange(true)}>Open Drawer</button>
<Drawer
open={this.state.open}
onOpenChange={this.onOpenChange}
>
<p>This is the content of the drawer.</p>
</Drawer>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById('container'));
Positioning
This code sample shows how to position the drawer on the right side of the screen. The 'position' prop can be set to 'left', 'right', 'top', or 'bottom'.
import Drawer from 'rc-drawer';
import React from 'react';
import ReactDOM from 'react-dom';
class App extends React.Component {
state = {
open: false,
};
onOpenChange = (open) => {
this.setState({ open });
};
render() {
return (
<Drawer
open={this.state.open}
position='right'
onOpenChange={this.onOpenChange}
>
<p>This drawer slides in from the right.</p>
</Drawer>
);
}
}
ReactDOM.render(<App />, document.getElementById('container'));
Custom Styling
This code sample illustrates how to apply custom styles to the drawer. The 'style' prop accepts a JavaScript object with CSS properties.
import Drawer from 'rc-drawer';
import React from 'react';
import ReactDOM from 'react-dom';
class App extends React.Component {
render() {
return (
<Drawer
open={true}
style={{ backgroundColor: 'lightblue' }}
>
<p>Custom styled drawer content.</p>
</Drawer>
);
}
}
ReactDOM.render(<App />, document.getElementById('container'));
react-drawer is another React component that provides similar functionality for creating off-canvas drawers. It allows for easy customization and has a similar API to rc-drawer, but it may have different implementation details and additional features.
material-ui is a comprehensive React UI framework that includes a Drawer component among its many components. The Drawer in material-ui is styled according to Material Design guidelines and is highly customizable, but it is part of a larger framework rather than a standalone package like rc-drawer.
react-sidebar is a sidebar library for React. It allows for the creation of sidebars similar to the drawers provided by rc-drawer. This package offers a simple API and can be a good alternative if you are looking for a package focused specifically on sidebars.
http://react-component.github.io/drawer/examples/
import Drawer from 'rc-drawer';
import React from 'react';
import ReactDom from 'react-dom';
ReactDom.render(
<Drawer>
{menu children}
</Drawer>
, mountNode);
IE 10+ ✔ | Chrome 31.0+ ✔ | Firefox 31.0+ ✔ | Opera 30.0+ ✔ | Safari 7.0+ ✔ |
props | type | default | description |
---|---|---|---|
className | string | null | - |
prefixCls | string | 'drawer' | prefix class |
wrapperClassName | string | null | wrapper class name |
width | string | number | null | drawer content wrapper width, drawer level transition width |
height | string | number | null | drawer content wrapper height, drawer level transition height |
open | boolean | false | open or close menu |
defaultOpen | boolean | false | default open menu |
handler | boolean | ReactElement | true | true or false or ReactElement, default: <divclassName="drawer-handle"><i className="drawer-handle-icon" /></div> ; |
placement | string | left | left top right bottom |
level | string | array | all | With the drawer level element. all / null / className / id / tagName / array |
levelMove | number | array | func | null | level move value. default is drawer width |
duration | string | .3s | level animation duration |
ease | string | cubic-bezier(0.78, 0.14, 0.15, 0.86) | level animation timing function |
getContainer | string | func | HTMLElement | body | Return the mount node for Drawer. if is null use React.creactElement |
showMask | boolean | true | mask is show |
maskStyle | object | null | mask style |
onChange | func | null | change callback(open) |
onMaskClick | func | null | mask close click function |
onHandleClick | func | nul | handle icon click function |
1.5 Rename
handleChild
->handler
, removehandleStyle
, removelevelTransition
->duration
ease
, addlevelMove
.
npm install
npm start
FAQs
drawer component for react
The npm package rc-drawer receives a total of 965,682 weekly downloads. As such, rc-drawer popularity was classified as popular.
We found that rc-drawer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.