mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-21 19:53:50 +01:00
[client] Reset lastFetchScrollTop on MkPagination reload
This commit is contained in:
parent
55f5966343
commit
706ff84d8d
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<MkPagination ref="pagingComponent" :pagination="pagination">
|
||||
<MkPagination ref="pagingComponent" :pagination="pagination" @reload="onReload">
|
||||
<template #empty>
|
||||
<div class="_fullinfo">
|
||||
<img
|
||||
@ -61,6 +61,10 @@ function scrollTop() {
|
||||
scroll(tlEl.value, { top: 0, behavior: "smooth" });
|
||||
}
|
||||
|
||||
function onReload() {
|
||||
lastFetchScrollTop.value = document.documentElement.clientHeight * -0.5;
|
||||
}
|
||||
|
||||
function setTimer() {
|
||||
if (interval.value || !defaultStore.state.enableInfiniteScroll) return;
|
||||
interval.value = setInterval(() => {
|
||||
|
@ -127,6 +127,7 @@ const props = withDefaults(
|
||||
);
|
||||
|
||||
const emit = defineEmits<{
|
||||
(ev: "reload"): void;
|
||||
(ev: "queue", count: number): void;
|
||||
}>();
|
||||
|
||||
@ -206,9 +207,10 @@ const reload = (): void => {
|
||||
init();
|
||||
};
|
||||
|
||||
const reloadAsync = (): Promise<void> => {
|
||||
const reloadAsync = async (): Promise<void> => {
|
||||
items.value = [];
|
||||
return init();
|
||||
await init();
|
||||
emit("reload");
|
||||
};
|
||||
|
||||
const refresh = async (): Promise<void> => {
|
||||
|
Loading…
Reference in New Issue
Block a user