react可视化编辑器 第五章 升级版 拖拽、缩放、转圈、移动

本文主要是介绍react可视化编辑器 第五章 升级版 拖拽、缩放、转圈、移动,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在这里插入图片描述

本章代码结构: 主入口Test.tsx , 组件:ResizeControl.tsx

本章花费俩天时间完成代码例子, 单独抽离代码 封装好一个 ResizeControl 组件, 拿来即用。

代码中const domObj = document.getElementById(resize-item-${startPos.id}) 这句是关键代码, 不然获取的dom节点有问题,导致多个红色div操作时候会重叠

  • ResizeControl.tsx
/* eslint-disable no-case-declarations */
import { FC, useEffect, useRef, useState } from 'react';
import styles from './index.module.scss';
import type { Demo } from '../../pages/Test';interface PropsType {children: JSX.Element | JSX.Element[];value: Demo;emitData: (val: Demo) => void;
}// 获取旋转角度参数
function getRotate(transform: string) {// 假设 transform 是 "rotate(45deg)"// console.info('transform', transform);if (!transform) return 0;const match = /rotate\(([^)]+)\)/.exec(transform);const rotate = match ? parseFloat(match[1]) : 0;// console.info(890, rotate);return rotate;
}const ResizeControl: FC<PropsType> = (props: PropsType) => {const { children, value, emitData } = props;const points = ['lt', 'tc', 'rt', 'rc', 'br', 'bc', 'bl', 'lc'];const [startPos, setStartPos] = useState<Demo>(value);const resizeItemRef = useRef(null);const isDown = useRef(false);const [direction, setDirection] = useState('');useEffect(() => {document.addEventListener('mouseup', handleMouseUp);document.addEventListener('mousemove', handleMouseMove);return () => {document.removeEventListener('mouseup', handleMouseUp);document.removeEventListener('mousemove', handleMouseMove);};}, [isDown, startPos]);// 鼠标被按下const onMouseDown = (e: React.MouseEvent<HTMLDivElement>) => {console.info('onMouseDown', e.currentTarget);e.stopPropagation();// e.preventDefault();// 获取 整个 resize-item 的dom节点const domObj = document.getElementById(`resize-item-${startPos.id}`);if (!domObj) return;resizeItemRef.current = domObj;if (!resizeItemRef.current) return;const { width, height, transform } = resizeItemRef.current.style;// 获取当前操作 dom  data-keyconst direction = e.currentTarget.getAttribute('data-key') || '';console.log('元素方向', direction);setDirection(direction);// 获取旋转角度const rotate = getRotate(transform);// 记录状态isDown.current = true;setStartPos({...startPos,startX: e.clientX,startY: e.clientY,width: +width.replace(/px/, '') - 2,height: +height.replace(/px/, '') - 2,rotate,});};const handleMouseMove = (e: { clientX: number; clientY: number }) => {if (isDown.current && resizeItemRef.current) {const { rotate, startX, startY } = startPos;let { height, width, left, top } = startPos;// console.log('startPos', startPos);const curX = e.clientX;const curY = e.clientY;// 计算偏移量const offsetX = curX - startX;const offsetY = curY - startY;// console.info('offsetX', offsetX, offsetY);const rect = resizeItemRef.current.getBoundingClientRect();let nowRotate = 0;switch (direction) {// 右中case 'rc':width += offsetX;break;// 左中case 'lc':width -= offsetX;left += offsetX;break;// 底中case 'bc':height += offsetY;break;// 顶中case 'tc':height -= offsetY;top += offsetY;break;// 右上角case 'rt':height -= offsetY;top += offsetY;width += offsetX;break;// 左上角case 'lt':height -= offsetY;top += offsetY;width -= offsetX;left += offsetX;break;// 右下角case 'br':height += offsetY;width += offsetX;break;// 左下角case 'bl':height += offsetY;width -= offsetX;left += offsetX;break;case 'rotate':// 获取元素中心点位置const centerX = rect.left + rect.width / 2;const centerY = rect.top + rect.height / 2;// 旋转前的角度const rotateDegreeBefore =Math.atan2(startY - centerY, startX - centerX) / (Math.PI / 180);// 旋转后的角度const rotateDegreeAfter =Math.atan2(curY - centerY, curX - centerX) / (Math.PI / 180);// 获取旋转的角度值nowRotate = rotateDegreeAfter - rotateDegreeBefore + rotate;resizeItemRef.current.style.transform = `rotate(${nowRotate}deg)`;break;case 'move':left += offsetX;top += offsetY;// 获取父元素的边界 (打开注释, 可验证边界条件判断)// const parent = resizeItemRef.current.parentElement;// if (!parent) return;// const parentRect = parent.getBoundingClientRect();// // 限制div不超过父元素的边界// const maxTop = parentRect.height - height;// const maxLeft = parentRect.width - width;// left = Math.min(Math.max(left, 0), maxLeft);// top = Math.min(Math.max(top, 0), maxTop);break;}// console.log('-----', width, height);resizeItemRef.current.style.width = width + 'px';resizeItemRef.current.style.height = height + 'px';resizeItemRef.current.style.left = left + 'px';resizeItemRef.current.style.top = top + 'px';const newPos = {...startPos,height,width,startX: curX, startY: curY,left,top,rotate: nowRotate,};emitData(newPos);setStartPos(newPos);}};if (!children) return null;const handleMouseUp = () => {console.info('clear。。。。');isDown.current = false;resizeItemRef.current = null;};return (<divclassName={styles['resize-item']}style={{left: `${startPos.left}px`,top: `${startPos.top}px`,width: `${startPos.width + 2}px`,height: `${startPos.height + 2}px`,}}id={`resize-item-${startPos.id}`}>{points.map((item, index) => (<divkey={index}data-key={item}onMouseDown={onMouseDown}className={[styles['resize-control-btn'],styles[`resize-control-${item}`],].join(' ')}></div>))}<divclassName={styles['resize-control-rotator']}onMouseDown={onMouseDown}data-key={'rotate'}></div><divdata-key={'move'}onMouseDown={(e) => onMouseDown(e)}style={{ width: '100%', height: '100%', background: 'yellow' }}>{/* <span style={{ wordBreak: 'break-all', fontSize: '10px' }}>{JSON.stringify(startPos)}</span> */}{children}</div></div>);
};
export default ResizeControl;
  • ResizeControl/index.module.scss
