Skip to content
Snippets Groups Projects
Commit 6870262f authored by syuilo's avatar syuilo
Browse files

enhance(client): Better element visible detection

parent c54d5e70
No related branches found
No related tags found
No related merge requests found
import Vue from 'vue';
import { getScrollPosition, onScrollTop } from './scroll';
import { onScrollTop, isTopVisible } from './scroll';
const SECOND_FETCH_LIMIT = 30;
......@@ -148,7 +147,7 @@ export default (opts) => ({
},
prepend(item) {
const isTop = this.isBackTop || (document.body.contains(this.$el) && (getScrollPosition(this.$el) === 0));
const isTop = this.isBackTop || (document.body.contains(this.$el) && isTopVisible(this.$el));
if (isTop) {
// Prepend the item
......
......@@ -13,12 +13,18 @@ export function getScrollPosition(el: Element | null): number {
return container == null ? window.scrollY : container.scrollTop;
}
export function isTopVisible(el: Element | null): boolean {
const scrollTop = getScrollPosition(el);
const topPosition = el.offsetTop; // TODO: container内でのelの相対位置を取得できればより正確になる
return scrollTop <= topPosition;
}
export function onScrollTop(el: Element, cb) {
const container = getScrollContainer(el) || window;
const onScroll = ev => {
if (!document.body.contains(el)) return;
const pos = getScrollPosition(el);
if (pos === 0) {
if (isTopVisible(el)) {
cb();
container.removeEventListener('scroll', onScroll);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment