mirror of
https://gitee.com/dromara/go-view.git
synced 2024-11-30 02:38:30 +08:00
feat: 新增预览拖拽
This commit is contained in:
parent
e979149cfb
commit
7076c4deb7
@ -9,6 +9,12 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin dark {
|
||||||
|
[data-theme='dark'] {
|
||||||
|
@content;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@mixin goId($block) {
|
@mixin goId($block) {
|
||||||
$B: $namespace + '-' + $block;
|
$B: $namespace + '-' + $block;
|
||||||
##{$B} {
|
##{$B} {
|
||||||
|
@ -7,3 +7,9 @@
|
|||||||
.amap-copyright {
|
.amap-copyright {
|
||||||
opacity: 0 !important;
|
opacity: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[data-theme='dark'] {
|
||||||
|
body {
|
||||||
|
background-color: #18181c;
|
||||||
|
}
|
||||||
|
}
|
@ -23,16 +23,27 @@ export const useScale = (localStorageInfo: ChartEditStorageType) => {
|
|||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
removeEvent()
|
removeEvent()
|
||||||
const fitDom = document.querySelector(".go-preview.fit") as HTMLElement
|
const transform = previewRef.value?.style.transform
|
||||||
if (fitDom) fitDom.style.overflow = 'auto'
|
|
||||||
const transform = previewRef.value.style.transform
|
|
||||||
// 使用正则解析 scale(1, 1) 中的两个数值
|
|
||||||
const regRes = transform.match(/scale\((\d+\.?\d*)*/) as RegExpMatchArray
|
const regRes = transform.match(/scale\((\d+\.?\d*)*/) as RegExpMatchArray
|
||||||
const width = regRes[1]
|
const width = regRes[1]
|
||||||
|
const previewBoxDom = document.querySelector('.go-preview') as HTMLElement
|
||||||
|
const entityDom = document.querySelector('.go-preview-entity') as HTMLElement
|
||||||
|
if (previewBoxDom) {
|
||||||
|
previewBoxDom.style.overflow = 'unset'
|
||||||
|
previewBoxDom.style.position = 'absolute'
|
||||||
|
previewBoxDom.style.top = '10px'
|
||||||
|
previewBoxDom.style.left = '20px'
|
||||||
|
}
|
||||||
|
if (entityDom) {
|
||||||
|
entityDom.style.overflow = 'unset'
|
||||||
|
}
|
||||||
|
|
||||||
if (e.wheelDelta > 0) {
|
if (e.wheelDelta > 0) {
|
||||||
previewRef.value.style.transform = `scale(${parseFloat(Number(width).toFixed(2)) + 0.1})`
|
const resNum = parseFloat(Number(width).toFixed(2))
|
||||||
|
previewRef.value.style.transform = `scale(${resNum > 5 ? 5 : resNum + 0.1})`
|
||||||
} else {
|
} else {
|
||||||
previewRef.value.style.transform = `scale(${parseFloat(Number(width).toFixed(2)) - 0.1})`
|
const resNum = parseFloat(Number(width).toFixed(2))
|
||||||
|
previewRef.value.style.transform = `scale(${resNum < 0.2 ? 0.2 : resNum - 0.1})`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :class="`go-preview ${chartEditStore.editCanvasConfig.previewScaleType}`">
|
<div :class="`go-preview ${chartEditStore.editCanvasConfig.previewScaleType}`" @mousedown="dragCanvas">
|
||||||
<template v-if="showEntity">
|
<template v-if="showEntity">
|
||||||
<!-- 实体区域 -->
|
<!-- 实体区域 -->
|
||||||
<div ref="entityRef" class="go-preview-entity">
|
<div ref="entityRef" class="go-preview-entity">
|
||||||
@ -30,7 +30,7 @@
|
|||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
import { PreviewRenderList } from './components/PreviewRenderList'
|
import { PreviewRenderList } from './components/PreviewRenderList'
|
||||||
import { getFilterStyle, setTitle } from '@/utils'
|
import { getFilterStyle, setTitle } from '@/utils'
|
||||||
import { getEditCanvasConfigStyle, getSessionStorageInfo, keyRecordHandle } from './utils'
|
import { getEditCanvasConfigStyle, getSessionStorageInfo, keyRecordHandle, dragCanvas } from './utils'
|
||||||
import { useComInstall } from './hooks/useComInstall.hook'
|
import { useComInstall } from './hooks/useComInstall.hook'
|
||||||
import { useScale } from './hooks/useScale.hook'
|
import { useScale } from './hooks/useScale.hook'
|
||||||
import { useStore } from './hooks/useStore.hook'
|
import { useStore } from './hooks/useStore.hook'
|
||||||
|
55
src/views/preview/utils/drag.ts
Normal file
55
src/views/preview/utils/drag.ts
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import { listen } from 'dom-helpers'
|
||||||
|
import throttle from 'lodash/throttle'
|
||||||
|
|
||||||
|
let prevMoveXValue = [0, 0]
|
||||||
|
let prevMoveYValue = [0, 0]
|
||||||
|
|
||||||
|
// 拖拽处理
|
||||||
|
export const dragCanvas = (e: MouseEvent) => {
|
||||||
|
const previewBoxDom = document.querySelector('.go-preview') as HTMLElement
|
||||||
|
if (!previewBoxDom || previewBoxDom.style.position !== 'absolute') return
|
||||||
|
if (!window.$KeyboardActive?.space) return
|
||||||
|
|
||||||
|
e.preventDefault()
|
||||||
|
e.stopPropagation()
|
||||||
|
// @ts-ignore
|
||||||
|
document.activeElement?.blur()
|
||||||
|
const startX = e.screenX
|
||||||
|
const startY = e.screenY
|
||||||
|
|
||||||
|
const listenMousemove = listen(
|
||||||
|
window,
|
||||||
|
'mousemove',
|
||||||
|
throttle((moveEvent: MouseEvent) => {
|
||||||
|
const nx = moveEvent.screenX - startX
|
||||||
|
const ny = moveEvent.screenY - startY
|
||||||
|
|
||||||
|
const [prevMoveX1, prevMoveX2] = prevMoveXValue
|
||||||
|
const [prevMoveY1, prevMoveY2] = prevMoveYValue
|
||||||
|
|
||||||
|
prevMoveXValue = [prevMoveX2, nx]
|
||||||
|
prevMoveYValue = [prevMoveY2, ny]
|
||||||
|
|
||||||
|
// 去除小数部分
|
||||||
|
if (previewBoxDom) {
|
||||||
|
const oldLeft = previewBoxDom.style.left ? Number(previewBoxDom.style.left.split('px')[0]) : 0
|
||||||
|
const oldTop = previewBoxDom.style.top ? Number(previewBoxDom.style.top.split('px')[0]) : 0
|
||||||
|
previewBoxDom.style.left =
|
||||||
|
oldLeft +
|
||||||
|
(prevMoveX2 > prevMoveX1 ? Math.abs(prevMoveX2 - prevMoveX1) : -Math.abs(prevMoveX2 - prevMoveX1)) +
|
||||||
|
'px'
|
||||||
|
previewBoxDom.style.top =
|
||||||
|
oldTop +
|
||||||
|
(prevMoveY2 > prevMoveY1 ? Math.abs(prevMoveY2 - prevMoveY1) : -Math.abs(prevMoveY2 - prevMoveY1)) +
|
||||||
|
'px'
|
||||||
|
}
|
||||||
|
}, 20)
|
||||||
|
)
|
||||||
|
|
||||||
|
const listenMouseup = listen(window, 'mouseup', () => {
|
||||||
|
prevMoveXValue = [0, 0]
|
||||||
|
prevMoveYValue = [0, 0]
|
||||||
|
listenMousemove()
|
||||||
|
listenMouseup()
|
||||||
|
})
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
export * from './style'
|
export * from './style'
|
||||||
export * from './storage'
|
export * from './storage'
|
||||||
export * from './keyboard'
|
export * from './keyboard'
|
||||||
|
export * from './drag'
|
@ -12,8 +12,16 @@ export const keyRecordHandle = () => {
|
|||||||
|
|
||||||
if ([17, 32].includes(keyCode) && window.$KeyboardActive) {
|
if ([17, 32].includes(keyCode) && window.$KeyboardActive) {
|
||||||
switch (keyCode) {
|
switch (keyCode) {
|
||||||
case 17: window.$KeyboardActive.ctrl = true; break
|
case 17:
|
||||||
case 32: window.$KeyboardActive.space = true; break
|
window.$KeyboardActive.ctrl = true
|
||||||
|
break
|
||||||
|
case 32:
|
||||||
|
window.$KeyboardActive.space = true
|
||||||
|
const previewBoxDom = document.querySelector('.go-preview') as HTMLElement
|
||||||
|
if (previewBoxDom && previewBoxDom.style.position === 'absolute') {
|
||||||
|
previewBoxDom.style.cursor = 'move'
|
||||||
|
}
|
||||||
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -24,9 +32,18 @@ export const keyRecordHandle = () => {
|
|||||||
|
|
||||||
if ([17, 32].includes(keyCode) && window.$KeyboardActive) {
|
if ([17, 32].includes(keyCode) && window.$KeyboardActive) {
|
||||||
switch (keyCode) {
|
switch (keyCode) {
|
||||||
case 17: window.$KeyboardActive.ctrl = false; break
|
case 17:
|
||||||
case 32: window.$KeyboardActive.space = false; break
|
window.$KeyboardActive.ctrl = false
|
||||||
}
|
break
|
||||||
|
case 32:
|
||||||
|
window.$KeyboardActive.space = false
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const previewBoxDom = document.querySelector('.go-preview') as HTMLElement
|
||||||
|
if (previewBoxDom) {
|
||||||
|
previewBoxDom.style.cursor = 'default'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user