实现element-ui dialog拖拽调整位置和窗口大小

前言

本文主要记录给element-ui dialog添加可拖拽位置及可拖拽宽高的功能的整个过程(部分代码来自网络参考)。

自定义指令

import Vue from 'vue'

// v-dialogDrag: 位置拖拽
Vue.directive('dialogDrag', {
  bind (el, binding, vnode, oldVnode) {
    const dialogHeaderEl = el.querySelector('.el-dialog__header')
    const dragDom = el.querySelector('.el-dialog__wrapper')
    dialogHeaderEl.style.cursor = 'move'
    // 获取原有属性 ie dom元素.currentStyle 火狐谷歌 window.getComputedStyle(dom元素, null);
    const sty = dragDom.currentStyle || window.getComputedStyle(dragDom, null)

    dialogHeaderEl.onmousedown = (e) => {
      // 鼠标按下,计算当前元素距离可视区的距离
      const disX = e.clientX - dialogHeaderEl.offsetLeft
      const disY = e.clientY - dialogHeaderEl.offsetTop

      // 获取到的值带px 正则匹配替换
      let styL, styT

      // 注意在ie中 第一次获取到的值为组件自带50% 移动之后赋值为px
      if (sty.left.includes('%')) {
        styL = +document.body.clientWidth * (+sty.left.replace(/%/g, '') / 100)
        styT = +document.body.clientHeight * (+sty.top.replace(/%/g, '') / 100)
      } else {
        styL = +sty.left.replace(/px/g, '')
        styT = +sty.top.replace(/px/g, '')
      }

      document.onmousemove = function (e) {
        // 通过事件委托,计算移动的距离
        const l = e.clientX - disX
        const t = e.clientY - disY

        // 移动当前元素
        dragDom.style.left = `${l + styL}px`
        // 判断弹窗位置,防止弹窗头部移出可视区
        dragDom.style.top = `${(t + styT) < 0 ? 0 : t + styT}px`
      }

      document.onmouseup = function (e) {
        document.onmousemove = null
        document.onmouseup = null
      }
    }
  }
})

// v-dialogDragWidth: 弹窗宽度拖大 拖小
Vue.directive('dialogDragWidth', {
  bind (el, binding, vnode, oldVnode) {
    const dragDom = binding.value.$el
    el.style.cursor = 'se-resize'
    el.onmousedown = (e) => {
      // 鼠标按下,在原来页面上增加透明遮罩,防止部分元素例如iframe监听不到鼠标事件
      const mask = document.createElement('div')
      mask.setAttribute('style', 'position:fixed;top:0px;bottom:0px;left:0px;right:0px;background:rgba(0,0,0,0)')
      document.body.appendChild(mask)
      // 计算当前元素距离可视区的距离
      const disX = e.clientX - el.offsetLeft
      const disY = e.clientY - el.offsetTop
      document.body.onmousemove = function (e) {
        e.preventDefault() // 移动时禁用默认事件

        // 通过事件委托,计算移动的距离
        const l = e.clientX - disX
        const h = e.clientY - disY
        dragDom.style.width = `${l}px`
        // 判断弹窗高度,防止用于拖动的点移出可视区
        dragDom.style.height = `${h > document.body.offsetHeight ? document.body.offsetHeight : h}px`
      }
      document.body.onmouseup = function (e) {
        document.body.removeChild(mask) // 移除mask遮罩
        document.body.onmousemove = null
        document.body.onmouseup = null
      }
    }
  }
})

具体应用

<!-- 拖拽整个弹出层,保证窗口底下的页面仍然可操作-->
<div id="dialog" v-dialogDrag >
          <el-dialog
              ref="dialog__wrapper"
              title="弹窗"
              :visible.sync="dialogVisible"
              :modal="false"
              :close-on-click-modal="false"
              center>
            <div class="dialog-body">
   			  <!-- 弹窗内容 -->
            </div>
            <!--用于拖拽窗口大小的点(位于窗口右下角)-->
            <div class="pointRB" v-dialogDragWidth="$refs.dialog__wrapper"></div>
          </el-dialog>
        </div>
#dialog{
      ::v-deep.el-dialog__wrapper{
        right: unset;
        bottom: unset;
        height: 600px;
        .el-dialog .el-dialog__body{
          position: relative;
          .pointRB{
            width: 5px;
            height: 5px;
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 2;
          }
        }
      }
    }

注意点

1.为保证窗口底下的页面仍然可操作,.el-dialog__wrapper样式的right和bottom属性必须unset,只保留left和top属性
2.监听拖拽调整大小时,若在特殊元素(base, bdo, br, head, html, iframe, meta, param, script, style 和title)上松开鼠标,无法监听onmouseup 事件
3.示例中可实现窗口大小调整的只有窗口右下角。
4.需要保证用于监听的部分(弹窗头部及右下角的point元素在可视区内)

Logo

前往低代码交流专区

更多推荐