Wrapper library for GridStack.
npm install react-gridstack To use this package in the browser, clone this repo and run gulp build. Then, copy the react-gridstack.min.js and react-gridstack.min.css files from the dist directory and include them in your html head. Note that this files include jQuery, jQuery-UI and lodash.
importReactfrom'react'import{GridStack,GridStackItem}from'react-gridstack'classMyGridextendsReact.Component{render(){<GridStackcellHeight={50}verticalMargin={10}><GridStackItemid="item_1"x={0}y={0}minHeight={2}minWidth={2}> First Item </GridStackItem><GridStackItemid="item_2"x={0}y={2}> Second Item </GridStackItem></GridStack>}}Make sure to include the css file in your bundle.
Aside from all the (options)[https://github.com/troolee/gridstack.js/tree/master/doc] accepted by gridstack.js, the following props can be also passed to the components.
- onShouldUpdate(prevElement, newElement): Function to be called with the previous prop version and new prop version of the element. It must return
trueorfalseto indicate if the element should be re-rendered. Very similar in function toshouldComponentUpdatefrom react.
See anything missing? Fork, implement and submit a pull request.
See the license file.