Revert "hopefully this fixed chat updates"

This reverts commit bbbfbc1061.
This commit is contained in:
ThatOneCalculator 2023-01-19 16:33:14 -08:00
parent 407f521757
commit c8fc470e4e
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
3 changed files with 311 additions and 324 deletions

View File

@ -68,7 +68,7 @@ export async function toDbReaction(
const match = emojiRegex.exec(reaction);
if (match) {
const unicode = match[0];
return unicode.match('\u200d') ? unicode : unicode.replace(/\ufe0f/g, '');
return unicode.match("\u200d") ? unicode : unicode.replace(/\ufe0f/g, "");
}
const custom = reaction.match(/^:([\w+-]+)(?:@\.)?:$/);

View File

@ -1,13 +1,13 @@
<template>
<transition :name="$store.state.animation ? 'fade' : ''" mode="out-in">
<MkLoading v-if="fetching" />
<MkLoading v-if="fetching"/>
<MkError v-else-if="error" @retry="init()" />
<MkError v-else-if="error" @retry="init()"/>
<div v-else-if="empty" key="_empty_" class="empty">
<slot name="empty">
<div class="_fullinfo">
<img src="/static-assets/badges/info.png" class="_ghost" alt="Error" />
<img src="/static-assets/badges/info.png" class="_ghost" alt="Error"/>
<div>{{ i18n.ts.nothing }}</div>
</div>
</slot>
@ -15,87 +15,83 @@
<div v-else ref="rootEl">
<div v-show="pagination.reversed && more" key="_more_" class="cxiknjgy _gap">
<MkButton v-if="!moreFetching" class="button" :disabled="moreFetching"
:style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary @click="fetchMoreAhead">
<MkButton v-if="!moreFetching" class="button" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary @click="fetchMoreAhead">
{{ i18n.ts.loadMore }}
</MkButton>
<MkLoading v-else class="loading" />
<MkLoading v-else class="loading"/>
</div>
<slot :items="items"></slot>
<div v-show="!pagination.reversed && more" key="_more_" class="cxiknjgy _gap">
<MkButton v-if="!moreFetching"
v-appear="($store.state.enableInfiniteScroll && !disableAutoLoad) ? fetchMore : null" class="button"
:disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary @click="fetchMore">
<MkButton v-if="!moreFetching" v-appear="($store.state.enableInfiniteScroll && !disableAutoLoad) ? fetchMore : null" class="button" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary @click="fetchMore">
{{ i18n.ts.loadMore }}
</MkButton>
<MkLoading v-else class="loading" />
<MkLoading v-else class="loading"/>
</div>
</div>
</transition>
</template>
</template>
<script lang="ts" setup>
import { computed, ComputedRef, isRef, markRaw, onActivated, onDeactivated, Ref, ref, watch } from 'vue';
import * as calckey from 'calckey-js';
import * as os from '@/os';
import { onScrollTop, isTopVisible, getScrollPosition, getScrollContainer } from '@/scripts/scroll';
import MkButton from '@/components/MkButton.vue';
import { i18n } from '@/i18n';
<script lang="ts" setup>
import { computed, ComputedRef, isRef, markRaw, onActivated, onDeactivated, Ref, ref, watch } from 'vue';
import * as misskey from 'calckey-js';
import * as os from '@/os';
import { onScrollTop, isTopVisible, getScrollPosition, getScrollContainer } from '@/scripts/scroll';
import MkButton from '@/components/MkButton.vue';
import { i18n } from '@/i18n';
export type Paging<E extends keyof calckey.Endpoints = keyof calckey.Endpoints> = {
export type Paging<E extends keyof misskey.Endpoints = keyof misskey.Endpoints> = {
endpoint: E;
limit: number;
params?: calckey.Endpoints[E]['req'] | ComputedRef<calckey.Endpoints[E]['req']>;
params?: misskey.Endpoints[E]['req'] | ComputedRef<misskey.Endpoints[E]['req']>;
/**
* When using non-pageable endpoints, such as the search API
* (though it is somewhat inconsistent to use such an API with this function)
* 検索APIのようなページング不可なエンドポイントを利用する場合
* (そのようなAPIをこの関数で使うのは若干矛盾してるけど)
*/
noPaging?: boolean;
/**
* array items in reverse order (newest first)
* items 配列の中身を逆順にする(新しい方が最後)
*/
reversed?: boolean;
offsetMode?: boolean;
};
};
const SECOND_FETCH_LIMIT = 30;
const SECOND_FETCH_LIMIT = 30;
const props = withDefaults(defineProps<{
const props = withDefaults(defineProps<{
pagination: Paging;
disableAutoLoad?: boolean;
displayLimit?: number;
externalItemArray?: Ref<Array<any>>;
}>(), {
}>(), {
displayLimit: 30,
});
});
const emit = defineEmits<{
const emit = defineEmits<{
(ev: 'queue', count: number): void;
}>();
}>();
type Item = { id: string;[another: string]: unknown; };
type Item = { id: string; [another: string]: unknown; };
const rootEl = ref<HTMLElement>();
const items = ref<Item[]>([]);
const queue = ref<Item[]>([]);
const offset = ref(0);
const fetching = ref(true);
const moreFetching = ref(false);
const more = ref(false);
const backed = ref(false); //
const isBackTop = ref(false);
const empty = computed(() => items.value.length === 0);
const error = ref(false);
const rootEl = ref<HTMLElement>();
const items = ref<Item[]>([]);
const queue = ref<Item[]>([]);
const offset = ref(0);
const fetching = ref(true);
const moreFetching = ref(false);
const more = ref(false);
const backed = ref(false); //
const isBackTop = ref(false);
const empty = computed(() => items.value.length === 0);
const error = ref(false);
const init = async (): Promise<void> => {
const init = async (): Promise<void> => {
queue.value = [];
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 as object),
...params,
limit: props.pagination.noPaging ? (props.pagination.limit || 10) : (props.pagination.limit || 10) + 1,
}).then(res => {
for (let i = 0; i < res.length; i++) {
@ -121,17 +117,17 @@ const init = async (): Promise<void> => {
error.value = true;
fetching.value = false;
});
};
};
const reload = (): void => {
const reload = (): void => {
items.value = [];
init();
};
};
const refresh = async (): Promise<void> => {
const refresh = async (): void => {
const params = props.pagination.params ? isRef(props.pagination.params) ? props.pagination.params.value : props.pagination.params : {};
await os.api(props.pagination.endpoint, {
...(params as object),
...params,
limit: items.value.length + 1,
offset: 0,
}).then(res => {
@ -155,15 +151,15 @@ const refresh = async (): Promise<void> => {
error.value = true;
fetching.value = false;
});
};
};
const fetchMore = async (): Promise<void> => {
const fetchMore = async (): Promise<void> => {
if (!more.value || fetching.value || moreFetching.value || items.value.length === 0) return;
moreFetching.value = true;
backed.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 as object),
...params,
limit: SECOND_FETCH_LIMIT + 1,
...(props.pagination.offsetMode ? {
offset: offset.value,
@ -194,14 +190,14 @@ const fetchMore = async (): Promise<void> => {
}, err => {
moreFetching.value = false;
});
};
};
const fetchMoreAhead = async (): Promise<void> => {
const fetchMoreAhead = async (): Promise<void> => {
if (!more.value || fetching.value || moreFetching.value || items.value.length === 0) return;
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 as object),
...params,
limit: SECOND_FETCH_LIMIT + 1,
...(props.pagination.offsetMode ? {
offset: offset.value,
@ -224,9 +220,9 @@ const fetchMoreAhead = async (): Promise<void> => {
}, err => {
moreFetching.value = false;
});
};
};
const prepend = (item: Item): void => {
const prepend = (item: Item): void => {
if (props.pagination.reversed) {
if (rootEl.value) {
const container = getScrollContainer(rootEl.value);
@ -284,53 +280,52 @@ const prepend = (item: Item): void => {
});
}
}
};
};
const append = (item: Item): void => {
const append = (item: Item): void => {
items.value.push(item);
};
};
const removeItem = (finder: (item: Item) => boolean): boolean => {
const removeItem = (finder: (item: Item) => boolean): boolean => {
const i = items.value.findIndex(finder);
const j = props.externalItemArray?.findIndex(finder);
if (i === -1) {
return false;
}
items.value.splice(i, 1);
return true;
};
};
const updateItem = (id: Item['id'], replacer: (old: Item) => Item): boolean => {
const updateItem = (id: Item['id'], replacer: (old: Item) => Item): boolean => {
const i = items.value.findIndex(item => item.id === id);
const j = props.externalItemArray?.findIndex(item => item.id === id);
if (i === -1 && j === -1) {
if (i === -1) {
return false;
}
items.value[i] = replacer(items.value[i]);
return true;
};
};
if (props.pagination.params && isRef(props.pagination.params)) {
if (props.pagination.params && isRef(props.pagination.params)) {
watch(props.pagination.params, init, { deep: true });
}
}
watch(queue, (a, b) => {
watch(queue, (a, b) => {
if (a.length === 0 && b.length === 0) return;
emit('queue', queue.value.length);
}, { deep: true });
}, { deep: true });
init();
init();
onActivated(() => {
onActivated(() => {
isBackTop.value = false;
});
});
onDeactivated(() => {
onDeactivated(() => {
isBackTop.value = window.scrollY === 0;
});
});
defineExpose({
defineExpose({
items,
queue,
backed,
@ -340,24 +335,23 @@ defineExpose({
append,
removeItem,
updateItem,
});
</script>
});
</script>
<style lang="scss" scoped>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.15s ease;
}
.fade-enter-from,
.fade-leave-to {
<style lang="scss" scoped>
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.125s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
}
.cxiknjgy {
>.button {
.cxiknjgy {
> .button {
margin-left: auto;
margin-right: auto;
}
}
</style>
}
</style>

View File

@ -37,7 +37,7 @@
</template>
<script lang="ts" setup>
import { markRaw, onMounted, onUnmounted, watch, ref } from 'vue';
import { markRaw, onMounted, onUnmounted, watch } from 'vue';
import * as Acct from 'calckey-js/built/acct';
import { Virtual } from 'swiper';
import { Swiper, SwiperSlide } from 'swiper/vue';
@ -59,16 +59,11 @@ const router = useRouter();
let messages = $ref([]);
let connection = $ref(null);
const reloadingKey = ref(0);
const tabs = ['dms', 'groups'];
let tab = $ref(tabs[0]);
watch($$(tab), () => (syncSlide(tabs.indexOf(tab))));
const forceRerender = () => {
reloadingKey.value += 1;
};
const headerActions = $computed(() => [{
asFullButton: true,
icon: 'ph-plus-bold ph-lg',
@ -117,7 +112,6 @@ function onMessage(message): void {
messages = messages.filter(m => m.groupId !== message.groupId);
messages.unshift(message);
}
forceRerender();
}
function onRead(ids): void {
@ -189,12 +183,11 @@ function syncSlide(index) {
}
onMounted(() => {
syncSlide(tabs.indexOf(swiperRef?.activeIndex));
syncSlide(tabs.indexOf(swiperRef.activeIndex));
connection = markRaw(stream.useChannel('messagingIndex'));
connection.on('message', onMessage);
connection.on('messagingMessage', onMessage);
connection.on('read', onRead);
os.api('messaging/history', { group: false, limit: 5 }).then(userMessages => {