mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 18:22:44 +08:00
80 lines
2.6 KiB
JavaScript
80 lines
2.6 KiB
JavaScript
import { scrollTopFor } from 'discourse/lib/offset-calculator';
|
|
|
|
// Dear traveller, you are entering a zone where we are at war with the browser
|
|
// the browser is insisting on positioning scrollTop per the location it was in
|
|
// the past, we are insisting on it being where we want it to be
|
|
// The hack is just to keep trying over and over to position the scrollbar (up to 1 minute)
|
|
//
|
|
// The root cause is that a "refresh" on a topic page will almost never be at the
|
|
// same position it was in the past, the URL points to the post at the top of the
|
|
// page, so a refresh will try to bring that post into view causing drift
|
|
//
|
|
// Additionally if you loaded multiple batches of posts, on refresh they will not
|
|
// be loaded.
|
|
//
|
|
// This hack leads to a slight jerky experience, however other workarounds are more
|
|
// complex, the 2 options we have are
|
|
//
|
|
// 1. onbeforeunload ensure we are scrolled to the right spot
|
|
// 2. give up on the scrollbar and implement it ourselves (something that will happen)
|
|
|
|
const SCROLL_EVENTS = "scroll.lock-on touchmove.lock-on mousedown.lock-on wheel.lock-on DOMMouseScroll.lock-on mousewheel.lock-on keyup.lock-on";
|
|
|
|
function within(threshold, x, y) {
|
|
return Math.abs(x-y) < threshold;
|
|
}
|
|
|
|
export default class LockOn {
|
|
constructor(selector, options) {
|
|
this.selector = selector;
|
|
this.options = options || {};
|
|
this.offsetTop = null;
|
|
}
|
|
|
|
elementTop() {
|
|
const selected = $(this.selector);
|
|
if (selected && selected.offset && selected.offset()) {
|
|
const result = selected.offset().top;
|
|
return result - Math.round(scrollTopFor(result));
|
|
}
|
|
}
|
|
|
|
clearLock(interval) {
|
|
$('body,html').off(SCROLL_EVENTS);
|
|
clearInterval(interval);
|
|
}
|
|
|
|
lock() {
|
|
let previousTop = this.elementTop();
|
|
const startedAt = new Date().getTime();
|
|
|
|
$(window).scrollTop(previousTop);
|
|
|
|
const interval = setInterval(() => {
|
|
let top = this.elementTop();
|
|
const scrollTop = $(window).scrollTop();
|
|
|
|
if (typeof(top) === "undefined" || isNaN(top)) {
|
|
return this.clearLock(interval);
|
|
}
|
|
|
|
if (!within(4, top, previousTop) || !within(4, scrollTop, top)) {
|
|
$(window).scrollTop(top);
|
|
previousTop = top;
|
|
}
|
|
|
|
// We commit suicide after 3s just to clean up
|
|
const nowTime = new Date().getTime();
|
|
if (nowTime - startedAt > 1000) {
|
|
return this.clearLock(interval);
|
|
}
|
|
}, 50);
|
|
|
|
$('body,html').off(SCROLL_EVENTS).on(SCROLL_EVENTS, e => {
|
|
if ( e.which > 0 || e.type === "mousedown" || e.type === "mousewheel" || e.type === "touchmove") {
|
|
this.clearLock(interval);
|
|
}
|
|
});
|
|
}
|
|
}
|