/* * RetroShare Android QML App * Copyright (C) 2016-2017 Gioacchino Mazzurco * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import QtQuick 2.7 import QtQuick.Controls 2.0 import org.retroshare.qml_components.LibresapiLocalClient 1.0 import "." //Needed for TokensManager singleton Item { id: chatView property string chatId property int token: 0 property string objectName:"chatView" function refreshData() { console.log("chatView.refreshData()", visible) if(!visible) return rsApi.request( "/chat/messages/"+chatId, "", function(par) { chatModel.json = par.response token = JSON.parse(par.response).statetoken TokensManager.registerToken(token, refreshData) ChatCache.lastMessageCache.updateLastMessageCache(chatId, chatModel.json) if(chatListView.visible) { chatListView.positionViewAtEnd() rsApi.request("/chat/mark_chat_as_read/"+chatId) } } ) } Component.onCompleted: refreshData() onFocusChanged: focus && refreshData() JSONListModel { id: chatModel query: "$.data[*]" } ListView { id: chatListView width: parent.width - 7 anchors.horizontalCenter: parent.horizontalCenter height: 300 model: chatModel.model delegate: ChatBubbleDelegate {} spacing: 3 preferredHighlightBegin: 1 } TextField { id: msgComposer anchors.bottom: parent.bottom anchors.left: parent.left width: chatView.width - sendButton.width } Button { id: sendButton text: "Send" anchors.bottom: parent.bottom anchors.right: parent.right onClicked: { var jsonData = {"chat_id":chatView.chatId, "msg":msgComposer.text} rsApi.request( "/chat/send_message", JSON.stringify(jsonData), function(par) { msgComposer.text = ""; } ) } } }