Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sortable-dnd

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sortable-dnd

JS Library for Drag and Drop, supports Sortable and Draggable

  • 0.2.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.9K
decreased by-18.39%
Maintainers
1
Weekly downloads
 
Created
Source

Downloads Version

A JS Library for Drag and Drop, supports Sortable and Draggable

Demo

Usage

HTML

<ul id="group">
  <li>
    <i class="drag">drag me</i>
    <p>1</p>
  </li>
  <li>
    <i class="drag">drag me</i>
    <p>2</p>
  </li>
  <li>
    <i class="drag">drag me</i>
    <p>3</p>
  </li>
</ul>

JavaScript

import Sortable from 'sortable-dnd'

var DND = new Sortable(
  document.getElementById('group'),
  {
    chosenClass: 'chosen',
    draggable: (e) => e.target.tagName === 'I' ? true : false, // use function
    // draggable: 'i' // use tagName 
    // draggable: '.drag' // use class
    // draggable: '#drag' // use id
    onDrag: (dragEl, event, originalEvent) => {
      // code
    },
    onMove: (from, ghostEl, event, originalEvent) => {
      // code
    },
    onDrop: (changed, /* originalEvent */event) => {
      // code
    },
    onChange: (from, to, event, originalEvent) => {
      // code
    }
  }
)

Methods

methodDescription
destroy()Manually clear all the state of the component, using this method the component will not be draggable

Options

Common used

optiontypedefaultDescription
animationNumber150Animation speed moving items when sorting
draggableString/FunctionundefinedSpecifies which items inside the element should be draggable, the function type must return a boolean
onDragFunctionundefinedThe callback function when the drag is started:
(dragEl, event, originalEvent) => {}
onMoveFunctionundefinedThe callback function when the dragged element is moving:
(from, ghostEl, event, originalEvent) => {}
onDropFunctionundefinedThe callback function when the drag is completed:
(changed, originalEvent) => {}
onChangeFunctionundefinedThe callback function when the dragged element changes position:
(from, to, event, originalEvent) => {}
autoScrollBooleantrueAutomatic scrolling when moving to the edge of the container
scrollStepNumber5The distance to scroll each frame when autoscrolling
scrollThresholdNumber15Threshold to trigger autoscroll

Other

optiontypedefaultDescription
disabledBooleanfalseDisables the sortable if set to true
draggingFunctionundefinedSpecifies the element witch you want to drag:
(e) => return e.target
delayNumber0time in milliseconds to define when the sorting should start
delayOnTouchOnlyBooleanfalseonly delay if user is using touch
ghostAnimationNumber0Ghost element animation delay before destroyed
ghostStyleObject{}The style of the mask element when dragging
ghostClassString''The class of the mask element when dragging
chosenClassString{}The class of the selected element when dragging
forceFallbackBooleanfalsetrue: ignore the HTML5 DnD behaviour and force the fallback to kick in
stopPropagationBooleanfalseThe stopPropagation() method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases

Keywords

FAQs

Package last updated on 01 Jun 2022

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc