2020-11-09 10:26:56 +01:00
|
|
|
<template>
|
|
|
|
|
<div class="chat-root fill-height d-flex flex-column" ma-0 pa-0>
|
|
|
|
|
<div
|
|
|
|
|
class="chat-content flex-grow-1 flex-shrink-1"
|
|
|
|
|
ref="chatContainer"
|
|
|
|
|
style="overflow-x: hidden; overflow-y: auto"
|
2020-11-11 17:35:14 +01:00
|
|
|
v-on:scroll="onScroll"
|
2020-11-09 10:26:56 +01:00
|
|
|
>
|
2020-11-19 17:08:58 +01:00
|
|
|
<div v-for="event in events" :key="event.getId()">
|
2020-11-17 21:24:03 +01:00
|
|
|
<component
|
|
|
|
|
:is="componentForEvent(event)"
|
|
|
|
|
:room="room"
|
|
|
|
|
:event="event" />
|
2020-11-09 10:26:56 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Input area -->
|
2020-11-17 20:02:42 +01:00
|
|
|
<div v-if="room" class="input-area flex-grow-0 flex-shrink-0">
|
|
|
|
|
<!-- CONTACT IS TYPING -->
|
|
|
|
|
<div v-show="contactIsTyping" class="typing">Someone is typing...</div>
|
2020-11-09 10:26:56 +01:00
|
|
|
<v-textarea
|
|
|
|
|
ref="messageInput"
|
|
|
|
|
full-width
|
|
|
|
|
v-model="currentInput"
|
|
|
|
|
no-resize
|
|
|
|
|
class="input-message"
|
|
|
|
|
placeholder="Send message"
|
|
|
|
|
hide-details
|
2020-11-17 20:02:42 +01:00
|
|
|
background-color="white"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:prepend>
|
|
|
|
|
<label icon flat>
|
|
|
|
|
<v-icon>attachment</v-icon>
|
|
|
|
|
<input
|
|
|
|
|
ref="attachment"
|
|
|
|
|
type="file"
|
|
|
|
|
name="attachment"
|
|
|
|
|
@change="pickAttachment($event)"
|
|
|
|
|
accept="image/*"
|
|
|
|
|
style="display: none"
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
</template>
|
|
|
|
|
</v-textarea>
|
2020-11-09 10:26:56 +01:00
|
|
|
<div align-self="end" class="text-right">
|
|
|
|
|
<v-btn
|
|
|
|
|
elevation="0"
|
|
|
|
|
@click.stop="sendMessage"
|
|
|
|
|
:disabled="sendButtonDisabled"
|
|
|
|
|
>Send</v-btn
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-11-17 20:02:42 +01:00
|
|
|
|
|
|
|
|
<div v-if="currentImageInput">
|
|
|
|
|
<v-dialog v-model="currentImageInput" class="ma-0 pa-0" width="50%">
|
|
|
|
|
<v-card class="ma-0 pa-0">
|
|
|
|
|
<v-card-text class="ma-0 pa-0">
|
|
|
|
|
<v-img
|
|
|
|
|
:aspect-ratio="1"
|
|
|
|
|
:src="currentImageInput"
|
|
|
|
|
contain
|
|
|
|
|
style="max-height: 50vh"
|
|
|
|
|
/>
|
|
|
|
|
<div v-if="currentSendError">{{ currentSendError }}</div>
|
|
|
|
|
<div v-else>{{ currentSendProgress }}</div>
|
|
|
|
|
</v-card-text>
|
|
|
|
|
<v-divider></v-divider>
|
|
|
|
|
<v-card-actions>
|
|
|
|
|
<v-spacer></v-spacer>
|
|
|
|
|
<v-btn color="primary" text @click="currentImageInput = null"
|
|
|
|
|
>Cancel</v-btn
|
|
|
|
|
>
|
|
|
|
|
<v-btn color="primary" text @click="sendAttachment">Send</v-btn>
|
|
|
|
|
</v-card-actions>
|
|
|
|
|
</v-card>
|
|
|
|
|
</v-dialog>
|
|
|
|
|
</div>
|
2020-11-09 10:26:56 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-11-11 17:35:14 +01:00
|
|
|
import { TimelineWindow, EventTimeline } from "matrix-js-sdk";
|
2020-11-17 20:32:37 +01:00
|
|
|
import MessageIncomingText from './messages/MessageIncomingText';
|
|
|
|
|
import MessageOutgoingText from './messages/MessageOutgoingText';
|
|
|
|
|
import ContactJoin from './messages/ContactJoin.vue';
|
|
|
|
|
import ContactLeave from './messages/ContactLeave.vue';
|
|
|
|
|
import ContactInvited from './messages/ContactInvited.vue';
|
|
|
|
|
import RoomNameChanged from './messages/RoomNameChanged.vue';
|
|
|
|
|
import RoomTopicChanged from './messages/RoomTopicChanged.vue';
|
|
|
|
|
import RoomAvatarChanged from './messages/RoomAvatarChanged.vue';
|
|
|
|
|
import DebugEvent from "./messages/DebugEvent.vue";
|
2020-11-17 21:24:03 +01:00
|
|
|
import MessageOutgoingImage from "./messages/MessageOutgoingImage.vue";
|
|
|
|
|
import MessageIncomingImage from "./messages/MessageIncomingImage.vue";
|
2020-11-11 17:35:14 +01:00
|
|
|
|
|
|
|
|
// from https://kirbysayshi.com/2013/08/19/maintaining-scroll-position-knockoutjs-list.html
|
|
|
|
|
function ScrollPosition(node) {
|
|
|
|
|
this.node = node;
|
|
|
|
|
this.previousScrollHeightMinusTop = 0;
|
2020-11-17 20:02:42 +01:00
|
|
|
this.previousScrollTop = 0;
|
2020-11-11 17:35:14 +01:00
|
|
|
this.readyFor = "up";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ScrollPosition.prototype.restore = function () {
|
|
|
|
|
if (this.readyFor === "up") {
|
|
|
|
|
this.node.scrollTop =
|
|
|
|
|
this.node.scrollHeight - this.previousScrollHeightMinusTop;
|
2020-11-17 20:02:42 +01:00
|
|
|
} else {
|
|
|
|
|
this.node.scrollTop = this.previousScrollTop;
|
2020-11-11 17:35:14 +01:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ScrollPosition.prototype.prepareFor = function (direction) {
|
|
|
|
|
this.readyFor = direction || "up";
|
2020-11-17 20:02:42 +01:00
|
|
|
if (this.readyFor === "up") {
|
|
|
|
|
this.previousScrollHeightMinusTop =
|
|
|
|
|
this.node.scrollHeight - this.node.scrollTop;
|
|
|
|
|
} else {
|
|
|
|
|
this.previousScrollTop = this.node.scrollTop;
|
|
|
|
|
}
|
2020-11-11 17:35:14 +01:00
|
|
|
};
|
|
|
|
|
|
2020-11-09 10:26:56 +01:00
|
|
|
export default {
|
|
|
|
|
name: "Chat",
|
|
|
|
|
|
2020-11-17 20:32:37 +01:00
|
|
|
components: {
|
|
|
|
|
MessageIncomingText,
|
|
|
|
|
MessageOutgoingText,
|
|
|
|
|
ContactJoin,
|
|
|
|
|
ContactLeave,
|
|
|
|
|
ContactInvited,
|
|
|
|
|
RoomNameChanged,
|
|
|
|
|
RoomTopicChanged,
|
|
|
|
|
RoomAvatarChanged,
|
2020-11-17 21:24:03 +01:00
|
|
|
DebugEvent,
|
|
|
|
|
MessageOutgoingImage,
|
|
|
|
|
MessageIncomingImage
|
2020-11-17 20:32:37 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
data() { return {
|
2020-11-11 17:35:14 +01:00
|
|
|
room: null,
|
2020-11-09 10:26:56 +01:00
|
|
|
events: [],
|
|
|
|
|
currentInput: "",
|
|
|
|
|
contactIsTyping: false,
|
2020-11-11 17:35:14 +01:00
|
|
|
timelineWindow: null,
|
|
|
|
|
scrollPosition: null,
|
2020-11-17 20:02:42 +01:00
|
|
|
currentImageInput: null,
|
|
|
|
|
currentImageInputPath: null,
|
|
|
|
|
currentSendOperation: null,
|
|
|
|
|
currentSendProgress: null,
|
|
|
|
|
currentSendError: null,
|
2020-11-17 20:32:37 +01:00
|
|
|
}},
|
2020-11-09 10:26:56 +01:00
|
|
|
|
2020-11-11 17:35:14 +01:00
|
|
|
mounted() {
|
|
|
|
|
const container = this.$refs.chatContainer;
|
|
|
|
|
this.scrollPosition = new ScrollPosition(container);
|
|
|
|
|
|
|
|
|
|
this.$matrix.on("Room.timeline", this.onEvent);
|
|
|
|
|
this.$matrix.on("RoomMember.typing", this.onUserTyping);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
destroyed() {
|
|
|
|
|
this.$matrix.off("Room.timeline", this.onEvent);
|
|
|
|
|
this.$matrix.off("RoomMember.typing", this.onUserTyping);
|
|
|
|
|
},
|
|
|
|
|
|
2020-11-09 10:26:56 +01:00
|
|
|
computed: {
|
2020-11-09 15:08:36 +01:00
|
|
|
myUserId() {
|
|
|
|
|
return this.$store.state.auth.user.user_id;
|
2020-11-09 10:26:56 +01:00
|
|
|
},
|
|
|
|
|
roomId() {
|
2020-11-09 15:08:36 +01:00
|
|
|
return this.$matrix.currentRoomId;
|
2020-11-09 10:26:56 +01:00
|
|
|
},
|
|
|
|
|
sendButtonDisabled() {
|
|
|
|
|
return this.currentInput.length == 0;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
watch: {
|
2020-11-09 15:08:36 +01:00
|
|
|
roomId() {
|
2020-11-09 10:26:56 +01:00
|
|
|
console.log("Chat: Current room changed");
|
|
|
|
|
|
|
|
|
|
// Clear old events
|
|
|
|
|
this.events = [];
|
2020-11-17 20:02:42 +01:00
|
|
|
this.timelineWindow = null;
|
2020-11-09 10:26:56 +01:00
|
|
|
this.contactIsTyping = false;
|
|
|
|
|
|
2020-11-09 15:08:36 +01:00
|
|
|
if (!this.roomId) {
|
2020-11-09 10:26:56 +01:00
|
|
|
return; // no room
|
|
|
|
|
}
|
2020-11-11 17:35:14 +01:00
|
|
|
|
|
|
|
|
this.room = this.$matrix.getRoom(this.roomId);
|
|
|
|
|
if (!this.room) {
|
2020-11-09 15:08:36 +01:00
|
|
|
return; // Not found
|
|
|
|
|
}
|
2020-11-09 10:26:56 +01:00
|
|
|
|
2020-11-11 17:35:14 +01:00
|
|
|
this.timelineWindow = new TimelineWindow(
|
|
|
|
|
this.$matrix.matrixClient,
|
|
|
|
|
this.room.getUnfilteredTimelineSet(),
|
|
|
|
|
{}
|
|
|
|
|
);
|
|
|
|
|
this.timelineWindow.load(null, 20).then(() => {
|
|
|
|
|
this.events = this.timelineWindow.getEvents();
|
|
|
|
|
this.paginateBackIfNeeded();
|
2020-11-09 10:26:56 +01:00
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
2020-11-17 21:24:03 +01:00
|
|
|
componentForEvent(event) {
|
|
|
|
|
switch (event.getType()) {
|
|
|
|
|
case 'm.room.member':
|
|
|
|
|
if (event.event.state_key != this.myUserId) {
|
|
|
|
|
if (event.getContent().membership == 'join') {
|
|
|
|
|
return ContactJoin;
|
|
|
|
|
} else if (event.getContent().membership == 'leave') {
|
|
|
|
|
return ContactLeave;
|
|
|
|
|
} else if (event.getContent().membership == 'invite') {
|
|
|
|
|
return ContactInvited;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'm.room.message':
|
|
|
|
|
if (event.getSender() != this.myUserId) {
|
|
|
|
|
if (event.getContent().msgtype == 'm.image') {
|
|
|
|
|
return MessageIncomingImage;
|
|
|
|
|
}
|
|
|
|
|
return MessageIncomingText;
|
|
|
|
|
} else {
|
|
|
|
|
if (event.getContent().msgtype == 'm.image') {
|
|
|
|
|
return MessageOutgoingImage;
|
|
|
|
|
}
|
|
|
|
|
return MessageOutgoingText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case 'm.room.name':
|
|
|
|
|
return RoomNameChanged;
|
|
|
|
|
|
|
|
|
|
case 'm.room.topic':
|
|
|
|
|
return RoomTopicChanged;
|
|
|
|
|
|
|
|
|
|
case 'm.room.avatar':
|
|
|
|
|
return RoomAvatarChanged;
|
|
|
|
|
}
|
|
|
|
|
return DebugEvent;
|
|
|
|
|
},
|
|
|
|
|
|
2020-11-11 17:35:14 +01:00
|
|
|
paginateBackIfNeeded() {
|
2020-11-17 20:02:42 +01:00
|
|
|
this.$nextTick(() => {
|
|
|
|
|
const container = this.$refs.chatContainer;
|
|
|
|
|
if (container.scrollHeight <= container.clientHeight) {
|
|
|
|
|
this.handleScrolledToTop();
|
|
|
|
|
}
|
|
|
|
|
});
|
2020-11-11 17:35:14 +01:00
|
|
|
},
|
|
|
|
|
onScroll(ignoredevent) {
|
|
|
|
|
const container = this.$refs.chatContainer;
|
|
|
|
|
if (container.scrollTop == 0) {
|
|
|
|
|
// Scrolled to top
|
|
|
|
|
this.handleScrolledToTop();
|
|
|
|
|
} else if (
|
|
|
|
|
container.scrollHeight - container.scrollTop ==
|
|
|
|
|
container.clientHeight
|
|
|
|
|
) {
|
2020-11-17 20:02:42 +01:00
|
|
|
this.handleScrolledToBottom(false);
|
2020-11-11 17:35:14 +01:00
|
|
|
}
|
|
|
|
|
},
|
2020-11-09 15:08:36 +01:00
|
|
|
onEvent(event) {
|
|
|
|
|
if (event.getRoomId() !== this.roomId) {
|
|
|
|
|
return; // Not for this room
|
|
|
|
|
}
|
2020-11-11 17:35:14 +01:00
|
|
|
this.paginateBackIfNeeded();
|
2020-11-17 20:02:42 +01:00
|
|
|
|
|
|
|
|
// If we are at bottom, scroll to see new events...
|
|
|
|
|
const container = this.$refs.chatContainer;
|
|
|
|
|
if (
|
|
|
|
|
container.scrollHeight - container.scrollTop ==
|
|
|
|
|
container.clientHeight
|
|
|
|
|
) {
|
|
|
|
|
this.handleScrolledToBottom(true);
|
|
|
|
|
}
|
2020-11-09 15:08:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onUserTyping(event) {
|
2020-11-11 17:35:14 +01:00
|
|
|
if (event.getRoomId() !== this.roomId) {
|
|
|
|
|
return; // Not for this room
|
2020-11-09 10:26:56 +01:00
|
|
|
}
|
2020-11-11 17:35:14 +01:00
|
|
|
console.log("Typing:", event);
|
2020-11-09 10:26:56 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sendMessage() {
|
|
|
|
|
if (this.currentInput.length > 0) {
|
|
|
|
|
this.sendMatrixMessage(this.currentInput);
|
|
|
|
|
this.currentInput = "";
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2020-11-17 20:02:42 +01:00
|
|
|
/**
|
|
|
|
|
* Show attachment picker to select image
|
|
|
|
|
*/
|
|
|
|
|
pickAttachment(event) {
|
|
|
|
|
if (event.target.files && event.target.files[0]) {
|
|
|
|
|
var reader = new FileReader();
|
|
|
|
|
reader.onload = (e) => {
|
|
|
|
|
this.currentImageInput = e.target.result;
|
|
|
|
|
this.currentImageInputPath = event.target.files[0];
|
|
|
|
|
};
|
|
|
|
|
reader.readAsDataURL(event.target.files[0]);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onUploadProgress(p) {
|
|
|
|
|
if (p.total) {
|
|
|
|
|
this.currentSendProgress =
|
|
|
|
|
"Uploaded " + (p.loaded || 0) + " of " + p.total;
|
|
|
|
|
} else {
|
|
|
|
|
this.currentSendProgress = "Uploaded " + (p.loaded || 0);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sendAttachment() {
|
|
|
|
|
if (this.currentImageInputPath) {
|
|
|
|
|
const opts = {
|
|
|
|
|
progressHandler: this.onUploadProgress,
|
|
|
|
|
};
|
|
|
|
|
this.currentSendOperation = this.$matrix.uploadFile(
|
|
|
|
|
this.currentImageInputPath,
|
|
|
|
|
opts
|
|
|
|
|
);
|
|
|
|
|
var matrixUri;
|
|
|
|
|
this.currentSendOperation
|
|
|
|
|
.then((uri) => {
|
|
|
|
|
matrixUri = uri;
|
|
|
|
|
return this.$matrix.matrixClient.sendImageMessage(
|
|
|
|
|
this.roomId,
|
|
|
|
|
matrixUri,
|
|
|
|
|
"",
|
|
|
|
|
"Image",
|
|
|
|
|
null
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
.then((result) => {
|
|
|
|
|
console.log("Image sent: ", result);
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
console.log("Image send error: ", err);
|
|
|
|
|
if (err && err.name == "UnknownDeviceError") {
|
|
|
|
|
console.log("Unknown devices. Mark as known before retrying.");
|
|
|
|
|
var setAsKnownPromises = [];
|
|
|
|
|
for (var user of Object.keys(err.devices)) {
|
|
|
|
|
const userDevices = err.devices[user];
|
|
|
|
|
for (var deviceId of Object.keys(userDevices)) {
|
|
|
|
|
const deviceInfo = userDevices[deviceId];
|
|
|
|
|
if (!deviceInfo.known) {
|
|
|
|
|
setAsKnownPromises.push(
|
|
|
|
|
this.$matrix.matrixClient.setDeviceKnown(
|
|
|
|
|
user,
|
|
|
|
|
deviceId,
|
|
|
|
|
true
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Promise.all(setAsKnownPromises)
|
|
|
|
|
.then(() => {
|
|
|
|
|
// All devices now marked as "known", try to resend
|
|
|
|
|
return this.$matrix.matrixClient.sendImageMessage(
|
|
|
|
|
this.roomId,
|
|
|
|
|
matrixUri,
|
|
|
|
|
"",
|
|
|
|
|
"Image",
|
|
|
|
|
null
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
.then((result) => {
|
|
|
|
|
console.log("Image sent: ", result);
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
// Still error, abort
|
|
|
|
|
this.currentSendError = err.toLocaleString();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.currentSendError = err.toLocaleString();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2020-11-09 10:26:56 +01:00
|
|
|
sendMatrixMessage(body) {
|
|
|
|
|
var content = {
|
|
|
|
|
body: body,
|
2020-11-11 17:35:14 +01:00
|
|
|
msgtype: "m.text",
|
2020-11-09 10:26:56 +01:00
|
|
|
};
|
2020-11-11 17:35:14 +01:00
|
|
|
this.$matrix.matrixClient.sendEvent(
|
|
|
|
|
this.roomId,
|
2020-11-09 10:26:56 +01:00
|
|
|
"m.room.message",
|
|
|
|
|
content,
|
|
|
|
|
"",
|
|
|
|
|
(err, ignoredres) => {
|
|
|
|
|
console.log(err);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
|
2020-11-11 17:35:14 +01:00
|
|
|
handleScrolledToTop() {
|
|
|
|
|
console.log("@top");
|
|
|
|
|
if (
|
|
|
|
|
this.timelineWindow &&
|
|
|
|
|
this.timelineWindow.canPaginate(EventTimeline.BACKWARDS)
|
|
|
|
|
) {
|
|
|
|
|
this.timelineWindow
|
|
|
|
|
.paginate(EventTimeline.BACKWARDS, 10, true)
|
|
|
|
|
.then((success) => {
|
|
|
|
|
if (success) {
|
|
|
|
|
this.scrollPosition.prepareFor("up");
|
|
|
|
|
this.events = this.timelineWindow.getEvents();
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
// restore scroll position!
|
|
|
|
|
console.log("Restore scroll!");
|
|
|
|
|
this.scrollPosition.restore();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2020-11-17 20:02:42 +01:00
|
|
|
handleScrolledToBottom(scrollToEnd) {
|
2020-11-11 17:35:14 +01:00
|
|
|
console.log("@bottom");
|
2020-11-17 20:02:42 +01:00
|
|
|
if (
|
|
|
|
|
this.timelineWindow &&
|
|
|
|
|
this.timelineWindow.canPaginate(EventTimeline.FORWARDS)
|
|
|
|
|
) {
|
|
|
|
|
this.timelineWindow
|
|
|
|
|
.paginate(EventTimeline.FORWARDS, 10, true)
|
|
|
|
|
.then((success) => {
|
|
|
|
|
if (success) {
|
|
|
|
|
this.scrollPosition.prepareFor("down");
|
|
|
|
|
this.events = this.timelineWindow.getEvents();
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
// restore scroll position!
|
|
|
|
|
console.log("Restore scroll!");
|
|
|
|
|
this.scrollPosition.restore();
|
|
|
|
|
if (scrollToEnd) {
|
|
|
|
|
this.smoothScrollToEnd();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
smoothScrollToEnd() {
|
|
|
|
|
this.$nextTick(function () {
|
|
|
|
|
const container = this.$refs.chatContainer;
|
|
|
|
|
if (container.children.length > 0) {
|
|
|
|
|
const lastChild = container.children[container.children.length - 1];
|
|
|
|
|
console.log("Scroll into view", lastChild);
|
|
|
|
|
window.requestAnimationFrame(() => {
|
|
|
|
|
lastChild.scrollIntoView({
|
|
|
|
|
behavior: "smooth",
|
|
|
|
|
block: "start",
|
|
|
|
|
inline: "nearest",
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
2020-11-11 17:35:14 +01:00
|
|
|
},
|
2020-11-09 10:26:56 +01:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
@import "@/assets/css/chat.scss";
|
|
|
|
|
</style>
|