mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-01 22:25:26 +02:00

This is the first in a series for cleaning up the top directory (root) of the repository and move various files/folders into nicely organized directory structures. GitLab: #749 Change-Id: If59b74fff981df242bc26e62a070bdb81d7baded
227 lines
7.8 KiB
QML
227 lines
7.8 KiB
QML
/*
|
|
* Copyright (C) 2020-2022 Savoir-faire Linux Inc.
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
import net.jami.Models 1.1
|
|
import net.jami.Constants 1.1
|
|
import net.jami.Adapters 1.1
|
|
|
|
import "../../commoncomponents"
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property alias textInput: messageBar.textAreaObj
|
|
property string previousConvId: ""
|
|
|
|
function setFilePathsToSend(filePaths) {
|
|
for (var index = 0; index < filePaths.length; ++index) {
|
|
var path = UtilsAdapter.getAbsPath(filePaths[index])
|
|
dataTransferSendContainer.filesToSendListModel.addToPending(path)
|
|
}
|
|
}
|
|
|
|
implicitHeight: footerColumnLayout.implicitHeight
|
|
|
|
color: JamiTheme.primaryBackgroundColor
|
|
|
|
Connections {
|
|
target: LRCInstance
|
|
|
|
function onSelectedConvUidChanged() {
|
|
// Handle Draft
|
|
if (previousConvId !== "") {
|
|
LRCInstance.setContentDraft(previousConvId, LRCInstance.currentAccountId,
|
|
messageBar.text);
|
|
}
|
|
|
|
// turn off the button animations when switching convs
|
|
messageBar.animate = false
|
|
|
|
messageBar.textAreaObj.clearText()
|
|
previousConvId = LRCInstance.selectedConvUid
|
|
|
|
var restoredContent = LRCInstance.getContentDraft(LRCInstance.selectedConvUid,
|
|
LRCInstance.currentAccountId);
|
|
if (restoredContent)
|
|
messageBar.textAreaObj.insertText(restoredContent)
|
|
|
|
messageBar.animate = true
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: MessagesAdapter
|
|
|
|
function onNewMessageBarPlaceholderText(placeholderText) {
|
|
messageBar.textAreaObj.placeholderText = JamiStrings.writeTo.arg(placeholderText)
|
|
}
|
|
|
|
function onNewFilePasted(filePath) {
|
|
dataTransferSendContainer.filesToSendListModel.addToPending(filePath)
|
|
}
|
|
|
|
function onNewTextPasted() {
|
|
messageBar.textAreaObj.pasteText()
|
|
}
|
|
}
|
|
|
|
RecordBox {
|
|
id: recordBox
|
|
|
|
visible: false
|
|
}
|
|
|
|
Loader {
|
|
id: empjiLoader
|
|
source: WITH_WEBENGINE ? "qrc:/commoncomponents/emojipicker/EmojiPicker.qml" : "qrc:/nowebengine/EmojiPicker.qml"
|
|
|
|
function openEmojiPicker() {
|
|
item.openEmojiPicker()
|
|
}
|
|
Connections {
|
|
target: empjiLoader.item
|
|
function onEmojiIsPicked(content) {
|
|
messageBar.textAreaObj.insertText(content)
|
|
}
|
|
}
|
|
}
|
|
|
|
JamiFileDialog {
|
|
id: jamiFileDialog
|
|
|
|
mode: JamiFileDialog.Mode.OpenFiles
|
|
|
|
onAccepted: setFilePathsToSend(jamiFileDialog.files)
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: footerColumnLayout
|
|
|
|
anchors.centerIn: root
|
|
|
|
width: root.width
|
|
|
|
spacing: 0
|
|
|
|
ReplyingContainer {
|
|
id: replyingContainer
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: footerColumnLayout.width
|
|
Layout.maximumWidth: JamiTheme.chatViewMaximumWidth
|
|
Layout.preferredHeight: 36
|
|
visible: MessagesAdapter.replyToId !== ""
|
|
}
|
|
|
|
MessageBar {
|
|
id: messageBar
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: footerColumnLayout.width
|
|
Layout.preferredHeight: implicitHeight
|
|
|
|
sendButtonVisibility: text ||
|
|
dataTransferSendContainer.filesToSendCount
|
|
|
|
onEmojiButtonClicked: {
|
|
JamiQmlUtils.updateMessageBarButtonsPoints()
|
|
|
|
empjiLoader.parent = JamiQmlUtils.mainViewRectObj
|
|
|
|
empjiLoader.x = Qt.binding(function() {
|
|
var buttonX = JamiQmlUtils.emojiPickerButtonInMainViewPoint.x +
|
|
JamiQmlUtils.emojiPickerButtonObj.width
|
|
return buttonX - empjiLoader.width
|
|
})
|
|
empjiLoader.y = Qt.binding(function() {
|
|
var buttonY = JamiQmlUtils.audioRecordMessageButtonInMainViewPoint.y
|
|
return buttonY - empjiLoader.height - messageBar.marginSize
|
|
- JamiTheme.chatViewHairLineSize
|
|
})
|
|
|
|
empjiLoader.openEmojiPicker()
|
|
}
|
|
onSendFileButtonClicked: jamiFileDialog.open()
|
|
onSendMessageButtonClicked: {
|
|
// Send text message
|
|
if (messageBar.text)
|
|
MessagesAdapter.sendMessage(messageBar.text)
|
|
messageBar.textAreaObj.clearText()
|
|
|
|
// Send file messages
|
|
var fileCounts = dataTransferSendContainer.filesToSendListModel.rowCount()
|
|
for (var i = 0; i < fileCounts; i++) {
|
|
var currentIndex = dataTransferSendContainer.filesToSendListModel.index(i, 0)
|
|
var filePath = dataTransferSendContainer.filesToSendListModel.data(
|
|
currentIndex, FilesToSend.FilePath)
|
|
MessagesAdapter.sendFile(filePath)
|
|
}
|
|
dataTransferSendContainer.filesToSendListModel.flush()
|
|
}
|
|
onVideoRecordMessageButtonClicked: {
|
|
JamiQmlUtils.updateMessageBarButtonsPoints()
|
|
|
|
recordBox.parent = JamiQmlUtils.mainViewRectObj
|
|
|
|
recordBox.x = Qt.binding(function() {
|
|
var buttonCenterX = JamiQmlUtils.videoRecordMessageButtonInMainViewPoint.x +
|
|
JamiQmlUtils.videoRecordMessageButtonObj.width / 2
|
|
return buttonCenterX - recordBox.width / 2
|
|
})
|
|
recordBox.y = Qt.binding(function() {
|
|
var buttonY = JamiQmlUtils.videoRecordMessageButtonInMainViewPoint.y
|
|
return buttonY - recordBox.height - recordBox.spikeHeight
|
|
})
|
|
|
|
recordBox.openRecorder(true)
|
|
}
|
|
onAudioRecordMessageButtonClicked: {
|
|
JamiQmlUtils.updateMessageBarButtonsPoints()
|
|
|
|
recordBox.parent = JamiQmlUtils.mainViewRectObj
|
|
|
|
recordBox.x = Qt.binding(function() {
|
|
var buttonCenterX = JamiQmlUtils.audioRecordMessageButtonInMainViewPoint.x +
|
|
JamiQmlUtils.audioRecordMessageButtonObj.width / 2
|
|
return buttonCenterX - recordBox.width / 2
|
|
})
|
|
recordBox.y = Qt.binding(function() {
|
|
var buttonY = JamiQmlUtils.audioRecordMessageButtonInMainViewPoint.y
|
|
return buttonY - recordBox.height - recordBox.spikeHeight
|
|
})
|
|
|
|
recordBox.openRecorder(false)
|
|
}
|
|
}
|
|
|
|
FilesToSendContainer {
|
|
id: dataTransferSendContainer
|
|
|
|
objectName: "dataTransferSendContainer"
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: footerColumnLayout.width
|
|
Layout.maximumWidth: JamiTheme.chatViewMaximumWidth
|
|
Layout.preferredHeight: filesToSendCount ?
|
|
JamiTheme.chatViewFooterFileContainerPreferredHeight : 0
|
|
}
|
|
}
|
|
}
|