2.9.5 • Published 8 months ago

vue-virtual-draglist v2.9.5

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

vue-virtual-draglist

npm npm vue2 Software License

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

Root component:

<template>
  <!--
    :handle="'I'" // use tagName 
    :handle="'.handle'" // use class
    :handle="'#handle'" // use id
  -->
  <virtual-list v-model="list" :data-key="'id'" :handle="'.handle'">
    <template slot="item" slot-scope="{ record, index, dataKey }">
      <div>
        <span class="handle">{{ record.id }}</span>
        {{ record.text }}
      </div>
    </template>
    <template slot="header">
      <div class="header">header</div>
    </template>
    <template slot="footer">
      <div class="footer">footer</div>
    </template>
  </virtual-list>
</template>

<script>
import virtualList from 'vue-virtual-draglist';

export default {
  name: 'root',
  components: { virtualList },
  data () {
    return {
      list: [{ id: '1', text: 'a' }, { id: '2', text: 'b' }, ...];
    }
  },
}
</script>

Emits

EmitDescription
topscrolled to top
bottomscrolled to bottom
dragdrag is started
dropdrag is completed
rangeChangerange changed

Props

Required props

PropTypeDescription
data-keyStringThe unique identifier of each piece of data, in the form of 'a.b.c'
v-modelArrayThe 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
groupFunction/String-string: 'name' or object: { name: 'group', put: true/false, pull: true/false/'clone', revertDrag: true/false }
directionvertical \| horizontalverticalScroll direction
scrollerDocument \| HTMLElement-Virtual list scrolling element
lockAxisx \| y-Axis on which dragging will be locked
tableModeBooleanfalsedisplay with table and tbody
keepOffsetBooleanfalseWhen scrolling up to load data, keep the same offset as the previous scroll
debounceTimeNumber0debounce time on scroll
throttleTimeNumber0throttle time on scroll

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
itemClassStringvirtual-dnd-list-itemDefault list item class
disabledBooleanfalseDisables the sortable if set to true
animationNumber150Animation speed moving items when sorting
autoScrollBooleantrueAutomatic scrolling when moving to the edge of the container
scrollSpeedObject{ x: 10, y: 10 }Vertical&Horizontal scrolling speed (px)
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
wrapClassString''List wrapper element class
wrapStyleObject{}List wrapper 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
placeholderClassString''Class name for the drop placeholder

Methods

Use ref to get the method inside the component

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
3.3.6

8 months ago

2.9.4

8 months ago

2.9.5

8 months ago

3.3.5

8 months ago

2.9.3

9 months ago

3.3.4

9 months ago

3.3.3

9 months ago

2.9.2

12 months ago

2.9.1

1 year ago

2.9.0

1 year ago

3.3.1

1 year ago

3.3.0

1 year ago

3.3.2

12 months ago

3.2.5

1 year ago

2.8.9

1 year ago

3.2.4

1 year ago

2.8.7

1 year ago

2.8.8

1 year ago

3.2.3

1 year ago

2.8.6

1 year ago

3.2.2

1 year ago

2.8.5

1 year ago

3.2.1

1 year ago

2.8.4

1 year ago

3.2.0

1 year ago

2.8.3

1 year ago

2.8.2

1 year ago

2.8.1

2 years ago

2.8.0

2 years ago

2.7.4

2 years ago

3.1.4

2 years ago

2.6.16

2 years ago

2.6.17

2 years ago

3.0.4

2 years ago

3.0.3

2 years ago

3.0.2

2 years ago

2.7.3

2 years ago

2.7.0

2 years ago

2.7.2

2 years ago

2.7.1

2 years ago

3.1.3

2 years ago

3.1.2

2 years ago

3.1.1

2 years ago

3.1.0

2 years ago

2.6.15

3 years ago

2.6.3

3 years ago

2.6.2

3 years ago

2.6.11

3 years ago

2.6.12

3 years ago

2.6.13

3 years ago

2.6.14

3 years ago

2.6.10

3 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.6.5

3 years ago

2.6.4

3 years ago

2.6.7

3 years ago

2.6.6

3 years ago

2.6.9

3 years ago

2.6.8

3 years ago

2.6.1

3 years ago

2.6.0

3 years ago

2.3.0

3 years ago

2.2.0

3 years ago

2.5.0

3 years ago

2.4.1

3 years ago

2.4.0

3 years ago

2.5.2

3 years ago

2.5.1

3 years ago

2.4.2

3 years ago

2.1.10

3 years ago

2.1.9

3 years ago

2.1.8

3 years ago

2.1.7

3 years ago

2.1.6

3 years ago

2.1.5

3 years ago

2.1.4

3 years ago

2.1.3

3 years ago

2.1.2

3 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.0.9

4 years ago

2.0.8

4 years ago

2.0.7

4 years ago

2.0.6

4 years ago

2.0.5

4 years ago

2.0.4

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago