2020-01-29 19:37:25 +00:00
|
|
|
|
<template>
|
2023-01-14 06:01:28 +00:00
|
|
|
|
<Transition
|
2023-05-19 04:58:09 +00:00
|
|
|
|
:enterActiveClass="defaultStore.state.animation ? $style.transition_fade_enterActive : ''"
|
|
|
|
|
:leaveActiveClass="defaultStore.state.animation ? $style.transition_fade_leaveActive : ''"
|
|
|
|
|
:enterFromClass="defaultStore.state.animation ? $style.transition_fade_enterFrom : ''"
|
|
|
|
|
:leaveToClass="defaultStore.state.animation ? $style.transition_fade_leaveTo : ''"
|
2023-01-14 06:01:28 +00:00
|
|
|
|
mode="out-in"
|
|
|
|
|
>
|
2021-04-22 13:29:33 +00:00
|
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
|
|
|
|
|
|
<MkError v-else-if="error" @retry="init()"/>
|
|
|
|
|
|
2021-11-19 10:36:12 +00:00
|
|
|
|
<div v-else-if="empty" key="_empty_" class="empty">
|
2021-12-23 07:10:13 +00:00
|
|
|
|
<slot name="empty">
|
|
|
|
|
<div class="_fullinfo">
|
2023-06-09 05:00:53 +00:00
|
|
|
|
<img :src="infoImageUrl" class="_ghost"/>
|
2022-07-20 13:24:26 +00:00
|
|
|
|
<div>{{ i18n.ts.nothing }}</div>
|
2021-12-23 07:10:13 +00:00
|
|
|
|
</div>
|
|
|
|
|
</slot>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
</div>
|
2021-04-22 13:29:33 +00:00
|
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
|
<div v-else ref="rootEl">
|
2023-01-14 06:01:28 +00:00
|
|
|
|
<div v-show="pagination.reversed && more" key="_more_" class="_margin">
|
2023-07-04 15:59:37 +00:00
|
|
|
|
<MkButton v-if="!moreFetching" v-appear="(enableInfiniteScroll && !props.disableAutoLoad) ? appearFetchMoreAhead : null" :class="$style.more" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary rounded @click="fetchMoreAhead">
|
2022-07-20 13:24:26 +00:00
|
|
|
|
{{ i18n.ts.loadMore }}
|
2022-05-19 11:32:55 +00:00
|
|
|
|
</MkButton>
|
|
|
|
|
<MkLoading v-else class="loading"/>
|
|
|
|
|
</div>
|
2023-07-04 15:59:37 +00:00
|
|
|
|
<slot :items="Array.from(items.values())" :fetching="fetching || moreFetching"></slot>
|
2023-01-14 06:01:28 +00:00
|
|
|
|
<div v-show="!pagination.reversed && more" key="_more_" class="_margin">
|
2023-07-04 15:59:37 +00:00
|
|
|
|
<MkButton v-if="!moreFetching" v-appear="(enableInfiniteScroll && !props.disableAutoLoad) ? appearFetchMore : null" :class="$style.more" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary rounded @click="fetchMore">
|
2022-07-20 13:24:26 +00:00
|
|
|
|
{{ i18n.ts.loadMore }}
|
2021-04-22 13:29:33 +00:00
|
|
|
|
</MkButton>
|
2022-01-09 12:35:35 +00:00
|
|
|
|
<MkLoading v-else class="loading"/>
|
2021-04-22 13:29:33 +00:00
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
</div>
|
2022-12-30 04:37:14 +00:00
|
|
|
|
</Transition>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
<script lang="ts">
|
|
|
|
|
import { computed, ComputedRef, isRef, nextTick, onActivated, onBeforeUnmount, onDeactivated, onMounted, ref, watch } from 'vue';
|
2022-01-09 12:35:35 +00:00
|
|
|
|
import * as misskey from 'misskey-js';
|
|
|
|
|
import * as os from '@/os';
|
2023-01-13 09:25:40 +00:00
|
|
|
|
import { onScrollTop, isTopVisible, getBodyScrollHeight, getScrollContainer, onScrollBottom, scrollToBottom, scroll, isBottomVisible } from '@/scripts/scroll';
|
2023-02-24 23:18:12 +00:00
|
|
|
|
import { useDocumentVisibility } from '@/scripts/use-document-visibility';
|
2022-09-06 09:21:49 +00:00
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-13 09:25:40 +00:00
|
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
|
import { MisskeyEntity } from '@/types/date-separated-list';
|
2022-07-20 13:24:26 +00:00
|
|
|
|
import { i18n } from '@/i18n';
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
|
|
|
|
const SECOND_FETCH_LIMIT = 30;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const TOLERANCE = 16;
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const APPEAR_MINIMUM_INTERVAL = 600;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
|
|
|
|
export type Paging<E extends keyof misskey.Endpoints = keyof misskey.Endpoints> = {
|
|
|
|
|
endpoint: E;
|
|
|
|
|
limit: number;
|
|
|
|
|
params?: misskey.Endpoints[E]['req'] | ComputedRef<misskey.Endpoints[E]['req']>;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 検索APIのような、ページング不可なエンドポイントを利用する場合
|
|
|
|
|
* (そのようなAPIをこの関数で使うのは若干矛盾してるけど)
|
|
|
|
|
*/
|
|
|
|
|
noPaging?: boolean;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* items 配列の中身を逆順にする(新しい方が最後)
|
|
|
|
|
*/
|
|
|
|
|
reversed?: boolean;
|
2022-01-09 16:00:50 +00:00
|
|
|
|
|
|
|
|
|
offsetMode?: boolean;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
pageEl?: HTMLElement;
|
|
|
|
|
};
|
2023-07-04 15:59:37 +00:00
|
|
|
|
|
|
|
|
|
type MisskeyEntityMap = Map<string, MisskeyEntity>;
|
|
|
|
|
|
|
|
|
|
function arrayToEntries(entities: MisskeyEntity[]): [string, MisskeyEntity][] {
|
|
|
|
|
return entities.map(en => [en.id, en]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function concatMapWithArray(map: MisskeyEntityMap, entities: MisskeyEntity[]): MisskeyEntityMap {
|
|
|
|
|
return new Map([...map, ...arrayToEntries(entities)]);
|
|
|
|
|
}
|
2023-01-13 09:25:40 +00:00
|
|
|
|
</script>
|
|
|
|
|
<script lang="ts" setup>
|
2023-06-09 05:00:53 +00:00
|
|
|
|
import { infoImageUrl } from '@/instance';
|
|
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
|
pagination: Paging;
|
|
|
|
|
disableAutoLoad?: boolean;
|
|
|
|
|
displayLimit?: number;
|
|
|
|
|
}>(), {
|
2023-01-03 00:41:32 +00:00
|
|
|
|
displayLimit: 20,
|
2022-01-09 12:35:35 +00:00
|
|
|
|
});
|
|
|
|
|
|
2022-01-09 13:57:27 +00:00
|
|
|
|
const emit = defineEmits<{
|
2022-05-26 13:53:09 +00:00
|
|
|
|
(ev: 'queue', count: number): void;
|
2022-01-09 13:57:27 +00:00
|
|
|
|
}>();
|
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
let rootEl = $shallowRef<HTMLElement>();
|
|
|
|
|
|
|
|
|
|
// 遡り中かどうか
|
|
|
|
|
let backed = $ref(false);
|
2022-01-09 16:00:50 +00:00
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
let scrollRemove = $ref<(() => void) | null>(null);
|
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* 表示するアイテムのソース
|
|
|
|
|
* 最新が0番目
|
|
|
|
|
*/
|
|
|
|
|
const items = ref<MisskeyEntityMap>(new Map());
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* タブが非アクティブなどの場合に更新を貯めておく
|
|
|
|
|
* 最新が0番目
|
|
|
|
|
*/
|
|
|
|
|
const queue = ref<MisskeyEntityMap>(new Map());
|
|
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
|
const offset = ref(0);
|
2023-07-04 15:59:37 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 初期化中かどうか(trueならMkLoadingで全て隠す)
|
|
|
|
|
*/
|
2022-01-09 12:35:35 +00:00
|
|
|
|
const fetching = ref(true);
|
2023-07-04 15:59:37 +00:00
|
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
|
const moreFetching = ref(false);
|
|
|
|
|
const more = ref(false);
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const preventAppearFetchMore = ref(false);
|
|
|
|
|
const preventAppearFetchMoreTimer = ref<number | null>(null);
|
2022-01-09 12:35:35 +00:00
|
|
|
|
const isBackTop = ref(false);
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const empty = computed(() => items.value.size === 0);
|
2022-01-21 07:43:56 +00:00
|
|
|
|
const error = ref(false);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const {
|
2023-01-14 06:01:28 +00:00
|
|
|
|
enableInfiniteScroll,
|
2023-01-13 09:25:40 +00:00
|
|
|
|
} = defaultStore.reactiveState;
|
|
|
|
|
|
2023-02-22 06:28:17 +00:00
|
|
|
|
const contentEl = $computed(() => props.pagination.pageEl ?? rootEl);
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const scrollableElement = $computed(() => contentEl ? getScrollContainer(contentEl) : document.body);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
|
2023-02-24 23:18:12 +00:00
|
|
|
|
const visibility = useDocumentVisibility();
|
|
|
|
|
|
|
|
|
|
let isPausingUpdate = false;
|
|
|
|
|
let timerForSetPause: number | null = null;
|
|
|
|
|
const BACKGROUND_PAUSE_WAIT_SEC = 10;
|
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
// 先頭が表示されているかどうかを検出
|
|
|
|
|
// https://qiita.com/mkataigi/items/0154aefd2223ce23398e
|
|
|
|
|
let scrollObserver = $ref<IntersectionObserver>();
|
|
|
|
|
|
|
|
|
|
watch([() => props.pagination.reversed, $$(scrollableElement)], () => {
|
|
|
|
|
if (scrollObserver) scrollObserver.disconnect();
|
|
|
|
|
|
|
|
|
|
scrollObserver = new IntersectionObserver(entries => {
|
|
|
|
|
backed = entries[0].isIntersecting;
|
|
|
|
|
}, {
|
|
|
|
|
root: scrollableElement,
|
|
|
|
|
rootMargin: props.pagination.reversed ? '-100% 0px 100% 0px' : '100% 0px -100% 0px',
|
|
|
|
|
threshold: 0.01,
|
|
|
|
|
});
|
|
|
|
|
}, { immediate: true });
|
|
|
|
|
|
|
|
|
|
watch($$(rootEl), () => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
scrollObserver?.disconnect();
|
2023-01-13 09:25:40 +00:00
|
|
|
|
nextTick(() => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
if (rootEl) scrollObserver?.observe(rootEl);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
watch([$$(backed), $$(contentEl)], () => {
|
|
|
|
|
if (!backed) {
|
|
|
|
|
if (!contentEl) return;
|
|
|
|
|
|
|
|
|
|
scrollRemove = (props.pagination.reversed ? onScrollBottom : onScrollTop)(contentEl, executeQueue, TOLERANCE);
|
|
|
|
|
} else {
|
|
|
|
|
if (scrollRemove) scrollRemove();
|
|
|
|
|
scrollRemove = null;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (props.pagination.params && isRef(props.pagination.params)) {
|
|
|
|
|
watch(props.pagination.params, init, { deep: true });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
watch(queue, (a, b) => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
if (a.size === 0 && b.size === 0) return;
|
|
|
|
|
emit('queue', queue.value.size);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
}, { deep: true });
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
async function init(): Promise<void> {
|
2023-07-06 06:43:05 +00:00
|
|
|
|
items.value = new Map();
|
2023-07-04 15:59:37 +00:00
|
|
|
|
queue.value = new Map();
|
2022-01-09 12:35:35 +00:00
|
|
|
|
fetching.value = true;
|
|
|
|
|
const params = props.pagination.params ? isRef(props.pagination.params) ? props.pagination.params.value : props.pagination.params : {};
|
|
|
|
|
await os.api(props.pagination.endpoint, {
|
|
|
|
|
...params,
|
2023-04-03 02:50:17 +00:00
|
|
|
|
limit: props.pagination.limit ?? 10,
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}).then(res => {
|
|
|
|
|
for (let i = 0; i < res.length; i++) {
|
|
|
|
|
const item = res[i];
|
2023-01-13 09:25:40 +00:00
|
|
|
|
if (i === 3) item._shouldInsertAd_ = true;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}
|
2023-04-03 02:50:17 +00:00
|
|
|
|
|
|
|
|
|
if (res.length === 0 || props.pagination.noPaging) {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
concatItems(res);
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = false;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
} else {
|
2023-04-03 02:50:17 +00:00
|
|
|
|
if (props.pagination.reversed) moreFetching.value = true;
|
2023-07-04 15:59:37 +00:00
|
|
|
|
concatItems(res);
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = true;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}
|
2023-04-03 02:50:17 +00:00
|
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
|
offset.value = res.length;
|
2022-01-21 07:43:56 +00:00
|
|
|
|
error.value = false;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
fetching.value = false;
|
2022-05-26 13:53:09 +00:00
|
|
|
|
}, err => {
|
2022-01-21 07:43:56 +00:00
|
|
|
|
error.value = true;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
fetching.value = false;
|
|
|
|
|
});
|
2023-01-13 09:25:40 +00:00
|
|
|
|
}
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const reload = (): Promise<void> => {
|
|
|
|
|
return init();
|
2022-01-09 12:35:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-01-09 16:00:50 +00:00
|
|
|
|
const fetchMore = async (): Promise<void> => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
if (!more.value || fetching.value || moreFetching.value || items.value.size === 0) return;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
moreFetching.value = true;
|
|
|
|
|
const params = props.pagination.params ? isRef(props.pagination.params) ? props.pagination.params.value : props.pagination.params : {};
|
|
|
|
|
await os.api(props.pagination.endpoint, {
|
|
|
|
|
...params,
|
2023-04-03 02:50:17 +00:00
|
|
|
|
limit: SECOND_FETCH_LIMIT,
|
2022-01-09 12:35:35 +00:00
|
|
|
|
...(props.pagination.offsetMode ? {
|
|
|
|
|
offset: offset.value,
|
|
|
|
|
} : {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
untilId: Array.from(items.value.keys())[items.value.size - 1],
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}),
|
|
|
|
|
}).then(res => {
|
|
|
|
|
for (let i = 0; i < res.length; i++) {
|
|
|
|
|
const item = res[i];
|
2023-01-13 09:25:40 +00:00
|
|
|
|
if (i === 10) item._shouldInsertAd_ = true;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}
|
2023-01-13 09:25:40 +00:00
|
|
|
|
|
|
|
|
|
const reverseConcat = _res => {
|
|
|
|
|
const oldHeight = scrollableElement ? scrollableElement.scrollHeight : getBodyScrollHeight();
|
|
|
|
|
const oldScroll = scrollableElement ? scrollableElement.scrollTop : window.scrollY;
|
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
items.value = concatMapWithArray(items.value, _res);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
|
|
|
|
|
return nextTick(() => {
|
|
|
|
|
if (scrollableElement) {
|
|
|
|
|
scroll(scrollableElement, { top: oldScroll + (scrollableElement.scrollHeight - oldHeight), behavior: 'instant' });
|
|
|
|
|
} else {
|
|
|
|
|
window.scroll({ top: oldScroll + (getBodyScrollHeight() - oldHeight), behavior: 'instant' });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nextTick();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-04-03 02:50:17 +00:00
|
|
|
|
if (res.length === 0) {
|
2023-01-13 09:25:40 +00:00
|
|
|
|
if (props.pagination.reversed) {
|
|
|
|
|
reverseConcat(res).then(() => {
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = false;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
items.value = concatMapWithArray(items.value, res);
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = false;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
}
|
2022-01-09 12:35:35 +00:00
|
|
|
|
} else {
|
2023-01-13 09:25:40 +00:00
|
|
|
|
if (props.pagination.reversed) {
|
|
|
|
|
reverseConcat(res).then(() => {
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = true;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
items.value = concatMapWithArray(items.value, res);
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = true;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
}
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}
|
|
|
|
|
offset.value += res.length;
|
2022-05-26 13:53:09 +00:00
|
|
|
|
}, err => {
|
2022-01-09 12:35:35 +00:00
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2022-01-09 16:00:50 +00:00
|
|
|
|
const fetchMoreAhead = async (): Promise<void> => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
if (!more.value || fetching.value || moreFetching.value || items.value.size === 0) return;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
moreFetching.value = true;
|
|
|
|
|
const params = props.pagination.params ? isRef(props.pagination.params) ? props.pagination.params.value : props.pagination.params : {};
|
|
|
|
|
await os.api(props.pagination.endpoint, {
|
|
|
|
|
...params,
|
2023-04-03 02:50:17 +00:00
|
|
|
|
limit: SECOND_FETCH_LIMIT,
|
2022-01-09 12:35:35 +00:00
|
|
|
|
...(props.pagination.offsetMode ? {
|
|
|
|
|
offset: offset.value,
|
|
|
|
|
} : {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
sinceId: Array.from(items.value.keys())[items.value.size - 1],
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}),
|
|
|
|
|
}).then(res => {
|
2023-04-03 02:50:17 +00:00
|
|
|
|
if (res.length === 0) {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
items.value = concatMapWithArray(items.value, res);
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = false;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
} else {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
items.value = concatMapWithArray(items.value, res);
|
2023-04-03 02:50:17 +00:00
|
|
|
|
more.value = true;
|
2022-01-09 12:35:35 +00:00
|
|
|
|
}
|
|
|
|
|
offset.value += res.length;
|
|
|
|
|
moreFetching.value = false;
|
2022-05-26 13:53:09 +00:00
|
|
|
|
}, err => {
|
2022-01-09 12:35:35 +00:00
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* Appear(IntersectionObserver)によってfetchMoreが呼ばれる場合、
|
|
|
|
|
* APPEAR_MINIMUM_INTERVALミリ秒以内に2回fetchMoreが呼ばれるのを防ぐ
|
|
|
|
|
*/
|
|
|
|
|
const fetchMoreApperTimeoutFn = (): void => {
|
|
|
|
|
preventAppearFetchMore.value = false;
|
|
|
|
|
preventAppearFetchMoreTimer.value = null;
|
|
|
|
|
};
|
|
|
|
|
const fetchMoreAppearTimeout = (): void => {
|
|
|
|
|
preventAppearFetchMore.value = true;
|
|
|
|
|
preventAppearFetchMoreTimer.value = window.setTimeout(fetchMoreApperTimeoutFn, APPEAR_MINIMUM_INTERVAL);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const appearFetchMore = async (): Promise<void> => {
|
|
|
|
|
if (preventAppearFetchMore.value) return;
|
|
|
|
|
await fetchMore();
|
|
|
|
|
fetchMoreAppearTimeout();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const appearFetchMoreAhead = async (): Promise<void> => {
|
|
|
|
|
if (preventAppearFetchMore.value) return;
|
|
|
|
|
await fetchMoreAhead();
|
|
|
|
|
fetchMoreAppearTimeout();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const isTop = (): boolean => isBackTop.value || (props.pagination.reversed ? isBottomVisible : isTopVisible)(contentEl!, TOLERANCE);
|
2023-02-24 23:18:12 +00:00
|
|
|
|
|
|
|
|
|
watch(visibility, () => {
|
|
|
|
|
if (visibility.value === 'hidden') {
|
|
|
|
|
timerForSetPause = window.setTimeout(() => {
|
|
|
|
|
isPausingUpdate = true;
|
|
|
|
|
timerForSetPause = null;
|
|
|
|
|
},
|
|
|
|
|
BACKGROUND_PAUSE_WAIT_SEC * 1000);
|
|
|
|
|
} else { // 'visible'
|
|
|
|
|
if (timerForSetPause) {
|
|
|
|
|
clearTimeout(timerForSetPause);
|
|
|
|
|
timerForSetPause = null;
|
|
|
|
|
} else {
|
|
|
|
|
isPausingUpdate = false;
|
|
|
|
|
if (isTop()) {
|
|
|
|
|
executeQueue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* 最新のものとして1つだけアイテムを追加する
|
|
|
|
|
* ストリーミングから降ってきたアイテムはこれで追加する
|
|
|
|
|
* @param item アイテム
|
|
|
|
|
*/
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const prepend = (item: MisskeyEntity): void => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
if (items.value.size === 0) {
|
|
|
|
|
items.value.set(item.id, item);
|
|
|
|
|
fetching.value = false;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2022-01-21 07:43:56 +00:00
|
|
|
|
|
2023-02-24 23:18:12 +00:00
|
|
|
|
if (isTop() && !isPausingUpdate) unshiftItems([item]);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
else prependQueue(item);
|
|
|
|
|
};
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
/**
|
|
|
|
|
* 新着アイテムをitemsの先頭に追加し、displayLimitを適用する
|
|
|
|
|
* @param newItems 新しいアイテムの配列
|
|
|
|
|
*/
|
2023-01-13 09:25:40 +00:00
|
|
|
|
function unshiftItems(newItems: MisskeyEntity[]) {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const length = newItems.length + items.value.size;
|
|
|
|
|
items.value = new Map([...arrayToEntries(newItems), ...items.value].slice(0, props.displayLimit));
|
|
|
|
|
|
|
|
|
|
if (length >= props.displayLimit) more.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 古いアイテムをitemsの末尾に追加し、displayLimitを適用する
|
|
|
|
|
* @param oldItems 古いアイテムの配列
|
|
|
|
|
*/
|
|
|
|
|
function concatItems(oldItems: MisskeyEntity[]) {
|
|
|
|
|
const length = oldItems.length + items.value.size;
|
|
|
|
|
items.value = new Map([...items.value, ...arrayToEntries(oldItems)].slice(0, props.displayLimit));
|
2023-01-13 09:25:40 +00:00
|
|
|
|
|
|
|
|
|
if (length >= props.displayLimit) more.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function executeQueue() {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
unshiftItems(Array.from(queue.value.values()));
|
|
|
|
|
queue.value = new Map();
|
2023-01-13 09:25:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function prependQueue(newItem: MisskeyEntity) {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
queue.value = new Map([[newItem.id, newItem], ...queue.value].slice(0, props.displayLimit) as [string, MisskeyEntity][]);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
}
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
/*
|
|
|
|
|
* アイテムを末尾に追加する(使うの?)
|
|
|
|
|
*/
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const appendItem = (item: MisskeyEntity): void => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
items.value.set(item.id, item);
|
2022-01-09 12:35:35 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const removeItem = (id: string) => {
|
|
|
|
|
items.value.delete(id);
|
|
|
|
|
queue.value.delete(id);
|
2022-05-15 13:20:01 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const updateItem = (id: MisskeyEntity['id'], replacer: (old: MisskeyEntity) => MisskeyEntity): void => {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
const item = items.value.get(id);
|
|
|
|
|
if (item) items.value.set(id, replacer(item));
|
|
|
|
|
|
|
|
|
|
const queueItem = queue.value.get(id);
|
|
|
|
|
if (queueItem) queue.value.set(id, replacer(queueItem));
|
2022-01-09 15:45:20 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-01-13 09:25:40 +00:00
|
|
|
|
const inited = init();
|
2022-01-09 12:35:35 +00:00
|
|
|
|
|
|
|
|
|
onActivated(() => {
|
|
|
|
|
isBackTop.value = false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onDeactivated(() => {
|
2023-01-14 06:01:28 +00:00
|
|
|
|
isBackTop.value = props.pagination.reversed ? window.scrollY >= (rootEl ? rootEl.scrollHeight - window.innerHeight : 0) : window.scrollY === 0;
|
2023-01-13 09:25:40 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
function toBottom() {
|
2023-07-04 15:59:37 +00:00
|
|
|
|
scrollToBottom(contentEl!);
|
2023-01-13 09:25:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
inited.then(() => {
|
|
|
|
|
if (props.pagination.reversed) {
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
setTimeout(toBottom, 800);
|
|
|
|
|
|
|
|
|
|
// scrollToBottomでmoreFetchingボタンが画面外まで出るまで
|
|
|
|
|
// more = trueを遅らせる
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
moreFetching.value = false;
|
|
|
|
|
}, 2000);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
2023-02-24 23:18:12 +00:00
|
|
|
|
if (timerForSetPause) {
|
|
|
|
|
clearTimeout(timerForSetPause);
|
|
|
|
|
timerForSetPause = null;
|
|
|
|
|
}
|
2023-07-04 15:59:37 +00:00
|
|
|
|
if (preventAppearFetchMoreTimer.value) {
|
|
|
|
|
clearTimeout(preventAppearFetchMoreTimer.value);
|
|
|
|
|
preventAppearFetchMoreTimer.value = null;
|
|
|
|
|
}
|
|
|
|
|
scrollObserver?.disconnect();
|
2022-01-09 12:35:35 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
defineExpose({
|
2022-01-10 11:17:38 +00:00
|
|
|
|
items,
|
2022-04-30 12:52:07 +00:00
|
|
|
|
queue,
|
2022-01-21 07:43:56 +00:00
|
|
|
|
backed,
|
2023-01-13 09:25:40 +00:00
|
|
|
|
more,
|
|
|
|
|
inited,
|
2022-01-09 12:35:35 +00:00
|
|
|
|
reload,
|
|
|
|
|
prepend,
|
2023-01-13 09:25:40 +00:00
|
|
|
|
append: appendItem,
|
2022-05-15 13:20:01 +00:00
|
|
|
|
removeItem,
|
2022-01-09 15:45:20 +00:00
|
|
|
|
updateItem,
|
2020-01-29 19:37:25 +00:00
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
2023-01-14 06:01:28 +00:00
|
|
|
|
<style lang="scss" module>
|
|
|
|
|
.transition_fade_enterActive,
|
|
|
|
|
.transition_fade_leaveActive {
|
2021-04-22 13:29:33 +00:00
|
|
|
|
transition: opacity 0.125s ease;
|
|
|
|
|
}
|
2023-01-14 06:01:28 +00:00
|
|
|
|
.transition_fade_enterFrom,
|
|
|
|
|
.transition_fade_leaveTo {
|
2021-04-22 13:29:33 +00:00
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-14 06:01:28 +00:00
|
|
|
|
.more {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|