2019-09-15 21:52:30 +00:00
|
|
|
/*
|
2021-01-01 19:50:41 +00:00
|
|
|
* Copyright (C) 2019-2021 Yomichan Authors
|
2019-09-15 21:52:30 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-09-15 21:52:30 +00:00
|
|
|
*/
|
|
|
|
|
2021-02-14 16:36:44 +00:00
|
|
|
class ScrollElement {
|
2020-11-14 23:12:06 +00:00
|
|
|
constructor(node) {
|
|
|
|
this._node = node;
|
2020-11-14 22:24:30 +00:00
|
|
|
this._animationRequestId = null;
|
|
|
|
this._animationStartTime = 0;
|
|
|
|
this._animationStartX = 0;
|
|
|
|
this._animationStartY = 0;
|
|
|
|
this._animationEndTime = 0;
|
|
|
|
this._animationEndX = 0;
|
|
|
|
this._animationEndY = 0;
|
|
|
|
this._requestAnimationFrameCallback = this._onAnimationFrame.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
get x() {
|
2020-11-14 23:12:06 +00:00
|
|
|
return this._node !== null ? this._node.scrollLeft : window.scrollX || window.pageXOffset;
|
2020-11-14 22:24:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get y() {
|
2020-11-14 23:12:06 +00:00
|
|
|
return this._node !== null ? this._node.scrollTop : window.scrollY || window.pageYOffset;
|
2019-09-15 21:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
toY(y) {
|
|
|
|
this.to(this.x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
toX(x) {
|
|
|
|
this.to(x, this.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
to(x, y) {
|
|
|
|
this.stop();
|
2020-11-14 23:12:06 +00:00
|
|
|
this._scroll(x, y);
|
2019-09-15 21:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
animate(x, y, time) {
|
2020-11-14 22:24:30 +00:00
|
|
|
this._animationStartX = this.x;
|
|
|
|
this._animationStartY = this.y;
|
|
|
|
this._animationStartTime = window.performance.now();
|
|
|
|
this._animationEndX = x;
|
|
|
|
this._animationEndY = y;
|
|
|
|
this._animationEndTime = this._animationStartTime + time;
|
|
|
|
this._animationRequestId = window.requestAnimationFrame(this._requestAnimationFrameCallback);
|
2019-09-15 21:52:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
2020-11-14 22:24:30 +00:00
|
|
|
if (this._animationRequestId === null) {
|
2019-09-15 21:52:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-14 22:24:30 +00:00
|
|
|
window.cancelAnimationFrame(this._animationRequestId);
|
|
|
|
this._animationRequestId = null;
|
2019-09-15 21:52:30 +00:00
|
|
|
}
|
|
|
|
|
2020-11-14 22:24:30 +00:00
|
|
|
// Private
|
|
|
|
|
|
|
|
_onAnimationFrame(time) {
|
|
|
|
if (time >= this._animationEndTime) {
|
2020-11-14 23:12:06 +00:00
|
|
|
this._scroll(this._animationEndX, this._animationEndY);
|
2020-11-14 22:24:30 +00:00
|
|
|
this._animationRequestId = null;
|
2019-09-15 21:52:30 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-14 22:24:30 +00:00
|
|
|
const t = this._easeInOutCubic((time - this._animationStartTime) / (this._animationEndTime - this._animationStartTime));
|
2020-11-14 23:12:06 +00:00
|
|
|
this._scroll(
|
2020-11-14 22:24:30 +00:00
|
|
|
this._lerp(this._animationStartX, this._animationEndX, t),
|
|
|
|
this._lerp(this._animationStartY, this._animationEndY, t)
|
2019-09-15 21:52:30 +00:00
|
|
|
);
|
|
|
|
|
2020-11-14 22:24:30 +00:00
|
|
|
this._animationRequestId = window.requestAnimationFrame(this._requestAnimationFrameCallback);
|
2019-09-15 21:52:30 +00:00
|
|
|
}
|
|
|
|
|
2020-11-14 22:24:30 +00:00
|
|
|
_easeInOutCubic(t) {
|
2019-09-15 21:52:30 +00:00
|
|
|
if (t < 0.5) {
|
|
|
|
return (4.0 * t * t * t);
|
|
|
|
} else {
|
|
|
|
t = 1.0 - t;
|
|
|
|
return 1.0 - (4.0 * t * t * t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-14 22:24:30 +00:00
|
|
|
_lerp(start, end, percent) {
|
2019-09-15 21:52:30 +00:00
|
|
|
return (end - start) * percent + start;
|
|
|
|
}
|
2020-11-14 23:12:06 +00:00
|
|
|
|
|
|
|
_scroll(x, y) {
|
|
|
|
if (this._node !== null) {
|
|
|
|
this._node.scrollLeft = x;
|
|
|
|
this._node.scrollTop = y;
|
|
|
|
} else {
|
|
|
|
window.scroll(x, y);
|
|
|
|
}
|
|
|
|
}
|
2019-09-15 21:52:30 +00:00
|
|
|
}
|