diff options
author | link2xt <link2xt@testrun.org> | 2020-09-12 14:10:13 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2020-10-03 00:20:03 +0300 |
commit | b8762ddb38dd975b0acb217b793594dfed83a824 (patch) | |
tree | 23ccefbba703fed6c07acce82ff72e32ba77c9ba /qml/ChatPage.qml | |
download | kdeltachat-b8762ddb38dd975b0acb217b793594dfed83a824.tar.gz kdeltachat-b8762ddb38dd975b0acb217b793594dfed83a824.zip |
Initial commit
Diffstat (limited to 'qml/ChatPage.qml')
-rw-r--r-- | qml/ChatPage.qml | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/qml/ChatPage.qml b/qml/ChatPage.qml new file mode 100644 index 0000000..83f595c --- /dev/null +++ b/qml/ChatPage.qml @@ -0,0 +1,156 @@ +import QtQuick 2.14 +import QtQuick.Controls 2.14 +import QtQuick.Layouts 1.14 +import QtQml.Models 2.1 +import org.kde.kirigami 2.12 as Kirigami + +import DeltaChat 1.0 + +Kirigami.Page { + id: chatPage + + title: messageListView.chat ? messageListView.chat.name : qsTr("Chat") + + property var chatId + readonly property DcChat chat: context.getChat(chatId) + + function updateMessagelist() { + // Reverse message list, because it is laid out from bottom to top. + let messagelist = context.getMsgIdList(chatId).reverse() + + for (let i = 0; i < messagelist.length; i++) { + const msgId = messagelist[i] + + const item = { + msgId: msgId + } + + let j; + for (j = i; j < messagelistModel.count; j++) { + if (messagelistModel.get(j).msgId == msgId) { + messagelistModel.move(j, i, 1) + messagelistModel.set(i, item) + break + } + } + + if (j == messagelistModel.count) { + messagelistModel.insert(i, item) + } + } + + if (messagelistModel.count > messagelist.length) { + messagelistModel.remove(messagelist.length, + messagelistModel.count - messagelist.length) + } + } + + signal chatModified() + onChatModified: { + console.log("CHAT MODIFIED!") + } + + signal incomingEvent() + onIncomingEvent: { + console.log("EVENT!") + } + + ListModel { + id: messagelistModel + } + + signal incomingMessage() + onIncomingMessage: { + console.log("Incoming message for chat " + chatId) + + if (chatId == chatPage.chatId) { + updateMessagelist() + } + } + + signal messagesChanged(var accountId, int chatId, int msgId) + onMessagesChanged: { + console.log("Messages changed for chat " + chatId) + + if (chatId == chatPage.chatId) { + updateMessagelist() + } + } + + Component.onCompleted: { + eventEmitter.onIncomingEvent.connect(incomingEvent) + eventEmitter.onChatModified.connect(chatModified) + eventEmitter.onIncomingMessage.connect(incomingMessage) + eventEmitter.onMessagesChanged.connect(messagesChanged) + + updateMessagelist() + } + + background: Rectangle { + color: Kirigami.Theme.alternateBackgroundColor + anchors.fill: parent + } + + Component { + id: composePane + + Pane { + Layout.fillWidth: true + + RowLayout { + width: parent.width + + TextField { + id: messageField + + Layout.fillWidth: true + placeholderText: qsTr("Message") + wrapMode: TextArea.Wrap + selectByMouse: true + } + + Button { + id: sendButton + + icon.name: "document-send" + text: qsTr("Send") + enabled: messageField.length > 0 + onClicked: { + context.sendTextMessage(chatId, messageField.text) + messageField.text = "" + } + } + } + } + } + + ListView { + id: messageListView + + anchors.fill: parent + spacing: 10 + + model: messagelistModel + + /* + * Messages are laid out bottom to top, because their height + * is not known in advance. + * + * Attempts to lay out messages top to bottom and scroll to the + * bottom of the list with ListView.positionViewAtEnd() result in + * imprecise scrollbar position, because this method estimates + * item height from the height of currently visible messages. + */ + verticalLayoutDirection: ListView.BottomToTop + + delegate: Message {message: context.getMessage(msgId)} + + ScrollBar.vertical: ScrollBar {} + } + + footer: Loader { + sourceComponent: composePane + Layout.fillWidth: true + visible: chat && chat.canSend + } +} |