2018-11-01 18:32:17 +03:00
|
|
|
/*
|
|
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// derived from code from github.com/noeldelgado/gemini-scrollbar
|
|
|
|
// Copyright (c) Noel Delgado <pixelia.me@gmail.com> (pixelia.me)
|
|
|
|
function getScrollbarWidth(alternativeOverflow) {
|
2018-11-01 19:56:08 +03:00
|
|
|
const div = document.createElement('div');
|
2019-01-21 21:01:18 +03:00
|
|
|
div.className = 'mx_AutoHideScrollbar'; //to get width of css scrollbar
|
2018-11-01 19:56:08 +03:00
|
|
|
div.style.position = 'absolute';
|
|
|
|
div.style.top = '-9999px';
|
|
|
|
div.style.width = '100px';
|
|
|
|
div.style.height = '100px';
|
|
|
|
div.style.overflow = "scroll";
|
2018-11-01 18:32:17 +03:00
|
|
|
if (alternativeOverflow) {
|
2018-11-01 19:56:08 +03:00
|
|
|
div.style.overflow = alternativeOverflow;
|
2018-11-01 18:32:17 +03:00
|
|
|
}
|
2018-11-01 19:56:08 +03:00
|
|
|
div.style.msOverflowStyle = '-ms-autohiding-scrollbar';
|
|
|
|
document.body.appendChild(div);
|
|
|
|
const scrollbarWidth = (div.offsetWidth - div.clientWidth);
|
|
|
|
document.body.removeChild(div);
|
|
|
|
return scrollbarWidth;
|
2018-11-01 18:32:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function install() {
|
|
|
|
const scrollbarWidth = getScrollbarWidth();
|
|
|
|
if (scrollbarWidth !== 0) {
|
|
|
|
const hasForcedOverlayScrollbar = getScrollbarWidth('overlay') === 0;
|
|
|
|
// overflow: overlay on webkit doesn't auto hide the scrollbar
|
|
|
|
if (hasForcedOverlayScrollbar) {
|
|
|
|
document.body.classList.add("mx_scrollbar_overlay_noautohide");
|
|
|
|
} else {
|
|
|
|
document.body.classList.add("mx_scrollbar_nooverlay");
|
|
|
|
const style = document.createElement('style');
|
|
|
|
style.type = 'text/css';
|
|
|
|
style.innerText =
|
|
|
|
`body.mx_scrollbar_nooverlay { --scrollbar-width: ${scrollbarWidth}px; }`;
|
|
|
|
document.head.appendChild(style);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const installBodyClassesIfNeeded = (function() {
|
|
|
|
let installed = false;
|
|
|
|
return function() {
|
|
|
|
if (!installed) {
|
|
|
|
install();
|
|
|
|
installed = true;
|
|
|
|
}
|
2018-11-01 19:56:08 +03:00
|
|
|
};
|
2018-11-01 18:32:17 +03:00
|
|
|
})();
|
|
|
|
|
|
|
|
export default class AutoHideScrollbar extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.onOverflow = this.onOverflow.bind(this);
|
|
|
|
this.onUnderflow = this.onUnderflow.bind(this);
|
|
|
|
this._collectContainerRef = this._collectContainerRef.bind(this);
|
2018-12-18 16:29:42 +03:00
|
|
|
this._needsOverflowListener = null;
|
2018-11-01 18:32:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
onOverflow() {
|
|
|
|
this.containerRef.classList.add("mx_AutoHideScrollbar_overflow");
|
|
|
|
this.containerRef.classList.remove("mx_AutoHideScrollbar_underflow");
|
|
|
|
}
|
|
|
|
|
|
|
|
onUnderflow() {
|
|
|
|
this.containerRef.classList.remove("mx_AutoHideScrollbar_overflow");
|
|
|
|
this.containerRef.classList.add("mx_AutoHideScrollbar_underflow");
|
|
|
|
}
|
|
|
|
|
2018-12-18 16:29:42 +03:00
|
|
|
checkOverflow() {
|
|
|
|
if (!this._needsOverflowListener) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (this.containerRef.scrollHeight > this.containerRef.clientHeight) {
|
|
|
|
this.onOverflow();
|
|
|
|
} else {
|
|
|
|
this.onUnderflow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate() {
|
|
|
|
this.checkOverflow();
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2018-12-18 17:10:57 +03:00
|
|
|
installBodyClassesIfNeeded();
|
|
|
|
this._needsOverflowListener =
|
|
|
|
document.body.classList.contains("mx_scrollbar_nooverlay");
|
2018-12-18 16:29:42 +03:00
|
|
|
this.checkOverflow();
|
|
|
|
}
|
|
|
|
|
2018-11-01 18:32:17 +03:00
|
|
|
_collectContainerRef(ref) {
|
|
|
|
if (ref && !this.containerRef) {
|
|
|
|
this.containerRef = ref;
|
|
|
|
}
|
2018-11-12 14:57:21 +03:00
|
|
|
if (this.props.wrappedRef) {
|
|
|
|
this.props.wrappedRef(ref);
|
|
|
|
}
|
2018-11-01 18:32:17 +03:00
|
|
|
}
|
|
|
|
|
2019-02-13 16:49:14 +03:00
|
|
|
getScrollTop() {
|
|
|
|
return this.containerRef.scrollTop;
|
|
|
|
}
|
|
|
|
|
2018-11-01 18:32:17 +03:00
|
|
|
render() {
|
|
|
|
return (<div
|
|
|
|
ref={this._collectContainerRef}
|
2019-03-12 18:30:06 +03:00
|
|
|
style={this.props.style}
|
2018-11-01 18:32:17 +03:00
|
|
|
className={["mx_AutoHideScrollbar", this.props.className].join(" ")}
|
2019-02-13 16:49:14 +03:00
|
|
|
onScroll={this.props.onScroll}
|
2019-04-05 18:43:29 +03:00
|
|
|
onWheel={this.props.onWheel}
|
2018-11-01 18:32:17 +03:00
|
|
|
>
|
2018-11-06 12:20:04 +03:00
|
|
|
<div className="mx_AutoHideScrollbar_offset">
|
|
|
|
{ this.props.children }
|
|
|
|
</div>
|
2018-11-01 18:32:17 +03:00
|
|
|
</div>);
|
|
|
|
}
|
|
|
|
}
|