react+antd实现Modal弹窗拖拽功能

该文章展示了如何在React应用中创建一个自定义的AntDesignModal组件,使其具有拖动功能。通过监听鼠标事件并计算偏移量,实现了Modal头部的拖拽效果,允许用户自由调整Modal的位置。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、版本

"antd": "^5.1.6",

2、新建draggerModal.tsx文件,将下方代码复制进去

/* eslint-disable prefer-destructuring */
import type { MouseEvent } from "react";
import React, { Component } from "react";
import type { ModalProps } from "antd/lib/modal";
import { Modal } from "antd";
import "antd/es/modal/style/index"

export default class AntDraggableModal extends Component<ModalProps> {
  private simpleClass: string;
  private header: any;
  private contain: any;
  private modalContent: any;

  private mouseDownX: number = 0;
  private mouseDownY: number = 0;
  private deltaX: number = 0;
  private deltaY: number = 0;
  private sumX: number = 0;
  private sumY: number = 0;
  private offsetLeft: number = 0;
  private offsetTop: number = 0;

  constructor(props: ModalProps) {
    super(props);
    this.simpleClass = Math.random().toString(36).substring(2);
  }

  handleMove = (event: any) => {
    const deltaX = event.pageX - this.mouseDownX;
    const deltaY = event.pageY - this.mouseDownY;
    this.deltaX = deltaX;
    this.deltaY = deltaY;
    let tranX = deltaX + this.sumX;
    let tranY = deltaY + this.sumY;
    // 左侧
    if (tranX < -this.offsetLeft) {
      tranX = -this.offsetLeft;
    }
    // 右侧
    const offsetRight =
      document.body.clientWidth -
      this.modalContent.parentElement.offsetWidth -
      this.offsetLeft;
    if (tranX > offsetRight) {
      tranX = offsetRight;
    }
    // 上侧
    if (tranY < -this.offsetTop) {
      tranY = -this.offsetTop;
    }
    // 下侧
    const offsetBottom =
      document.body.clientHeight -
      this.modalContent.parentElement.offsetHeight -
      this.offsetTop;
    if (tranY > offsetBottom) {
      tranY = offsetBottom;
    }
    this.modalContent.style.transform = `translate(${tranX}px, ${tranY}px)`;
  };

  initialEvent = (open: boolean) => {
    const { title } = this.props;
    if (open && title) {
      setTimeout(() => {
        window.removeEventListener("mouseup", this.removeUp, false);
        this.contain = document.getElementsByClassName(this.simpleClass)[0];
        this.header = this.contain.getElementsByClassName("ant-modal-header")[0];
        this.modalContent = this.contain.getElementsByClassName("ant-modal-content")[0];
        this.offsetLeft = this.modalContent.parentElement.offsetLeft;
        this.offsetTop = this.modalContent.parentElement.offsetTop;
        this.header.style.cursor = "all-scroll";
        this.header.style.color = "green";
        this.header.onmousedown = (e: MouseEvent<HTMLDivElement>) => {
          this.mouseDownX = e.pageX;
          this.mouseDownY = e.pageY;
          document.body.onselectstart = () => false;
          window.addEventListener("mousemove", this.handleMove, false);
        };
        window.addEventListener("mouseup", this.removeUp, false);
      }, 0);
    }
  };

  removeMove = () => {
    window.removeEventListener("mousemove", this.handleMove, false);
  };

  removeUp = () => {
    // document.body.onselectstart = () => true;
    this.sumX += this.deltaX;
    this.sumY += this.deltaY;
    this.deltaX = 0;
    this.deltaY = 0;
    if (this.sumX < -this.offsetLeft) {
      this.sumX = -this.offsetLeft;
    }
    const offsetRight =
      document.body.clientWidth -
      this.modalContent.parentElement.offsetWidth -
      this.offsetLeft;
    if (this.sumX > offsetRight) {
      this.sumX = offsetRight;
    }
    // 上侧
    if (this.sumY < -this.offsetTop) {
      this.sumY = -this.offsetTop;
    }
    // 下侧
    const offsetBottom =
      document.body.clientHeight -
      this.modalContent.parentElement.offsetHeight -
      this.offsetTop;
    if (this.sumY > offsetBottom) {
      this.sumY = offsetBottom;
    }
    this.removeMove();
  };

  componentDidMount() {
    const { open = false } = this.props;
    this.initialEvent(open);
  }
  componentWillReceiveProps(newProps: any) {
    const { open } = this.props;
    if (newProps.open && !open) {
      this.initialEvent(newProps.open);
    }
    if (open && !newProps.open) {
      this.removeMove();
      window.removeEventListener("mouseup", this.removeUp, false);
    }
  }
  componentWillUnmount() {
    this.removeMove();
    window.removeEventListener("mouseup", this.removeUp, false);
  }

  render() {
    const { children, wrapClassName, ...other } = this.props;
    const wrapModalClassName = wrapClassName
      ? `${wrapClassName} ${this.simpleClass}`
      : `${this.simpleClass}`;
    return (
      <Modal {...other} wrapClassName={wrapModalClassName}>
        {children}
      </Modal>
    );
  }
}

3、引入并使用

import AntDraggableModal from "/@/plugins/commonPlugins/draggerModal";

                .......
    
    <AntDraggableModal
          open={visiable}
          onOk={() => {
            setVisiable(false);
          }}
          onCancel={() => {
            setVisiable(false);
          }}
          width={1380}
          title={data.cellName}
          destroyOnClose={true}
          footer={null}
          closable={true}
          centered={true}
          key={data?.cellId}
          closeIcon={<CloseOutlined style={{ color: "#fff" }} />}
          bodyStyle={{ backgroundColor: "rgb(17, 17, 41)" }}
          className={modalStyle.modal}
        >
          {visiable && <aModal data={prop} visiable={visiable} />}
    </AntDraggableModal>

over~ 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值