Socket
Socket
Sign inDemoInstall

vue-virtual-draglist

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-virtual-draglist

A virtual scrolling list component that can be sorted by dragging, support vue3


Version published
Weekly downloads
654
decreased by-24.91%
Maintainers
1
Weekly downloads
 
Created
Source

vue-virtual-draglist

npm npm vue2 Software License

A virtual scrolling list component that can be sorted by dragging, support vue3

If you use vue with 2.x, see here

Live demo

Simple usage

npm i vue-virtual-draglist@next

Root component:

<template>
  <div>
    <!--
      :handle="'i'" // use tagName 
      :handle="'.handle'" // use class
      :handle="'#handle'" // use id
    -->
    <VirtualList
      v-model="list"
      :dataKey="'id'"
      :handle="'#handle'"
      style="height: 500px;"
    >
      <template v-slot:item="{ record, index, dataKey }">
        <i id="handle" class="handle">handle</i>
        <p>{{ record.text }}</p>
      </template>
      <template v-slot:header>
        <div class="header">header</div>
      </template>
      <template v-slot:footer>
        <div class="footer">footer</div>
      </template>
    </VirtualList>
  </div>
</template>

<script setup lang="ts">
import VirtualList from 'vue-virtual-draglist';

const list = ref([{id: '1', text: 'abc'}, {id: '2', text: 'def'}]);
// const items = computed({
//   get() {
//     return list.value;
//   },
//   set(val) {
//     // trigger when drag state changed if you use with `v-model:dataSource`
//     list.value = val;
//     console.log(val);
//   }
// })
</script>

Emits

EmitDescription
topscrolled to top
bottomscrolled to bottom
dragdrag is started
dropdrag is completed
addelement is dropped into the list from another
removeelement is removed from the list into another

Props

Required props

PropTypeDescription
data-keyStringThe unique identifier of each piece of data, in the form of 'a.b.c'
v-modelArray/RefThe data that needs to be rendered

Optional props

Commonly used

PropTypeDefaultDescription
keepsNumber30The number of lines rendered by the virtual scroll
sizeNumber-The estimated height of each piece of data, you can choose to pass it or not, it will be automatically calculated
handleFunction/String-Drag handle selector within list items
groupObject/String-string: 'name' or object: { name: 'group', put: true/false, pull: true/false/'clone', revertDrag: true/false }
keepOffsetBooleanfalseWhen scrolling up to load data, keep the same offset as the previous scroll
directionvertical | horizontalverticalScroll direction
scrollerDocument | HTMLElement-Virtual list scrolling element
lockAxisx | y-Axis on which dragging will be locked
debounceTimeNumber0scroll debounce time
throttleTimeNumber0scroll throttle time

Uncommonly used

PropTypeDefaultDescription
sortableBooleantrueWhether the current list can be sorted by dragging
draggableString.virtual-dnd-list-itemSpecifies which items inside the element should be draggable. If does not set a value, the default list element can be dragged
disabledBooleanfalseDisables the sortable if set to true
animationNumber150Animation speed moving items when sorting
autoScrollBooleantrueAutomatic scrolling when moving to the edge of the container
scrollThresholdNumber55Threshold to trigger autoscroll
delayNumber0Time in milliseconds to define when the sorting should start
delayOnTouchOnlyBooleanfalseOnly delay on press if user is using touch
fallbackOnBodyBooleanfalseAppends the ghost element into the document's body
rootTagStringdivLabel type for root element
wrapTagStringdivLabel type for list wrap element
itemTagStringdivLabel type for list item element
wrapClassString''List wrapper element class
wrapStyleObject{}List wrapper element style
itemClassStringvirtual-dnd-list-itemList item element class
itemStyleObject{}List item element style
ghostClassString''The class of the mask element when dragging
ghostStyleObject{}The style of the mask element when dragging
chosenClassString''Class name for the chosen item

Methods

MethodDescription
getSize(key)Get the size of the current item by unique key value
getOffset()Get the current scroll height
getClientSize()Get wrapper element client viewport size (width or height)
getScrollSize()Get all scroll size (scrollHeight or scrollWidth)
scrollToTop()Scroll to top of list
scrollToBottom()Scroll to bottom of list
scrollToKey(key)Scroll to the specified data-key position
scrollToIndex(index)Scroll to the specified index position
scrollToOffset(offset)Scroll to the specified offset

Keywords

FAQs

Package last updated on 06 May 2024

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