Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2020-01-09 14:08:45 +0300
committerJoas Schilling <coding@schilljs.com>2020-01-09 23:49:46 +0300
commit0b461157956bed5b949105f61c1f8c73f2c0e3cc (patch)
treeb0286acb348ff6c44cfcb2614fefe5e2eaa8cd41 /src
parent19ed07e749a9aa7a789225413cedebdff74c5ccc (diff)
Fix chat tab autoscroll to bottom
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src')
-rw-r--r--src/components/MessagesList/MessagesList.vue27
1 files changed, 6 insertions, 21 deletions
diff --git a/src/components/MessagesList/MessagesList.vue b/src/components/MessagesList/MessagesList.vue
index 43cdeb7bc..21a8310d9 100644
--- a/src/components/MessagesList/MessagesList.vue
+++ b/src/components/MessagesList/MessagesList.vue
@@ -72,11 +72,6 @@ export default {
data: function() {
return {
/**
- * Keeps track of the state of the component in order to trigger the scroll to
- * bottom.
- */
- isInitiated: false,
- /**
* Stores the cancel function returned by `cancelableLookForNewMessages`,
* which allows to cancel the previous long polling request for new
* messages before making another one.
@@ -195,21 +190,13 @@ export default {
},
},
},
-
+ mounted() {
+ this.scrollToBottom()
+ },
beforeDestroy() {
this.cancelLookForNewMessages()
},
- beforeUpdate() {
- /**
- * If the component is not initiated, scroll to the bottom of the message list.
- */
- if (!this.isInitiated && this.messagesList.length > 0) {
- this.scrollToBottom()
- this.isInitiated = true
- }
- },
-
methods: {
/**
* Compare two messages to decide if they should be grouped
@@ -307,7 +294,7 @@ export default {
handleStartGettingMessagesPreconditions() {
if (this.token && this.isParticipant && !this.isInLobby) {
- this.startGettingMessages()
+ this.getMessages()
} else {
this.cancelLookForNewMessages()
}
@@ -317,13 +304,11 @@ export default {
* Fetches the messages of a conversation given the conversation token. Triggers
* a long-polling request for new messages.
*/
- startGettingMessages() {
- this.isInitiated = false
- this.getMessages()
- },
async getMessages() {
// Gets the history of the conversation.
await this.getOldMessages()
+ // Once the history is loaded, scroll to bottom
+ this.scrollToBottom()
// Once the history is received, startslooking for new messages.
this.$nextTick(() => {
if (this._isBeingDestroyed || this._isDestroyed) {