index.vue
3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<script lang="ts" setup name="SplitPane">
import { computed, ref } from 'vue'
const props = defineProps({
direction: {
type: String,
default: 'row'
},
min: {
type: Number,
default: 10
},
max: {
type: Number,
default: 90
},
paneLengthPercent: {
type: Number,
default: 50
},
triggerLength: {
type: Number,
default: 10
}
})
const emits = defineEmits(['setPaneLengthPercent']);
const triggerLeftOffset = ref(0) // 鼠标距滑动器左(顶)侧偏移量
const splitPane = ref();
const lengthType = computed(() => {
return props.direction === 'row' ? 'width' : 'height'
})
const paneLengthValue = computed(() => {
return `calc(${props.paneLengthPercent}% - ${props.triggerLength / 2 + 'px'})`
})
const triggerLengthValue = computed(() => {
return props.triggerLength + 'px'
})
const paneRightValue = computed(() => {
return `calc(${100 - props.paneLengthPercent}% - ${props.triggerLength / 2 + 'px'})`
})
// 按下滑动器
const handleMouseDown = (e) => {
document.addEventListener('mousemove', handleMouseMove)
document.addEventListener('mouseup', handleMouseUp)
if (props.direction === 'row') {
triggerLeftOffset.value = e.pageX - e.srcElement.getBoundingClientRect().left
} else {
triggerLeftOffset.value = e.pageY - e.srcElement.getBoundingClientRect().top
}
}
// 按下滑动器后移动鼠标
const handleMouseMove = (e) => {
const clientRect = splitPane.value.getBoundingClientRect()
let paneLengthPercent = 0
if (props.direction === 'row') {
const offset = e.pageX - clientRect.left - triggerLeftOffset.value + props.triggerLength / 2
paneLengthPercent = (offset / clientRect.width) * 100
} else {
const offset = e.pageY - clientRect.top - triggerLeftOffset.value + props.triggerLength / 2
paneLengthPercent = (offset / clientRect.height) * 100
}
if (paneLengthPercent < props.min) {
paneLengthPercent = props.min
}
if (paneLengthPercent > props.max) {
paneLengthPercent = props.max
}
emits('setPaneLengthPercent', paneLengthPercent)
}
// 松开滑动器
const handleMouseUp = () => {
document.removeEventListener('mousemove', handleMouseMove)
}
</script>
<template>
<div ref="splitPane" class="split-pane" :style="{'flex-direction': props.direction}">
<div class="pane pane-one" :style="lengthType + ':' + paneLengthValue">
<slot name="one"></slot>
</div>
<div class="pane-trigger" :style="lengthType + ':' + triggerLengthValue" @mousedown="handleMouseDown"></div>
<div class="pane pane-two" :style="lengthType +':' + paneRightValue">
<slot name="two"></slot>
</div>
</div>
</template>
<style scoped lang="scss">
.split-pane {
background: #fafafa;
height: 100%;
display: flex;
&.row {
.pane {
height: 100%;
}
.pane-trigger {
height: 100%;
}
}
&.column {
.pane {
width: 100%;
}
.pane-trigger {
width: 100%;
}
}
.pane-one {
background: #fff;
}
.pane-trigger {
user-select: none;
background: #d9d9d9;
cursor: col-resize;
&:hover, &:focus {
background: var(--el-color-primary);
}
}
.pane-two {
flex: 1;
background: #fff;
}
}</style>