Socket
Socket
Sign inDemoInstall

react-drag-listview

Package Overview
Dependencies
8
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-drag-listview

drag list view and table view component for react


Version published
Weekly downloads
28K
decreased by-0.44%
Maintainers
1
Install size
2.70 MB
Created
Weekly downloads
 

Readme

Source

react-drag-listview

React drag list component.

NPM version build status npm download

install

rc-table

Use on mobile (touch) devices

  • react-drag-listview already supports mobile (touch) devices, which can be easily implemented based on the dragdroptouch polyfill
  • Need to manually add polyfill dragdroptouch to your website. e.g.
    <script id="DragDropTouch" src="https://bernardo-castilho.github.io/DragDropTouch/DragDropTouch.js"></script>
    
  • Example: Drag on mobile devices

Example

Development

npm install
npm start

Usage

const ReactDragListView = require('react-drag-listview');

class Demo extends React.Component {
  constructor(props) {
    super(props);

    const data = [];
    for (let i = 1, len = 7; i < len; i++) {
      data.push({
        title: `rows${i}`
      });
    }

    this.state = {
      data
    };
  }

  render() {
    const that = this;
    const dragProps = {
      onDragEnd(fromIndex, toIndex) {
        const data = [...that.state.data];
        const item = data.splice(fromIndex, 1)[0];
        data.splice(toIndex, 0, item);
        that.setState({ data });
      },
      nodeSelector: 'li',
      handleSelector: 'a'
    };

    return (
      <ReactDragListView {...dragProps}>
        <ol>
          {this.state.data.map((item, index) => (
            <li key={index}>
              {item.title}
              <a href="#">Drag</a>
            </li>
          ))}
        </ol>
      </ReactDragListView>
    );
  }
}

API

Properties

NameTypeDefaultDescription
onDragEndFunction(fromIndex, toIndex)on drag end callback, required
nodeSelectorStringtrget drag item cssQuery
handleSelectorStringnodeSelectorget drag handle cssQuery
ignoreSelectorStringignore node list
enableScrollBooleantruewhether use auto scroll for dragging
scrollSpeedNumber10scroll speed
lineClassNameStringget dragLine's className, css properties must be use !important

License

react-drag-listview is released under the MIT license.

Keywords

FAQs

Last updated on 10 Jan 2023

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