Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

react-dnd-container

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-dnd-container

A React library for sortable drag-and-drop rows or columns based on react-dnd lib.

latest
Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
63
-49.6%
Maintainers
3
Weekly downloads
 
Created
Source

react-dnd-container

A React library for sortable drag-and-drop rows or columns based on react-dnd lib.

Example

https://ifanrx.github.io/react-dnd-container/

Usage

export default class App extends React.Component {
  state = {
    cards_1: [
      {
        id: 11,
        color: '#CC0033',
        text: '11',
      },
      ...
    ],
    cards_2: [
      {
        id: 21,
        color: '#006699',
        text: '21',
      },
      ...
    ],
  }

  itemRender(itemData, props) {
    const style = {
      border: '1px dashed gray',
      padding: '0.5rem 1.6rem',
      marginBottom: '.5rem',
      color: 'white',
      background: itemData.color,
      opacity: props.isDragging ? 0.5 : 1,
    }
    return (
      <div style={style}>{itemData.text}</div>
    )
  }

  render() {
    const style = {
      width: 400,
      minHeight: 100,
    }
    return (
      <div>
        <Container group='test' horizontal style={style} itemRender={this.itemRender} cards={this.state.cards_1} />
        <Container group='test' horizontal style={style} itemRender={this.itemRender} cards={this.state.cards_2} />
      </div>
    )
  }
}

ReactDOM.render(<App />, document.getElementById('app'))

API

<Container itemRender={this.itemRender} cards={this.state.cards} />
PropertyDefaultTypeDescription
cards-Arraydata source, each item should has a unique id field
group-Stringdrag and drop can only effect in the same container or between containers which has the same group name
horizontalfalseBooleandrag type
style-Objectcontainer style
className-Stringcontainer class
itemRender-Function(card, props)item render function
onChange-Function(data, type: 'move' / 'insert' / 'delete')a callback function, executed when the cards changed
disableDragActionfalseBooleanWhether 'drag' action is disabled
disableDropActionfalseBooleanWhether 'drop' action is disabled

Keywords

react

FAQs

Package last updated on 28 Sep 2018

Did you know?

Socket

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.

Install

Related posts