logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 67f3532ac95b2a8740ccbde581e74ac65eb20a9a
parent ee1cf36d523126630c20b0de0498207bafa14b3d
Author: Shpuld Shpuldson <shp@cock.li>
Date:   Thu, 18 Feb 2021 10:14:45 +0200

add additional check with timeout

Diffstat:

Msrc/components/chat/chat.js9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/components/chat/chat.js b/src/components/chat/chat.js @@ -234,6 +234,13 @@ const Chat = { const scrollable = this.$refs.scrollable return scrollable && scrollable.scrollTop <= 0 }, + cullOlderCheck () { + window.setTimeout(() => { + if (this.bottomedOut(JUMP_TO_BOTTOM_BUTTON_VISIBILITY_OFFSET)) { + this.$store.dispatch('cullOlderMessages', this.currentChatMessageService.chatId) + } + }, 5000) + }, handleScroll: _.throttle(function () { if (!this.currentChat) { return } @@ -241,7 +248,7 @@ const Chat = { this.fetchChat({ maxId: this.currentChatMessageService.minId }) } else if (this.bottomedOut(JUMP_TO_BOTTOM_BUTTON_VISIBILITY_OFFSET)) { this.jumpToBottomButtonVisible = false - this.$store.dispatch('cullOlderMessages', this.currentChatMessageService.chatId) + this.cullOlderCheck() if (this.newMessageCount > 0) { // Use a delay before marking as read to prevent situation where new messages // arrive just as you're leaving the view and messages that you didn't actually