This commit is contained in:
tamaina 2023-07-17 07:38:42 +00:00
parent b330ede502
commit 7fe882d0e2

View file

@ -49,8 +49,7 @@ import { MisskeyEntity } from '@/types/date-separated-list';
import { i18n } from '@/i18n'; import { i18n } from '@/i18n';
const SECOND_FETCH_LIMIT = 30; const SECOND_FETCH_LIMIT = 30;
const BACK_TO_TOP_TOLERANCE = 256; const TOLERANCE = 256;
const TOP_STATIC_TOLERANCE = 64;
const APPEAR_MINIMUM_INTERVAL = 600; const APPEAR_MINIMUM_INTERVAL = 600;
const BACKGROUND_PAUSE_WAIT_SEC = 10; const BACKGROUND_PAUSE_WAIT_SEC = 10;
@ -110,7 +109,9 @@ let rootEl = $shallowRef<HTMLElement>();
* スクロールが先頭にある場合はfalse * スクロールが先頭にある場合はfalse
* スクロールが先頭にない場合にtrue * スクロールが先頭にない場合にtrue
*/ */
// prepend使
let backed = $ref(false); let backed = $ref(false);
// truefalseexecuteQueue
let weakBacked = $ref(false); let weakBacked = $ref(false);
let scrollRemove = $ref<(() => void) | null>(null); let scrollRemove = $ref<(() => void) | null>(null);
@ -184,7 +185,8 @@ watch([() => props.pagination.reversed, $$(scrollableElement)], () => {
}, { }, {
root: scrollableElement, root: scrollableElement,
rootMargin: props.pagination.reversed ? '-100% 0px 100% 0px' : '100% 0px -100% 0px', rootMargin: props.pagination.reversed ? '-100% 0px 100% 0px' : '100% 0px -100% 0px',
threshold: [0.01, 0.05, 0.1], // 10%0.01 // 12%weakBackedtrue
threshold: [0, 0.02, 0.04, 0.06, 0.08, 0.10, 0.12],
}); });
console.log('new scrollObserver', scrollObserver); console.log('new scrollObserver', scrollObserver);
}, { immediate: true }); }, { immediate: true });
@ -196,15 +198,17 @@ watch([$$(rootEl), $$(scrollObserver)], () => {
}); });
/** /**
* onScrollTop/onScrollBottomで細かく検出する * weakBackedがtruefalseになったらexecuteQueue
*/ */
watch($$(backed), () => { watch($$(weakBacked), () => {
console.log('backed changed', backed); if (!weakBacked) {
if (!backed) {
executeQueue(); executeQueue();
} }
}); });
/**
* onScrollTop/onScrollBottomでbackedを厳密に検出する
*/
watch([$$(weakBacked), $$(contentEl)], () => { watch([$$(weakBacked), $$(contentEl)], () => {
if (scrollRemove) scrollRemove(); if (scrollRemove) scrollRemove();
scrollRemove = null; scrollRemove = null;
@ -218,7 +222,7 @@ watch([$$(weakBacked), $$(contentEl)], () => {
console.log('weakBacked watcher add scrollRemove', weakBacked, contentEl); console.log('weakBacked watcher add scrollRemove', weakBacked, contentEl);
scrollRemove = (() => { scrollRemove = (() => {
const checkBacked = () => { const checkBacked = () => {
backed = !checkTop(BACK_TO_TOP_TOLERANCE); backed = !checkTop(TOLERANCE);
console.log('checkBacked', backed); console.log('checkBacked', backed);
}; };
@ -512,7 +516,7 @@ const prepend = (item: MisskeyEntity): void => {
!isPausingUpdate.value && // /調 !isPausingUpdate.value && // /調
queueSize.value === 0 && // queueSize.value === 0 && //
active.value && // keepAlive active.value && // keepAlive
checkTop(TOP_STATIC_TOLERANCE) // !backed //
) { ) {
if (items.value.has(item.id)) return; // if (items.value.has(item.id)) return; //
unshiftItems([item]); unshiftItems([item]);
@ -559,7 +563,7 @@ async function executeQueue() {
}); });
// backed // backed
weakBacked = !checkTop(BACK_TO_TOP_TOLERANCE); weakBacked = !checkTop(TOLERANCE);
// adjustScroll // adjustScroll
denyMoveTransition.value = true; denyMoveTransition.value = true;