Simple implementation of vue drag and drop

Simple implementation of vue drag and drop

This article mainly introduces the simple implementation of vue drag and drop, as follows:

Rendering

No duplication is determined and old data is not deleted.

Data body

 <MyShuttle:dataOrigin='[
          {
            Name: "Data 001",
            Id: "Number 001",
          },
          {
            Name: "Data 002",
            Id: "Number 001",
          },
          {
            Name: "Data 003",
            Id: "Number 001",
          }]' 
          
      :space='[{
            Name:"Right 001",
            Id:"Right 001",
            }]' />

Code

draggable Enable draggable

@dragenter.prevent @dragover.prevent
// Prevent the browser from defaulting to the behavior, otherwise a cross will be displayed, which is not pretty

Preventing default behavior

@dragleave.stop="dragleave($event, 'main')"

Entering and leaving the current element will trigger

@dragend.stop="dragEnd($event, item)"

Drop the drag content trigger

Drag events and properties

Mark This is very important!!! This determines the behavior of the drag event. When you click to start dragging, the location where the mouse is clicked is the marker.
dragstart: Executed when the mouse is clicked and moved.
drag: After dragstart is executed, it is triggered continuously while the mouse is moving.
dragend: triggered when the dragging behavior ends, that is, when the mouse is released.
dragenter: Triggered when the marker of the element being dragged enters a DOM element, and it will be triggered first. The entered DOM element triggers this event.
dragover: Triggered when the dragged element's marker moves on the incoming DOM element, and also when it moves itself.
dragleave: Triggered when the dragged element leaves the entered DOM.

H5 drag attribute draggable

draggable: When an element needs to be draggable, it needs to be set to true. The default value is false. Selected text, images, and links can be dragged by default.
DataTransfer object: This property is used to save the dragged and dropped data and interaction information. This component does not use it and is temporarily ignored.

When the mouse moves to the target div box, it will be added. The simple one can best illustrate the problem.

<template>
  <div class="MyShuttle">
    <div class="MyShuttleLeft">
      <div class="title">Data Source</div>
      <div class="dataBox" @dragleave.stop="dragleave($event, 'main')">
        <div v-for="(item, i) in dataOrigin" :key="i" class="dataList" draggable @dragenter.prevent
          @dragover.prevent @dragstart.stop="dragstart($event, item)"
          @dragend.stop="dragEnd($event, item)">
          {{ item.Name}}
        </div>
      </div>
    </div>
    <div class="MyShuttleCenter"></div>
    <div class="MyShuttleRight">
      <div class="title">Data Source</div>
      <div ref="MyShuttleRight" class="dataBox">
        <div v-for="(item, i) in spaceList" :key="i" class="dataList" draggable @dragenter.prevent
          @dragover.prevent>
          {{ item.Name}}
        </div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: '',
  components: {},
  props: {
    dataOrigin: {
      type: Array
    },
    space: {
      type: Array
    }
  },
  data() {
    return {
      spaceList: this.space,
      isDragStatus: false
    }
  },
  computed: {},
  watch: {},
  created() { },
  mounted() { },
  methods: {
    dragleave(e, item) {
      // console.log(e, item)
      if (item === 'main') {
        this.isDragStatus = true
      } else {
        this.isDragStatus = false
      }
      // console.log(this.isDragStatus)
    },
    dragstart(e, item) {
      // console.log(e, item)
    },
    dragEnd(e, item) {
      const top = this.$refs.MyShuttleRight.getBoundingClientRect().top
      const right = this.$refs.MyShuttleRight.getBoundingClientRect().right
      const bottom = this.$refs.MyShuttleRight.getBoundingClientRect().bottom
      const left = this.$refs.MyShuttleRight.getBoundingClientRect().left
      console.log(top, right, bottom, left)
      console.log(e.clientX, e.clientY, item)
      if (this.isDragStatus && e.clientY > top && e.clientY < bottom && e.clientX > left && e.clientX < right) {
        this.spaceList.push(item)
        console.log(this.spaceList.indexOf(item))
      }
    }
  }
}
</script>

<style scoped lang="scss">
.MyShuttle {
  width: 100%;
  height: 308px;

  display: flex;
  justify-content: space-between;
  // Common style for left and right boxes.MyShuttleLeft,
  .MyShuttleRight {
    border: 1px solid #dddddd;
    border-collapse: collapse;
    .title {
      box-sizing: border-box;
      width: 100%;
      height: 40px;
      background: #f5f5f5;
      border-radius: 4px 4px 0px 0px;
      border-bottom: 1px solid #dddddd;
      padding: 10px 16px;
      font-size: 14px;
      font-family: PingFangSC-Regular, PingFang SC;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
    }
    .dataBox {
      width: 100%;
      height: 228px;
      overflow:auto;
      padding: 6px 0;
      .dataList {
        width: 96%;
        height: 40px;
        box-sizing: border-box;
        font-size: 14px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #666;
        line-height: 20px;
        margin: 0 2% 10px;
        padding: 10px 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
        user-select: none;
        cursor: pointer;
        &:hover {
          color: #01bc77;
          background: rgba(1, 188, 119, 0.1);
        }
      }
    }
  }
  .MyShuttleLeft {
    width: 362px;
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
  }
  .MyShuttleCenter {
    width: 64px;
    height: 100%;
  }
  .MyShuttleRight {
    width: 362px;
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
  }
}
</style>

This is the end of this article about the simple implementation of vue drag-and-drop addition. For more relevant vue drag-and-drop addition content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementing drag and drop function based on Vue
  • Realizing drag effect based on Vue
  • How to configure and use the Vue.Draggable drag function
  • Vue.Draggable realizes the drag effect
  • Implementing smooth transition drag and drop sorting function based on Vue
  • Vue custom directive drag function example
  • Example of drag and drop function implemented in vue2.0 using Sortable.js
  • Detailed explanation of draggable tree table example based on Vue
  • Vue develops drag progress bar sliding component

<<:  Implementation example of specifying container ip when creating a container in docker

>>:  The marquee tag in HTML achieves seamless scrolling marquee effect

Recommend

Supplementary article on front-end performance optimization

Preface I looked at the previously published arti...

The three new indexes added in MySQL 8 are hidden, descending, and functions

Table of contents Hidden, descending, and functio...

Detailed explanation of using echarts map in angular

Table of contents Initialization of echart app-ba...

JavaScript canvas to achieve code rain effect

This article shares the specific code for canvas ...

HTML+CSS to implement the sample code of the navigation bar drop-down menu

Effect The pictures in the code can be changed by...

The whole process record of vue3 recursive component encapsulation

Table of contents Preface 1. Recursive components...

6 inheritance methods of JS advanced ES6

Table of contents 1. Prototype chain inheritance ...

HTML code to add icons to transparent input box

I was recently writing a lawyer recommendation we...

HTML table markup tutorial (48): CSS modified table

<br />Now let's take a look at how to cl...

Detailed explanation of Linux curl form login or submission and cookie usage

Preface This article mainly explains how to imple...

A simple example of how to implement fuzzy query in Vue

Preface The so-called fuzzy query is to provide q...

Application of mapState idea in vuex

Table of contents 1. Map method 2. Application ba...

Detailed explanation of importing/exporting MySQL data in Docker container

Preface We all know that the import and export of...

Six methods for nginx optimization

1. Optimize Nginx concurrency [root@proxy ~]# ab ...