All Projects → anish2690 → Vue Draggable Next

anish2690 / Vue Draggable Next

Vue 3 drag-and-drop component

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Vue Draggable Next

Ng Drag Drop
Drag & Drop for Angular - based on HTML5 with no external dependencies. 🎉
Stars: ✭ 233 (+206.58%)
Mutual labels:  draggable, drag-drop
React Smooth Dnd
react wrapper components for smooth-dnd
Stars: ✭ 1,560 (+1952.63%)
Mutual labels:  draggable, drag-drop
Sortable
Reorderable drag-and-drop lists for modern browsers and touch devices. No jQuery or framework required.
Stars: ✭ 23,641 (+31006.58%)
Mutual labels:  draggable, drag-drop
Svgdragtree
一个可以通过拖放 SVG 图标,来生成拥有树状结构的视图与数据的前端组件。 SDT example:
Stars: ✭ 113 (+48.68%)
Mutual labels:  draggable, drag-drop
Dragact
a dragger layout system with React style .
Stars: ✭ 710 (+834.21%)
Mutual labels:  draggable, drag-drop
Vue Moveable
↔️ ↕️ 🔄 Vue.js wrapper for Moveable
Stars: ✭ 792 (+942.11%)
Mutual labels:  draggable
Gridstrap.js
gridstrap.js is a jQuery plugin designed to take Bootstrap's CSS grid system and turn it into a managed draggable and resizeable grid while truely maintaining its responsive behaviour.
Stars: ✭ 32 (-57.89%)
Mutual labels:  draggable
Dragmove.js
A super tiny Javascript library to make DOM elements draggable and movable. ~500 bytes and no dependencies.
Stars: ✭ 757 (+896.05%)
Mutual labels:  draggable
Hwpanmodal
HWPanModal presents controller from bottom and drag to dismiss, high customize. iOS13 default modalPresentationStyle. 任意形式的底部弹框动画;头条、知乎、抖音弹出评论效果;地图浮层,iOS13 present默认模态效果。
Stars: ✭ 713 (+838.16%)
Mutual labels:  drag-drop
Vue Smooth Dnd
Vue wrapper components for smooth-dnd
Stars: ✭ 1,121 (+1375%)
Mutual labels:  draggable
Angular Draggable Mat Tree
Example implementation of drag and drop on Angular Material Tree
Stars: ✭ 47 (-38.16%)
Mutual labels:  draggable
React Picky Date Time
A react component for date time picker. Online demo examples
Stars: ✭ 31 (-59.21%)
Mutual labels:  draggable
Draggableflagview
可拖拽的红点,(仿新版QQ,tab下面拖拽标记为已读的效果),拖拽一定的距离可以消失回调。
Stars: ✭ 811 (+967.11%)
Mutual labels:  draggable
Dom Examples
Code examples that accompany various MDN DOM and Web API documentation pages
Stars: ✭ 984 (+1194.74%)
Mutual labels:  drag-drop
Scrollbooster
Enjoyable content drag-to-scroll library
Stars: ✭ 775 (+919.74%)
Mutual labels:  draggable
Ios Drag And Drop
A library that helps you support drag and drop operations in your iOS applications.
Stars: ✭ 48 (-36.84%)
Mutual labels:  drag-drop
React Ui Tree
React tree component with drag & drop
Stars: ✭ 720 (+847.37%)
Mutual labels:  draggable
Silex
Silex is a static website builder in the cloud.
Stars: ✭ 958 (+1160.53%)
Mutual labels:  drag-drop
Vue Drag Resize
Vue Component for resize and drag elements
Stars: ✭ 1,007 (+1225%)
Mutual labels:  draggable
Simplerecyclerview
A RecyclerView extension for building list more easily.
Stars: ✭ 953 (+1153.95%)
Mutual labels:  drag-drop

vue-draggable-next

Vue 3 drag-and-drop component based on Sortable.js

Demo.

Installation

npm install vue-draggable-next
//or
yarn add vue-draggable-next

Typical use:

<template>
  <div class="flex m-10">
    <draggable class="dragArea list-group w-full" :list="list" @change="log">
      <div
        class="list-group-item bg-gray-300 m-1 p-3 rounded-md text-center"
        v-for="element in list"
        :key="element.name"
      >
        {{ element.name }}
      </div>
    </draggable>
  </div>