.resize-item {cursor: move;position: absolute;z-index: 2;border: 1px dashed yellow;box-sizing: border-box;
}$width_height: 4px; // 建议偶数.resize-control-btn {position: absolute;width: $width_height;height: $width_height;background: yellow;// user-select: none; // 注意禁止鼠标选中控制点元素,不然拖拽事件可能会因此被中断z-index: 1;
}.resize-control-btn.resize-control-lt {cursor: nw-resize;top: $width_height / -2;left: $width_height / -2;
}
.resize-control-btn.resize-control-tc {cursor: ns-resize;top: $width_height / -2;left: 50%;margin-left: $width_height / -2;
}
.resize-control-btn.resize-control-rt {cursor: ne-resize;top: $width_height / -2;right: $width_height / -2;
}
.resize-control-btn.resize-control-rc {cursor: ew-resize;top: 50%;margin-top: $width_height / -2;right: $width_height / -2;
}
.resize-control-btn.resize-control-br {cursor: se-resize;bottom: $width_height / -2;right: $width_height / -2;
}
.resize-control-btn.resize-control-bc {cursor: ns-resize;bottom: $width_height / -2;left: 50%;margin-left: $width_height / -2;
}
.resize-control-btn.resize-control-bl {cursor: sw-resize;bottom: $width_height / -2;left: $width_height / -2;
}
.resize-control-btn.resize-control-lc {cursor: ew-resize;top: 50%;margin-top: $width_height / -2;left: $width_height / -2;
}.resize-control-rotator {position: absolute;cursor: pointer;bottom: -20px;left: 50%;margin-left: -10px;width: 20px;text-align: center;font-size: 10px;background: red;
}
  • 主入口 Test.tsx
