我要造轮子系列 - 常用的拖拽组件

先上效果

我要造轮子系列第二个组件是常用的拖拽组件。

很多时候,我们需要让用户来自定义自己想要的菜单顺序,或者一些按钮的排序,那么这个时候,怎么给用户自定义顺序呢?
拖拽无疑是最简单易懂的,因为玩过手机的都知道怎么拖动桌面的app来改变位置。

屏幕录制2021-06-29 上午11.18.01.gif

组件需求分析

  1. 排序模式-有元素交换模式和元素插入模式,
  2. 排列模式-有列表模式,和flex布局模式,其中flex布局模式按三等分,后续可以追加参数变为用户传入参数
  3. 设置盒子总宽度和设置拖拽元素的高度
  4. 传入drag-ary 让用户加上自定义内容
  5. 拖拽后回调返回一个对象分别是两个元素的索引值提供用户使用

拖拽原理

常见的拖拽操作是什么样的呢?整过过程大概有下面几个步骤:

1、用鼠标点击被拖拽的元素

2、按住鼠标不放,移动鼠标

3、拖拽元素到一定位置,放开鼠标

这里的过程涉及到三个dom事件:onmousedown,onmousemove,onmouseup。所以拖拽的基本思路就是:

1、用鼠标点击被拖拽的元素触发onmousedown

(1)设置当前元素的可拖拽为true,表示可以拖拽

(2)记录当前鼠标的坐标x,y

(3)记录当前元素的坐标x,y

2、移动鼠标触发onmousemove

(1)判断元素是否可拖拽,如果是则进入步骤2,否则直接返回

(2)如果元素可拖拽,则设置元素的坐标

元素的x坐标 = 鼠标移动的横向距离+元素本来的x坐标 = 鼠标现在的x坐标 - 鼠标之前的x坐标 + 元素本来的x坐标

元素的y坐标 = 鼠标移动的横向距离+元素本来的y坐标 = 鼠标现在的y坐标 - 鼠标之前的y坐标 + 元素本来的y坐标

3、放开鼠标触发onmouseup

(1)将鼠标的可拖拽状态设置成false

实现拖拽后,就可以作一些边界判断,遍历传入数组,计算拖动元素是否在目标元素的返回并返回索引值,再进行重新排序就可以了

代码

<template>
    <div class="drag">
        <div :style="{width : boxWidth==='auto'? 'auto': boxWidth+'px'}"
             :class="getmode"
        >
            <div :style="{transform: `translate(${x}px,${y}px)` ,
            width:dragInfo.width,height:dragInfo.height,
            background:dragInfo.color}"
                 class="box"
                 v-show="isDrag" v-html="dragAry[dragInfo.index].html">
            </div>
            <div :class="[
                setBlcock,isTargetDrag&&dragIndex ===index? 'isTargetDrag':'',
            !dragMode&&isDrag&&dragInfo.index ===index?'active':'',
            isTargetDrag&&dragIndex ===index&&dragMode?'dragModeAct':'']"
                 :key="index"
                 :ref="'block'+index"
                 :style="{background:dragMode&&isDrag && index===Number(dragInfo.index) ?actInfo.color: item.color ,
                 height:dragHeight==='auto'?'auto':dragHeight+'px'}"
                 @mousedown.prevent="dragMove($event,index)"
                 v-for="(item,index) in dragAry"
                 v-html="dragMode&&isDrag && index===Number(dragInfo.index)?actInfo.html :item.html"
            >
            </div>
        </div>
    </div>
</template>

