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


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

vue-virtual-draglist

npm npm vue2

A virtual scrolling list component that can be sorted by dragging

For Vue 3 support, see here

Live demo

Simple usage

npm i vue-virtual-draglist -D

Root component:

<template>
  <div>
    <!--
      :draggable="'i'" // use tagName 
      :draggable="'.drag'" // use class
      :draggable="'#drag'" // use id
    -->
    <virtual-drag-list
      :data-key="'id'"
      :data-source="list"
      :draggable="'.drag'"
      style="height: 500px"
      @top="handleToTop"
      @bottom="handleToBottom"
      @ondragend="ondragend"
    >
      <template slot="item" slot-scope="{ record, index, dataKey }">
        <span class="drag">{{ record.id }}</span>
        {{ record.text }}
      </template>
      <template slot="header">
        <div class="loading">top loading...</div>
      </template>
      <template slot="footer">
        <div class="loading">bottom loading...</div>
      </template>
    </virtual-drag-list>
  </div>
</template>

<script>
  import virtualDragList from 'vue-virtual-draglist'

  export default {
    name: 'root',
    components: { virtualDragList },
    data () {
      return {
        list: [{id: '1', text: 'asd'}, {id: '2', text: 'fgh'}, ...]
      }
    },
    methods: {
      handleToTop() {
        ...
      },
      handleToBottom() {
        ...
      },
      ondragstart(list, from, node) {
        ...
      },
      ondragend(list, from, to, changed) {
        ...
      }
    }
  }
</script>

Emits

EmitDescription
topEvent fired when scroll to top
bottomEvent fired when scroll to bottom
ondragstartEvent fired when the drag is started
ondragendEvent fired when the drag is completed

Props

Required props

PropTypeDescription
data-keyStringThe unique identifier of each piece of data, in the form of 'a.b.c'
data-sourceArraydata list

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
directionStringverticalvertical/horizontal, scroll direction
draggableFunction/String-Specifies which items inside the element should be draggable
animationNumber150Animation speed moving items when sorting
keepOffsetBooleanfalseWhen scrolling up to load data, keep the same offset as the previous scroll
autoScrollBooleantrueAutomatic scrolling when moving to the edge of the container, for browsers that do not support HTML5 drag events
scrollStepNumber5The distance to scroll each frame when autoscrolling
scrollThresholdNumber15Threshold to trigger autoscroll

Uncommonly used

PropTypeDefaultDescription
disabledBooleanfalseDisables the sortable if set to true
delayNumber10Delay time of debounce function
rootTagStringdivLabel type for root element
wrapTagStringdivLabel type for list wrap element
itemTagStringdivLabel type for list item element
headerTagStringdivLabel type for header slot element
footerTagStringdivLabel type for footer slot element
wrapClassString''List wrapper element class
wrapStyleObject{}List wrapper element style
itemClassString''List 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''The class of the selected element when dragging

Methods

Use ref to get the method inside the component

MethodDescription
reset()Reset to initial
getSize(key)Get the size of the current item by unique key value
getOffset()Get the current scroll height
scrollToTop()Scroll to top of list
scrollToBottom()Scroll to bottom of list
scrollToIndex(index)Scroll to the specified index position
scrollToOffset(offset)Scroll to the specified offset

License

MIT License.

Keywords

FAQs

Package last updated on 26 Feb 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

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