mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 07:57:39 +03:00 
			
		
		
		
	| - remotedev-redux-devtools-extension@3.0.1 - d3-state-visualizer@1.5.0 - d3tooltip@2.0.0 - map2tree@2.0.0 - react-base16-styling@0.9.0 - react-dock@0.5.0 - react-json-tree@0.16.0 - @redux-devtools/app@2.0.0 - @redux-devtools/chart-monitor@2.0.0 - @redux-devtools/cli@1.0.1 - @redux-devtools/dock-monitor@2.0.0 - @redux-devtools/extension@3.1.0 - @redux-devtools/inspector-monitor-test-tab@0.8.0 - @redux-devtools/inspector-monitor-trace-tab@0.3.0 - @redux-devtools/inspector-monitor@2.0.0 - @redux-devtools/instrument@2.0.0 - @redux-devtools/log-monitor@3.0.0 - @redux-devtools/remote@0.7.0 - @redux-devtools/rtk-query-monitor@2.0.0 - @redux-devtools/serialize@0.4.0 - @redux-devtools/slider-monitor@3.0.0 - @redux-devtools/ui@1.1.0 - @redux-devtools/utils@1.1.0 - @redux-devtools/core@3.10.0 - d3-state-visualizer-tree-example@0.1.3 - react-dock-demo@0.1.3 - react-json-tree-example@1.1.5 - test-demo@0.1.3 - inspector-demo@0.1.3 - rtk-query-demo@0.1.3 - slider-todomvc@0.1.5 - counter-redux@0.1.5 - todomvc@0.2.4 | ||
|---|---|---|
| .. | ||
| demo | ||
| src | ||
| test | ||
| .babelrc | ||
| .eslintignore | ||
| .eslintrc.js | ||
| CHANGELOG.md | ||
| jest.config.js | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
| rollup.config.js | ||
| tsconfig.json | ||
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,toporbottom). Default isleft. | 
| 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,Dockis considered as a controlled component, so you need to useonSizeChangeto track dock resizing. Value is a fraction of window width/height, iffluidis true, or pixels otherwise | 
| defaultSize | Default size of dock panel (used for uncontrolled Dockcomponent) | 
| isVisible | If true, dock is visible | 
| dimMode | If none- content is not dimmed, iftransparent- pointer events are disabled (so you can click through it), ifopaque- click on dim area closes the dock. Default isopaque | 
| 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 Dockwants to changeisVisible(when opaque dim is clicked, in particular) | 
| onSizeChange | Fires when Dockwants to changesize | 
| children | Dock content - react elements or function that returns an element. Function receives an object with these state values: { position, isResizing, size, isVisible } |