<script>

    export default {
        name: 'drag',
        props: {
            //元素排序模式   1:change |0:insert
            dragMode: {
                type: [Number, Boolean],
                default: 1
            },
            //元素布局模式   flex |list
            mode: {
                type: String,
                default: 'flex'
            },
            //盒子宽度  'auto'| number
            boxWidth: {
                type: [Number, String],
                default: 'auto'
            },
            //拖拽元素高度   'auto'| 自定义高度
            dragHeight: {
                type: [Number,String],
                default: 50
            },
            //传入的元素数组    [color : '',html : '']
            dragAry: {
                type: Array,
                default:[]
            }
        },
        computed: {
            // 计算排列模式
            getmode() {
                return this.mode === 'list' ? 'blockList' : 'blockFlex'
            },
            // 计算排列模式
            setBlcock() {
                return this.mode === 'list' ? 'lblock' : 'fblock'
            }
        },
        data() {
            return {
                x: 0,  //拖拽的x坐标
                y: 0,  // 拖拽的y坐标
                isDrag: false,//是否在拖拽
                //正在拖拽元素的信息
                dragInfo: {
                    width: '',
                    height: '',
                    background: '',
                    index: 0
                },
                //目标元素信息
                actInfo: {
                    color: '',
                    text: ''
                },
                //是否目标元素
                isTargetDrag: false,
                //目标元素索引值
                dragIndex: null,
            }
        },
        methods: {
            //拖拽逻辑
            dragMove(ev, index) {
                const {color} = this.dragAry[index]
                const {clientX, clientY} = ev
                const {offsetLeft, offsetTop, offsetWidth, offsetHeight, parentElement} = ev.currentTarget
                const dx = clientX - offsetLeft, dy = clientY - offsetTop
                let moveX, moveY
                this.isDrag = true
                this.x = offsetLeft
                this.y = offsetTop
                this.dragInfo.width = offsetWidth + 'px'
                this.dragInfo.height = offsetHeight + 'px'
                this.dragInfo.index = index
                this.dragInfo.color = color
                document.onmousemove = (moveEv) => {
                    moveEv.preventDefault()
                    moveX = moveEv.clientX - dx
                    moveY = moveEv.clientY - dy
                    if (moveX < 0) {
                        moveX = 0
                    }
                    if (moveX > parentElement.offsetWidth - offsetWidth) {
                        moveX = parentElement.offsetWidth - offsetWidth
                    }
                    if (moveY < 0) {
                        moveY = 0
                    }
                    if (moveY > parentElement.offsetHeight - offsetHeight) {
                        moveY = parentElement.offsetHeight - offsetHeight
                    }
                    this.dragAry.forEach((item, indexs) => {
                        const [{offsetLeft: ox, offsetTop: oy}] = this.$refs['block' + indexs]
                        if (moveX + offsetWidth / 2 > ox && moveX + offsetWidth / 2 < ox + offsetWidth &&
                            moveY + offsetHeight / 2 > oy && moveY + offsetHeight / 2 < oy + offsetHeight) {
                            this.dragIndex = indexs
                            this.isTargetDrag = true
                            this.actInfo.html = this.dragAry[indexs].html
                            this.actInfo.color = this.dragAry[indexs].color
                        }
                    })

                    this.x = moveX
                    this.y = moveY
                }
                document.onmouseup = () => {
                    if (this.isTargetDrag) {
                        const tempIndex = index, temp = this.dragAry[tempIndex]
                        if (this.dragMode) {
                            this.$set(this.dragAry, tempIndex, this.dragAry[this.dragIndex])
                            this.$set(this.dragAry, this.dragIndex, temp)
                        } else {
                            this.dragAry.splice(this.dragIndex + 1, 0, temp)
                            this.dragAry.splice(tempIndex, 1)
                        }
                        this.$emit('dragMouseup', {index, dragIndex: this.dragIndex})
                    }

                    this.isDrag = false
                    this.isTargetDrag = false
                    document.onmousemove = null
                    document.onmousedown = null
                }
            }
        }
    }
</script>

<style scoped>
    .box {
        color: #fff;
        position: absolute;
        cursor: move;
        transition-duration: 100ms;
        transition-timing-function: ease-out;
        z-index: 111111;
        background: red;
    }

    .active {
        background: #fff !important;
        border: 1px dashed #000;
    }

    .blockFlex {
        width: 500px;
        display: flex;
        margin: 0 auto;
        flex-wrap: wrap;
        position: relative;
        transition-duration: 500ms;
        transition-timing-function: ease-out;
        overflow: hidden;

    }

    .fblock {
        width: calc(calc(100% / 3) - 10px);
        margin: 5px;
        height: 50px;
        color: #fff;
        box-sizing: border-box;
        background: red;
        cursor: move;
        transition-duration: 500ms;
        transition-timing-function: ease;
        overflow: hidden;
    }

    .blockList {
        position: relative;
        margin: 0 auto;
        transition-duration: 500ms;
        transition-timing-function: ease-out;
    }

    .lblock {
        width: 100%;
        height: 50px;
        margin-bottom: 20px;
        color: #fff;
        box-sizing: border-box;
        background: red;
        cursor: move;
        transition-duration: 500ms;
        transition-timing-function: ease;
    }


    .isTargetDrag {
        cursor: move;
        transform: scale(1.1);
        transition-duration: 500ms;
        transition-timing-function: ease-in;
        position: relative;
    }
    .isTargetDrag:before{
        border: 1px dashed red;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .dragModeAct {
        background: #fff !important;
    }
</style>

props参数

参数 说明 类型 默认值
mode 排列模式 String 100
drag-mode 是插入模式还是交换位置 Number 0
box-width 盒子宽度 String auto
drag-height 拖拽元素高度 String 100
drag-ary 传入拖拽的数组,object字段可以添加color 和html Array []
dragMouseup 返回拖拽的当前和目标索引值 Events

最后

这个拖拽组件就这样实现啦,但还是很多不足,或者不能满足很大部分用户的开发需求,不过轮子不是一朝一夕能做好,还是需要时间慢慢打磨、摸索还有什么需求。

另外看到自己的轮子都有200多下载还是有点小激动!!_

image.png

最后附上npm和github

npm install nigo-vue-drag

或者

yarn add nigo-vue-drag

仓库地址

git clone https://github.com/shinewen189/nigo-vue-drag.git
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容

  • 8.Modal组件:[是一种简单的覆盖在其他视图之上显示内容的方式]属性:visiblevisible属性决定 m...
    Lucky_ce60阅读 1,632评论 0 3
  • 对开发者来说ExtJS的一个最大的交互性设计模式就是拖拽,使用拖拽的时候,无需有太多的思考,直接做好就行了。五步可...
    苏生米沿阅读 1,470评论 1 3
  • 前端学习笔记の拖拽(一)# 源码地址:https://github.com/WZOnePiece/study-dr...
    迷缘火叶阅读 2,696评论 0 8
  • 前言 本文依据半年前本人的分享《浅谈js拖拽》撰写,算是一篇迟到的文章。 基本思路 虽然现在关于拖拽的组件库到处都...
    lanberts阅读 2,417评论 0 0
  • 之前写过一篇浏览器事件的相关操作和事件运行的原理——JavaScript浏览器事件解析。这一篇主要写一些常用的事件...
    faremax阅读 1,599评论 0 0