Popularity
4.8
Stable
Activity
1.4
Growing
531
11
73
Programming language: JavaScript
License: MIT License
react-dock alternatives and similar libraries
Based on the "Overlay" category.
Alternatively, view react-dock alternatives based on common mentions on social networks and blogs.
-
sweetalert2
✨ A beautiful, responsive, highly customizable and accessible (WAI-ARIA) replacement for JavaScript's popup boxes. Zero dependencies. 🇺🇦 -
sweetalert2-react-content
Official SweetAlert2 enhancer adding support for React elements as content -
modali
A delightful modal dialog component for React, built from the ground up to support React Hooks.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of react-dock or a related project?
README
🏚This package was merged into redux-devtools monorepo. Please refer to that repository for the latest updates, issues and pull requests.
react-dock
Resizable dockable react component.
Demo
http://alexkuz.github.io/react-dock/demo/
Install
$ npm i -S react-dock
Example
render() {
return (
<Dock position='right' isVisible={this.state.isVisible}>
{/* you can pass a function as a child here */}
<div onClick={() => this.setState({ isVisible: !this.state.isVisible })}>X</div>
</Dock>
);
}
Dock Props
Prop Name | Description |
---|---|
position | Side to dock (left , right , top or bottom ). Default is left . |
fluid | If true , resize dock proportionally on window resize. |
size | Size of dock panel (width or height, depending on position ). If this prop is set, Dock is considered as a controlled component, so you need to use onSizeChange to track dock resizing. Value is a fraction of window width/height, if fluid is true, or pixels otherwise |
defaultSize | Default size of dock panel (used for uncontrolled Dock component) |
isVisible | If true , dock is visible |
dimMode | If none - content is not dimmed, if transparent - pointer events are disabled (so you can click through it), if opaque - click on dim area closes the dock. Default is opaque |
duration | Animation duration. Should be synced with transition animation in style properties |
dimStyle | Style for dim area |
dockStyle | Style for dock |
zIndex | Z-index for wrapper |
onVisibleChange | Fires when Dock wants to change isVisible (when opaque dim is clicked, in particular) |
onSizeChange | Fires when Dock wants to change size |
children | Dock content - react elements or function that returns an element. Function receives an object with these state values: { position, isResizing, size, isVisible } |