Socket
Socket
Sign inDemoInstall

react-sortable-item

Package Overview
Dependencies
35
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-sortable-item

Reorder elements in a list. Uses the native HTML5 Drag and Drop API.


Version published
Weekly downloads
1
Maintainers
1
Install size
8.24 MB
Created
Weekly downloads
 

Readme

Source

react-sortable-item

Reorder elements in a list. Uses the native HTML5 Drag and Drop API.

See example.

This library is different from other react-sortable libraries in that it treats the reindexing strategy as an implementation detail of the drop event. This makes managing your list state easier. It also makes it easier to accept data from other sources (other windows, files from your desktop, etc).

Install

npm install react-sortable-item

Example

import SortableItem from 'react-sortable-item'

var ExampleSortableList = React.createClass({
  handleDrop(dropPath, position, event) {},

  handleAcceptTest(event) {},

  render() {
    var list = yourRecords.map((record) => {
      return (
        <SortableItem
            key={record.id}
            type={record.type}
            data={record.path}
            handleDrop={this.handleDrop}
            handleAcceptTest={this.handleAcceptTest}>
          <li>
            <div className="li-inner">
              {record.label}
            </div>
          </li>
        </SortableItem>
      )
    })
    return (
      <ul>
        {list}
      </ul>
    )
  }
})

License

MIT

Keywords

FAQs

Last updated on 13 Apr 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc