Revert "potentially breaking or fixing DM updates"
This reverts commit 23badbc7c3
.
This commit is contained in:
parent
56ff9ca223
commit
407f521757
@ -41,7 +41,6 @@ import * as os from '@/os';
|
|||||||
import { onScrollTop, isTopVisible, getScrollPosition, getScrollContainer } from '@/scripts/scroll';
|
import { onScrollTop, isTopVisible, getScrollPosition, getScrollContainer } from '@/scripts/scroll';
|
||||||
import MkButton from '@/components/MkButton.vue';
|
import MkButton from '@/components/MkButton.vue';
|
||||||
import { i18n } from '@/i18n';
|
import { i18n } from '@/i18n';
|
||||||
import { ItemHolder } from 'photoswipe';
|
|
||||||
|
|
||||||
export type Paging<E extends keyof calckey.Endpoints = keyof calckey.Endpoints> = {
|
export type Paging<E extends keyof calckey.Endpoints = keyof calckey.Endpoints> = {
|
||||||
endpoint: E;
|
endpoint: E;
|
||||||
@ -110,15 +109,9 @@ const init = async (): Promise<void> => {
|
|||||||
if (!props.pagination.noPaging && (res.length > (props.pagination.limit || 10))) {
|
if (!props.pagination.noPaging && (res.length > (props.pagination.limit || 10))) {
|
||||||
res.pop();
|
res.pop();
|
||||||
items.value = props.pagination.reversed ? [...res].reverse() : res;
|
items.value = props.pagination.reversed ? [...res].reverse() : res;
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = items.value;
|
|
||||||
}
|
|
||||||
more.value = true;
|
more.value = true;
|
||||||
} else {
|
} else {
|
||||||
items.value = props.pagination.reversed ? [...res].reverse() : res;
|
items.value = props.pagination.reversed ? [...res].reverse() : res;
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = items.value;
|
|
||||||
}
|
|
||||||
more.value = false;
|
more.value = false;
|
||||||
}
|
}
|
||||||
offset.value = res.length;
|
offset.value = res.length;
|
||||||
@ -132,9 +125,6 @@ const init = async (): Promise<void> => {
|
|||||||
|
|
||||||
const reload = (): void => {
|
const reload = (): void => {
|
||||||
items.value = [];
|
items.value = [];
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = [];
|
|
||||||
}
|
|
||||||
init();
|
init();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -194,15 +184,9 @@ const fetchMore = async (): Promise<void> => {
|
|||||||
if (res.length > SECOND_FETCH_LIMIT) {
|
if (res.length > SECOND_FETCH_LIMIT) {
|
||||||
res.pop();
|
res.pop();
|
||||||
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = items.value;
|
|
||||||
}
|
|
||||||
more.value = true;
|
more.value = true;
|
||||||
} else {
|
} else {
|
||||||
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = items.value;
|
|
||||||
}
|
|
||||||
more.value = false;
|
more.value = false;
|
||||||
}
|
}
|
||||||
offset.value += res.length;
|
offset.value += res.length;
|
||||||
@ -230,15 +214,9 @@ const fetchMoreAhead = async (): Promise<void> => {
|
|||||||
if (res.length > SECOND_FETCH_LIMIT) {
|
if (res.length > SECOND_FETCH_LIMIT) {
|
||||||
res.pop();
|
res.pop();
|
||||||
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = items.value;
|
|
||||||
}
|
|
||||||
more.value = true;
|
more.value = true;
|
||||||
} else {
|
} else {
|
||||||
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
items.value = props.pagination.reversed ? [...res].reverse().concat(items.value) : items.value.concat(res);
|
||||||
if (props.externalItemArray) {
|
|
||||||
props.externalItemArray.value = items.value;
|
|
||||||
}
|
|
||||||
more.value = false;
|
more.value = false;
|
||||||
}
|
}
|
||||||
offset.value += res.length;
|
offset.value += res.length;
|
||||||
@ -266,7 +244,6 @@ const prepend = (item: Item): void => {
|
|||||||
//items.value = items.value.slice(-props.displayLimit);
|
//items.value = items.value.slice(-props.displayLimit);
|
||||||
while (items.value.length >= props.displayLimit) {
|
while (items.value.length >= props.displayLimit) {
|
||||||
items.value.shift();
|
items.value.shift();
|
||||||
if (props.externalItemArray) props.externalItemArray.value.shift();
|
|
||||||
}
|
}
|
||||||
more.value = true;
|
more.value = true;
|
||||||
}
|
}
|
||||||
@ -274,13 +251,11 @@ const prepend = (item: Item): void => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
items.value.push(item);
|
items.value.push(item);
|
||||||
if (props.externalItemArray) props.externalItemArray.value.push(item);
|
|
||||||
// TODO
|
// TODO
|
||||||
} else {
|
} else {
|
||||||
// 初回表示時はunshiftだけでOK
|
// 初回表示時はunshiftだけでOK
|
||||||
if (!rootEl.value) {
|
if (!rootEl.value) {
|
||||||
items.value.unshift(item);
|
items.value.unshift(item);
|
||||||
if (props.externalItemArray) props.externalItemArray.value.unshift(item);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -289,7 +264,16 @@ const prepend = (item: Item): void => {
|
|||||||
if (isTop) {
|
if (isTop) {
|
||||||
// Prepend the item
|
// Prepend the item
|
||||||
items.value.unshift(item);
|
items.value.unshift(item);
|
||||||
if (props.externalItemArray) props.externalItemArray.value.unshift(item);
|
|
||||||
|
// オーバーフローしたら古いアイテムは捨てる
|
||||||
|
if (items.value.length >= props.displayLimit) {
|
||||||
|
// このやり方だとVue 3.2以降アニメーションが動かなくなる
|
||||||
|
//this.items = items.value.slice(0, props.displayLimit);
|
||||||
|
while (items.value.length >= props.displayLimit) {
|
||||||
|
items.value.pop();
|
||||||
|
}
|
||||||
|
more.value = true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
queue.value.push(item);
|
queue.value.push(item);
|
||||||
onScrollTop(rootEl.value, () => {
|
onScrollTop(rootEl.value, () => {
|
||||||
@ -304,18 +288,15 @@ const prepend = (item: Item): void => {
|
|||||||
|
|
||||||
const append = (item: Item): void => {
|
const append = (item: Item): void => {
|
||||||
items.value.push(item);
|
items.value.push(item);
|
||||||
if (props.externalItemArray) props.externalItemArray.value.push(item);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const removeItem = (finder: (item: Item) => boolean): boolean => {
|
const removeItem = (finder: (item: Item) => boolean): boolean => {
|
||||||
const i = items.value.findIndex(finder);
|
const i = items.value.findIndex(finder);
|
||||||
const j = props.externalItemArray?.findIndex(finder);
|
const j = props.externalItemArray?.findIndex(finder);
|
||||||
if (i === -1 && j === -1) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
items.value.splice(i, 1);
|
items.value.splice(i, 1);
|
||||||
if (props.externalItemArray) props.externalItemArray.value.splice(i, 1);
|
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -327,7 +308,6 @@ const updateItem = (id: Item['id'], replacer: (old: Item) => Item): boolean => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
items.value[i] = replacer(items.value[i]);
|
items.value[i] = replacer(items.value[i]);
|
||||||
if (props.externalItemArray) props.externalItemArray.value[i] = items.value[i];
|
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
<swiper-slide>
|
<swiper-slide>
|
||||||
<div class="_content yweeujhr dms">
|
<div class="_content yweeujhr dms">
|
||||||
<MkButton primary class="start" @click="startUser"><i class="ph-plus-bold ph-lg"></i> {{ i18n.ts.startMessaging }}</MkButton>
|
<MkButton primary class="start" @click="startUser"><i class="ph-plus-bold ph-lg"></i> {{ i18n.ts.startMessaging }}</MkButton>
|
||||||
<MkPagination v-slot="{}" :externalItemArray="messages" :pagination="dmsPagination">
|
<MkPagination v-slot="{items}" :pagination="dmsPagination">
|
||||||
<MkChatPreview v-for="message in messages" :key="message.id" class="yweeujhr message _block" :message="message"/>
|
<MkChatPreview v-for="message in items" :key="message.id" class="yweeujhr message _block" :message="message"/>
|
||||||
</MkPagination>
|
</MkPagination>
|
||||||
</div>
|
</div>
|
||||||
</swiper-slide>
|
</swiper-slide>
|
||||||
@ -25,8 +25,8 @@
|
|||||||
<MkButton primary class="start" :link="true" to="/my/groups"><i class="ph-user-circle-gear-bold ph-lg"></i> {{ i18n.ts.manageGroups }}</MkButton>
|
<MkButton primary class="start" :link="true" to="/my/groups"><i class="ph-user-circle-gear-bold ph-lg"></i> {{ i18n.ts.manageGroups }}</MkButton>
|
||||||
<MkButton primary class="start" @click="startGroup"><i class="ph-plus-bold ph-lg"></i> {{ i18n.ts.startMessaging }}</MkButton>
|
<MkButton primary class="start" @click="startGroup"><i class="ph-plus-bold ph-lg"></i> {{ i18n.ts.startMessaging }}</MkButton>
|
||||||
</div>
|
</div>
|
||||||
<MkPagination v-slot="{}" :externalItemArray="groupMessages" :pagination="groupsPagination">
|
<MkPagination v-slot="{items}" :pagination="groupsPagination">
|
||||||
<MkChatPreview v-for="message in groupMessages" :key="message.id" class="yweeujhr message _block" :message="message"/>
|
<MkChatPreview v-for="message in items" :key="message.id" class="yweeujhr message _block" :message="message"/>
|
||||||
</MkPagination>
|
</MkPagination>
|
||||||
</div>
|
</div>
|
||||||
</swiper-slide>
|
</swiper-slide>
|
||||||
@ -58,13 +58,17 @@ import 'swiper/scss/virtual';
|
|||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|
||||||
let messages = $ref([]);
|
let messages = $ref([]);
|
||||||
let groupMessages = $ref([]);
|
|
||||||
let connection = $ref(null);
|
let connection = $ref(null);
|
||||||
|
const reloadingKey = ref(0);
|
||||||
|
|
||||||
const tabs = ['dms', 'groups'];
|
const tabs = ['dms', 'groups'];
|
||||||
let tab = $ref(tabs[0]);
|
let tab = $ref(tabs[0]);
|
||||||
watch($$(tab), () => (syncSlide(tabs.indexOf(tab))));
|
watch($$(tab), () => (syncSlide(tabs.indexOf(tab))));
|
||||||
|
|
||||||
|
const forceRerender = () => {
|
||||||
|
reloadingKey.value += 1;
|
||||||
|
};
|
||||||
|
|
||||||
const headerActions = $computed(() => [{
|
const headerActions = $computed(() => [{
|
||||||
asFullButton: true,
|
asFullButton: true,
|
||||||
icon: 'ph-plus-bold ph-lg',
|
icon: 'ph-plus-bold ph-lg',
|
||||||
@ -110,9 +114,10 @@ function onMessage(message): void {
|
|||||||
|
|
||||||
messages.unshift(message);
|
messages.unshift(message);
|
||||||
} else if (message.groupId) {
|
} else if (message.groupId) {
|
||||||
groupMessages = groupMessages.filter(m => m.groupId !== message.groupId);
|
messages = messages.filter(m => m.groupId !== message.groupId);
|
||||||
groupMessages.unshift(message);
|
messages.unshift(message);
|
||||||
}
|
}
|
||||||
|
forceRerender();
|
||||||
}
|
}
|
||||||
|
|
||||||
function onRead(ids): void {
|
function onRead(ids): void {
|
||||||
|
Loading…
Reference in New Issue
Block a user