</template>
<script>
  import { defineComponent } from 'vue'
  import { VueDraggableNext } from 'vue-draggable-next'
  export default defineComponent({
    components: {
      draggable: VueDraggableNext,
    },
    data() {
      return {
        enabled: true,
        list: [
          { name: 'John', id: 1 },
          { name: 'Joao', id: 2 },
          { name: 'Jean', id: 3 },
          { name: 'Gerard', id: 4 },
        ],
        dragging: false,
      }
    },
    methods: {
      log(event) {
        console.log(event)
      },
    },
  })
</script>

With transition-group:

<draggable v-model="myArray">
  <transition-group>
    <div v-for="element in myArray" :key="element.id">
      {{element.name}}
    </div>
  </transition-group>
</draggable>

With Vuex:

<draggable v-model="myList"></draggable>
computed: {
    myList: {
        get() {
            return this.$store.state.elements
        },
        set(value) {
           this.$store.dispatch('updateElements', value)
        }
    }
}

Props

value

Type: Array
Required: false
Default: null

Input array to draggable component. Typically same array as referenced by inner element v-for directive.
This is the preferred way to use Vue.draggable as it is compatible with Vuex.
It should not be used directly but only though the v-model directive:

<draggable v-model="myArray"></draggable>

list

Type: Array
Required: false
Default: null

Alternative to the value prop, list is an array to be synchronized with drag-and-drop.
The main difference is that list prop is updated by draggable component using splice method, whereas value is immutable.
Do not use in conjunction with value prop.

All sortable options

New in version 2.19

Sortable options can be set directly as vue.draggable props since version 2.19.

This means that all sortable option are valid sortable props with the notable exception of all the method starting by "on" as draggable component expose the same API via events.

kebab-case propery are supported: for example ghost-class props will be converted to ghostClass sortable option.

Example setting handle, sortable and a group option:

<draggable
        v-model="list"
        handle=".handle"
        :group="{ name: 'people', pull: 'clone', put: false }"
        ghost-class="ghost"
        :sort="false"
        @change="log"
      >
      <!-- -->
</draggable>

tag

Type: String
Default: 'div'

HTML node type of the element that draggable component create as outer element.

component

Type: String
Default: 'null'

It is also possible to pass the name of vue component as element. In this case, draggable attribute will be passed to the create component.

componentData

Type: Function
Required: false
Default: null

if you need to set props or attrs to the created component.

clone

Type: Function
Required: false
Default: (original) => { return original;}

Function called on the source component to clone element when clone option is true. The unique argument is the viewModel element to be cloned and the returned value is its cloned version.
By default vue.draggable reuses the viewModel element, so you have to use this hook if you want to clone or deep clone it.

move

Type: Function
Required: false
Default: null

If not null this function will be called in a similar way as Sortable onMove callback. Returning false will cancel the drag operation.

function onMoveCallback(evt, originalEvent){
   ...
    // return false; — for cancel
}

evt object has same property as Sortable onMove event, and 3 additional properties:

  • draggedContext: context linked to dragged element
    • index: dragged element index
    • element: dragged element underlying view model element
    • futureIndex: potential index of the dragged element if the drop operation is accepted
  • relatedContext: context linked to current drag operation
    • index: target element index
    • element: target element view model element
    • list: target list
    • component: target VueComponent

HTML:

<draggable :list="list" :move="checkMove">

javascript:

checkMove: function(evt){
    return (evt.draggedContext.element.name!=='apple');
}

Events

  • Support for Sortable events:

    start, add, remove, update, end, choose, unchoose, sort, filter, clone
    Events are called whenever onStart, onAdd, onRemove, onUpdate, onEnd, onChoose, onUnchoose, onSort, onClone are fired by Sortable.js with the same argument.
    See here for reference

HTML:

<draggable :list="list" @end="onEnd">
  • change event

    change event is triggered when list prop is not null and the corresponding array is altered due to drag-and-drop operation.
    This event is called with one argument containing one of the following properties:

    • added: contains information of an element added to the array
      • newIndex: the index of the added element
      • element: the added element
    • removed: contains information of an element removed from to the array
      • oldIndex: the index of the element before remove
      • element: the removed element
    • moved: contains information of an element moved within the array
      • newIndex: the current index of the moved element
      • oldIndex: the old index of the moved element
      • element: the moved element

🌸 Thanks

This project is heavily inspired by the following awesome projects.

Thanks!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].