2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
2023-03-27 06:27:52 +00:00
|
|
|
<div class="p-scrollpanel p-component" v-bind="ptm('root')">
|
|
|
|
<div class="p-scrollpanel-wrapper" v-bind="ptm('wrapper')">
|
|
|
|
<div ref="content" class="p-scrollpanel-content" @scroll="onScroll" @mouseenter="moveBar" v-bind="ptm('content')">
|
2022-09-06 12:03:37 +00:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-14 11:26:01 +00:00
|
|
|
<div
|
|
|
|
ref="xBar"
|
|
|
|
class="p-scrollpanel-bar p-scrollpanel-bar-x"
|
|
|
|
tabindex="0"
|
|
|
|
role="scrollbar"
|
|
|
|
aria-orientation="horizontal"
|
|
|
|
:aria-valuenow="lastScrollLeft"
|
|
|
|
@mousedown="onXBarMouseDown"
|
|
|
|
@keydown="onKeyDown($event)"
|
|
|
|
@keyup="onKeyUp"
|
|
|
|
@focus="onFocus"
|
|
|
|
@blur="onBlur"
|
2023-03-27 06:27:52 +00:00
|
|
|
v-bind="ptm('barx')"
|
2022-09-14 11:26:01 +00:00
|
|
|
></div>
|
|
|
|
<div
|
|
|
|
ref="yBar"
|
|
|
|
class="p-scrollpanel-bar p-scrollpanel-bar-y"
|
|
|
|
tabindex="0"
|
|
|
|
role="scrollbar"
|
|
|
|
aria-orientation="vertical"
|
|
|
|
:aria-valuenow="lastScrollTop"
|
|
|
|
@mousedown="onYBarMouseDown"
|
|
|
|
@keydown="onKeyDown($event)"
|
|
|
|
@keyup="onKeyUp"
|
|
|
|
@focus="onFocus"
|
2023-03-27 06:27:52 +00:00
|
|
|
v-bind="ptm('bary')"
|
2022-09-14 11:26:01 +00:00
|
|
|
></div>
|
2022-09-06 12:03:37 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-03-31 21:51:41 +00:00
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
2022-09-14 11:26:01 +00:00
|
|
|
import { DomHandler, UniqueComponentId } from 'primevue/utils';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ScrollPanel',
|
2023-03-31 21:51:41 +00:00
|
|
|
extends: BaseComponent,
|
2022-09-14 11:26:01 +00:00
|
|
|
props: {
|
|
|
|
step: {
|
|
|
|
type: Number,
|
|
|
|
default: 5
|
|
|
|
}
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
initialized: false,
|
|
|
|
documentResizeListener: null,
|
|
|
|
documentMouseMoveListener: null,
|
|
|
|
documentMouseUpListener: null,
|
|
|
|
frame: null,
|
|
|
|
scrollXRatio: null,
|
|
|
|
scrollYRatio: null,
|
|
|
|
isXBarClicked: false,
|
|
|
|
isYBarClicked: false,
|
|
|
|
lastPageX: null,
|
|
|
|
lastPageY: null,
|
2022-09-14 11:26:01 +00:00
|
|
|
timer: null,
|
|
|
|
outsideClickListener: null,
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
id: UniqueComponentId(),
|
|
|
|
orientation: 'vertical',
|
|
|
|
lastScrollTop: 0,
|
|
|
|
lastScrollLeft: 0
|
|
|
|
};
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
mounted() {
|
|
|
|
if (this.$el.offsetParent) {
|
|
|
|
this.initialize();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
if (!this.initialized && this.$el.offsetParent) {
|
|
|
|
this.initialize();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
this.unbindDocumentResizeListener();
|
|
|
|
|
|
|
|
if (this.frame) {
|
|
|
|
window.cancelAnimationFrame(this.frame);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
initialize() {
|
|
|
|
this.moveBar();
|
|
|
|
this.bindDocumentResizeListener();
|
|
|
|
this.calculateContainerHeight();
|
|
|
|
},
|
|
|
|
calculateContainerHeight() {
|
|
|
|
let containerStyles = getComputedStyle(this.$el),
|
2022-09-14 11:26:01 +00:00
|
|
|
xBarStyles = getComputedStyle(this.$refs.xBar),
|
|
|
|
pureContainerHeight = DomHandler.getHeight(this.$el) - parseInt(xBarStyles['height'], 10);
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
if (containerStyles['max-height'] !== 'none' && pureContainerHeight === 0) {
|
|
|
|
if (this.$refs.content.offsetHeight + parseInt(xBarStyles['height'], 10) > parseInt(containerStyles['max-height'], 10)) {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.$el.style.height = containerStyles['max-height'];
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
|
|
|
this.$el.style.height =
|
|
|
|
this.$refs.content.offsetHeight + parseFloat(containerStyles.paddingTop) + parseFloat(containerStyles.paddingBottom) + parseFloat(containerStyles.borderTopWidth) + parseFloat(containerStyles.borderBottomWidth) + 'px';
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
moveBar() {
|
|
|
|
/* horizontal scroll */
|
|
|
|
let totalWidth = this.$refs.content.scrollWidth;
|
|
|
|
let ownWidth = this.$refs.content.clientWidth;
|
|
|
|
let bottom = (this.$el.clientHeight - this.$refs.xBar.clientHeight) * -1;
|
|
|
|
|
|
|
|
this.scrollXRatio = ownWidth / totalWidth;
|
|
|
|
|
|
|
|
/* vertical scroll */
|
|
|
|
let totalHeight = this.$refs.content.scrollHeight;
|
|
|
|
let ownHeight = this.$refs.content.clientHeight;
|
|
|
|
let right = (this.$el.clientWidth - this.$refs.yBar.clientWidth) * -1;
|
|
|
|
|
|
|
|
this.scrollYRatio = ownHeight / totalHeight;
|
|
|
|
|
|
|
|
this.frame = this.requestAnimationFrame(() => {
|
|
|
|
if (this.scrollXRatio >= 1) {
|
|
|
|
DomHandler.addClass(this.$refs.xBar, 'p-scrollpanel-hidden');
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
DomHandler.removeClass(this.$refs.xBar, 'p-scrollpanel-hidden');
|
|
|
|
this.$refs.xBar.style.cssText = 'width:' + Math.max(this.scrollXRatio * 100, 10) + '%; left:' + (this.$refs.content.scrollLeft / totalWidth) * 100 + '%;bottom:' + bottom + 'px;';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.scrollYRatio >= 1) {
|
|
|
|
DomHandler.addClass(this.$refs.yBar, 'p-scrollpanel-hidden');
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
DomHandler.removeClass(this.$refs.yBar, 'p-scrollpanel-hidden');
|
|
|
|
this.$refs.yBar.style.cssText = 'height:' + Math.max(this.scrollYRatio * 100, 10) + '%; top: calc(' + (this.$refs.content.scrollTop / totalHeight) * 100 + '% - ' + this.$refs.xBar.clientHeight + 'px);right:' + right + 'px;';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onYBarMouseDown(e) {
|
|
|
|
this.isYBarClicked = true;
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$refs.yBar.focus();
|
2022-09-06 12:03:37 +00:00
|
|
|
this.lastPageY = e.pageY;
|
|
|
|
DomHandler.addClass(this.$refs.yBar, 'p-scrollpanel-grabbed');
|
|
|
|
DomHandler.addClass(document.body, 'p-scrollpanel-grabbed');
|
|
|
|
|
|
|
|
this.bindDocumentMouseListeners();
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
|
|
|
onXBarMouseDown(e) {
|
|
|
|
this.isXBarClicked = true;
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$refs.xBar.focus();
|
2022-09-06 12:03:37 +00:00
|
|
|
this.lastPageX = e.pageX;
|
|
|
|
DomHandler.addClass(this.$refs.xBar, 'p-scrollpanel-grabbed');
|
|
|
|
DomHandler.addClass(document.body, 'p-scrollpanel-grabbed');
|
|
|
|
|
|
|
|
this.bindDocumentMouseListeners();
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
2022-09-14 11:26:01 +00:00
|
|
|
onScroll(event) {
|
|
|
|
if (this.lastScrollLeft !== event.target.scrollLeft) {
|
|
|
|
this.lastScrollLeft = event.target.scrollLeft;
|
|
|
|
this.orientation = 'horizontal';
|
|
|
|
} else if (this.lastScrollTop !== event.target.scrollTop) {
|
|
|
|
this.lastScrollTop = event.target.scrollTop;
|
|
|
|
this.orientation = 'vertical';
|
|
|
|
}
|
|
|
|
|
|
|
|
this.moveBar();
|
|
|
|
},
|
|
|
|
onKeyDown(event) {
|
|
|
|
if (this.orientation === 'vertical') {
|
|
|
|
switch (event.code) {
|
|
|
|
case 'ArrowDown': {
|
|
|
|
this.setTimer('scrollTop', this.step);
|
|
|
|
event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'ArrowUp': {
|
|
|
|
this.setTimer('scrollTop', this.step * -1);
|
|
|
|
event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'ArrowLeft':
|
|
|
|
|
|
|
|
case 'ArrowRight': {
|
|
|
|
event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
//no op
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (this.orientation === 'horizontal') {
|
|
|
|
switch (event.code) {
|
|
|
|
case 'ArrowRight': {
|
|
|
|
this.setTimer('scrollLeft', this.step);
|
|
|
|
event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'ArrowLeft': {
|
|
|
|
this.setTimer('scrollLeft', this.step * -1);
|
|
|
|
event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'ArrowDown':
|
|
|
|
|
|
|
|
case 'ArrowUp': {
|
|
|
|
event.preventDefault();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
//no op
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onKeyUp() {
|
|
|
|
this.clearTimer();
|
|
|
|
},
|
|
|
|
repeat(bar, step) {
|
|
|
|
this.$refs.content[bar] += step;
|
|
|
|
this.moveBar();
|
|
|
|
},
|
|
|
|
setTimer(bar, step) {
|
|
|
|
this.clearTimer();
|
|
|
|
this.timer = setTimeout(() => {
|
|
|
|
this.repeat(bar, step);
|
|
|
|
}, 40);
|
|
|
|
},
|
|
|
|
clearTimer() {
|
|
|
|
if (this.timer) {
|
|
|
|
clearTimeout(this.timer);
|
|
|
|
}
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
onDocumentMouseMove(e) {
|
|
|
|
if (this.isXBarClicked) {
|
|
|
|
this.onMouseMoveForXBar(e);
|
2022-09-14 11:26:01 +00:00
|
|
|
} else if (this.isYBarClicked) {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.onMouseMoveForYBar(e);
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.onMouseMoveForXBar(e);
|
|
|
|
this.onMouseMoveForYBar(e);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onMouseMoveForXBar(e) {
|
|
|
|
let deltaX = e.pageX - this.lastPageX;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
this.lastPageX = e.pageX;
|
|
|
|
|
|
|
|
this.frame = this.requestAnimationFrame(() => {
|
|
|
|
this.$refs.content.scrollLeft += deltaX / this.scrollXRatio;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onMouseMoveForYBar(e) {
|
|
|
|
let deltaY = e.pageY - this.lastPageY;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
this.lastPageY = e.pageY;
|
|
|
|
|
|
|
|
this.frame = this.requestAnimationFrame(() => {
|
|
|
|
this.$refs.content.scrollTop += deltaY / this.scrollYRatio;
|
|
|
|
});
|
|
|
|
},
|
2022-09-14 11:26:01 +00:00
|
|
|
onFocus(event) {
|
|
|
|
if (this.$refs.xBar.isSameNode(event.target)) {
|
|
|
|
this.orientation = 'horizontal';
|
|
|
|
} else if (this.$refs.yBar.isSameNode(event.target)) {
|
|
|
|
this.orientation = 'vertical';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onBlur() {
|
|
|
|
if (this.orientation === 'horizontal') {
|
|
|
|
this.orientation = 'vertical';
|
|
|
|
}
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
onDocumentMouseUp() {
|
|
|
|
DomHandler.removeClass(this.$refs.yBar, 'p-scrollpanel-grabbed');
|
|
|
|
DomHandler.removeClass(this.$refs.xBar, 'p-scrollpanel-grabbed');
|
|
|
|
DomHandler.removeClass(document.body, 'p-scrollpanel-grabbed');
|
|
|
|
|
|
|
|
this.unbindDocumentMouseListeners();
|
|
|
|
this.isXBarClicked = false;
|
|
|
|
this.isYBarClicked = false;
|
|
|
|
},
|
|
|
|
requestAnimationFrame(f) {
|
|
|
|
let frame = window.requestAnimationFrame || this.timeoutFrame;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
return frame(f);
|
|
|
|
},
|
|
|
|
refresh() {
|
|
|
|
this.moveBar();
|
|
|
|
},
|
|
|
|
scrollTop(scrollTop) {
|
|
|
|
let scrollableHeight = this.$refs.content.scrollHeight - this.$refs.content.clientHeight;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
scrollTop = scrollTop > scrollableHeight ? scrollableHeight : scrollTop > 0 ? scrollTop : 0;
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$refs.content.scrollTop = scrollTop;
|
|
|
|
},
|
|
|
|
timeoutFrame(fn) {
|
|
|
|
setTimeout(fn, 0);
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
bindDocumentMouseListeners() {
|
2022-09-14 11:26:01 +00:00
|
|
|
if (!this.documentMouseMoveListener) {
|
|
|
|
this.documentMouseMoveListener = (e) => {
|
|
|
|
this.onDocumentMouseMove(e);
|
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
document.addEventListener('mousemove', this.documentMouseMoveListener);
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.documentMouseUpListener) {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.documentMouseUpListener = (e) => {
|
|
|
|
this.onDocumentMouseUp(e);
|
|
|
|
};
|
|
|
|
|
|
|
|
document.addEventListener('mouseup', this.documentMouseUpListener);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
unbindDocumentMouseListeners() {
|
|
|
|
if (this.documentMouseMoveListener) {
|
|
|
|
document.removeEventListener('mousemove', this.documentMouseMoveListener);
|
|
|
|
this.documentMouseMoveListener = null;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
if (this.documentMouseUpListener) {
|
|
|
|
document.removeEventListener('mouseup', this.documentMouseUpListener);
|
|
|
|
this.documentMouseUpListener = null;
|
|
|
|
}
|
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
bindDocumentResizeListener() {
|
2022-09-14 11:26:01 +00:00
|
|
|
if (!this.documentResizeListener) {
|
|
|
|
this.documentResizeListener = () => {
|
|
|
|
this.moveBar();
|
|
|
|
};
|
|
|
|
|
|
|
|
window.addEventListener('resize', this.documentResizeListener);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
unbindDocumentResizeListener() {
|
|
|
|
if (this.documentResizeListener) {
|
|
|
|
window.removeEventListener('resize', this.documentResizeListener);
|
|
|
|
this.documentResizeListener = null;
|
|
|
|
}
|
|
|
|
}
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.p-scrollpanel-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-content {
|
|
|
|
height: calc(100% + 18px);
|
|
|
|
width: calc(100% + 18px);
|
|
|
|
padding: 0 18px 18px 0;
|
|
|
|
position: relative;
|
|
|
|
overflow: scroll;
|
|
|
|
box-sizing: border-box;
|
2022-12-08 11:04:25 +00:00
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-content::-webkit-scrollbar {
|
|
|
|
display: none;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-bar {
|
|
|
|
position: relative;
|
|
|
|
background: #c1c1c1;
|
|
|
|
border-radius: 3px;
|
|
|
|
z-index: 2;
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.25s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-bar-y {
|
|
|
|
width: 9px;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-bar-x {
|
|
|
|
height: 9px;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-hidden {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel:hover .p-scrollpanel-bar,
|
|
|
|
.p-scrollpanel:active .p-scrollpanel-bar {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-scrollpanel-grabbed {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
</style>
|