🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

react-drag-listview

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-drag-listview

drag list view and table view component for react

2.0.0
latest
Source
npm
Version published
Weekly downloads
47K
-19.81%
Maintainers
1
Weekly downloads
 
Created
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

react

FAQs

Package last updated on 10 Jan 2023

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