import React, { useState, DragEvent, useRef, useEffect } from 'react';
import ResizeControl from '../../components/ResizeControl';export interface Demo {id: number;left: number;top: number;startX: number;startY: number;width: number;height: number;rotate: number;
}// 获取元素旋转角度
function getDomRotate(transform: string) {// 假设 transform 是 "rotate(45deg)"// console.info('transform', transform);const match = /rotate\(([^)]+)\)/.exec(transform);const rotate = match ? parseFloat(match[1]) : 0;// console.info(890, rotate);return rotate;
}const App: React.FC = () => {const [demos, setDemos] = useState<Demo[]>([]);const divRef = useRef<HTMLDivElement | null>(null);const [activeDomId, setActiveDomId] = useState(0);const handleDragStart = (e: DragEvent<HTMLDivElement>, id: number) => {e.dataTransfer.setData('id', id.toString());// 鼠标偏移量const offsetX = e.clientX - e.currentTarget.getBoundingClientRect().left;const offsetY = e.clientY - e.currentTarget.getBoundingClientRect().top;e.dataTransfer.setData('offsetX', offsetX.toString());e.dataTransfer.setData('offsetY', offsetY.toString());divRef.current = e.currentTarget;};const handleDrop = (e: DragEvent<HTMLDivElement>) => {e.preventDefault();console.info('鼠标释放位置', e.clientX, e.clientY);const contentDom = document.getElementById('content');if (!contentDom) return;const contentStyle = contentDom.getBoundingClientRect();// console.info('contentStyle', contentStyle);const { left, top } = contentStyle;const offsetX = +e.dataTransfer.getData('offsetX') || 0;const offsetY = +e.dataTransfer.getData('offsetY') || 0;// console.info('offsetX', offsetX, offsetY);const newLeft = e.clientX - left - offsetX;const newTop = e.clientY - top - offsetY;if (!divRef.current) return;const { width, height, transform } = divRef.current.style;// 元素旋转角度let rotate = 0;if (!transform) {rotate = 0;} else {rotate = getDomRotate(transform);}const newDemo: Demo = {id: e.dataTransfer.getData('id'),startX: e.clientX,startY: e.clientY,left: newLeft,top: newTop,width: +width.replace(/px/, ''),height: +height.replace(/px/, ''),rotate,};setDemos([...demos, newDemo]);};const handleDragOver = (e: DragEvent<HTMLDivElement>) => {e.preventDefault();};return (<div><divid="demo"draggableonDragStart={(e) => handleDragStart(e, +new Date())}style={{width: '100px',height: '100px',backgroundColor: 'red',margin: '30px',cursor: 'pointer',}}>demo2</div><divid="content"onDrop={handleDrop}onDragOver={handleDragOver}style={{width: '300px',height: '300px',margin: '30px',backgroundColor: 'blue',position: 'relative',}}>{demos.map((demo) => (<ResizeControlkey={demo.id}value={demo}emitData={(data) => {setDemos((prevDemos) =>prevDemos.map((a) => {return a.id == data.id ? data : a;}));}}>{/* 当前 div 组件 */}<divstyle={{backgroundColor: 'red',width: '100%',height: '100%',}}>{/* <span style={{ wordBreak: 'break-all', fontSize: '10px' }}>{JSON.stringify(demo)}</span> */}</div></ResizeControl>))}</div></div>);
};export default App;

这篇关于react可视化编辑器 第五章 升级版 拖拽、缩放、转圈、移动的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/828383

相关文章

CSS Padding 和 Margin 区别全解析

《CSSPadding和Margin区别全解析》CSS中的padding和margin是两个非常基础且重要的属性,它们用于控制元素周围的空白区域,本文将详细介绍padding和... 目录css Padding 和 Margin 全解析1. Padding: 内边距2. Margin: 外边距3. Padd

CSS will-change 属性示例详解

《CSSwill-change属性示例详解》will-change是一个CSS属性,用于告诉浏览器某个元素在未来可能会发生哪些变化,本文给大家介绍CSSwill-change属性详解,感... will-change 是一个 css 属性,用于告诉浏览器某个元素在未来可能会发生哪些变化。这可以帮助浏览器优化

CSS去除a标签的下划线的几种方法

《CSS去除a标签的下划线的几种方法》本文给大家分享在CSS中,去除a标签(超链接)的下划线的几种方法,本文给大家介绍的非常详细,感兴趣的朋友一起看看吧... 在 css 中,去除a标签(超链接)的下划线主要有以下几种方法:使用text-decoration属性通用选择器设置:使用a标签选择器,将tex

前端高级CSS用法示例详解

《前端高级CSS用法示例详解》在前端开发中,CSS(层叠样式表)不仅是用来控制网页的外观和布局,更是实现复杂交互和动态效果的关键技术之一,随着前端技术的不断发展,CSS的用法也日益丰富和高级,本文将深... 前端高级css用法在前端开发中,CSS(层叠样式表)不仅是用来控制网页的外观和布局,更是实现复杂交

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali