mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-23 08:55:26 +02:00

Even if the luma can change due to Qt.lighter, we should keep the same text color as we have for other messages. Change-Id: Ie1178b673043ee281b382150bb808878fc0aa75c GitLab: #1136
120 lines
3.7 KiB
QML
120 lines
3.7 KiB
QML
/*
|
|
* Copyright (C) 2022-2023 Savoir-faire Linux Inc.
|
|
* Author: Sébastien Blin <sebastien.blin@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.Controls
|
|
import QtQuick.Layouts
|
|
import net.jami.Models 1.1
|
|
import net.jami.Adapters 1.1
|
|
import net.jami.Constants 1.1
|
|
|
|
SBSMessageBase {
|
|
id: root
|
|
|
|
component JoinCallButton: PushButton {
|
|
visible: root.isActive
|
|
toolTipText: JamiStrings.joinCall
|
|
preferredSize: 40
|
|
imageColor: callLabel.color
|
|
normalColor: "transparent"
|
|
hoveredColor: Qt.rgba(255, 255, 255, 0.2)
|
|
border.width: 1
|
|
border.color: callLabel.color
|
|
}
|
|
|
|
property bool isRemoteImage
|
|
|
|
isOutgoing: Author === CurrentAccount.uri
|
|
author: Author
|
|
readers: Readers
|
|
formattedTime: MessagesAdapter.getFormattedTime(Timestamp)
|
|
|
|
Connections {
|
|
target: CurrentConversation
|
|
enabled: root.isActive
|
|
|
|
function onActiveCallsChanged() {
|
|
root.isActive = LRCInstance.indexOfActiveCall(ConfId, ActionUri, DeviceId) !== -1;
|
|
}
|
|
}
|
|
|
|
property bool isActive: LRCInstance.indexOfActiveCall(ConfId, ActionUri, DeviceId) !== -1
|
|
visible: isActive || ConfId === "" || Duration > 0
|
|
|
|
property var baseColor: isOutgoing? CurrentConversation.color : JamiTheme.messageInBgColor
|
|
bubble.color: {
|
|
if (ConfId === "" && Duration === 0) {
|
|
// If missed, we can add a darker pattern
|
|
return Qt.lighter(root.baseColor, 1.15)
|
|
}
|
|
return root.baseColor
|
|
}
|
|
|
|
innerContent.children: [
|
|
RowLayout {
|
|
id: msg
|
|
anchors.right: isOutgoing ? parent.right : undefined
|
|
spacing: 10
|
|
visible: root.visible
|
|
|
|
Label {
|
|
id: callLabel
|
|
padding: 10
|
|
Layout.margins: 8
|
|
Layout.fillWidth: true
|
|
|
|
text: {
|
|
if (root.isActive)
|
|
return JamiStrings.joinCall;
|
|
return Body;
|
|
}
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
font.pixelSize: JamiTheme.emojiBubbleSize
|
|
font.hintingPreference: Font.PreferNoHinting
|
|
font.bold: true
|
|
renderType: Text.NativeRendering
|
|
textFormat: Text.MarkdownText
|
|
|
|
color: UtilsAdapter.luma(root.baseColor) ? JamiTheme.chatviewTextColorLight : JamiTheme.chatviewTextColorDark
|
|
}
|
|
|
|
JoinCallButton {
|
|
id: joinCallInAudio
|
|
|
|
source: JamiResources.place_audiocall_24dp_svg
|
|
onClicked: MessagesAdapter.joinCall(ActionUri, DeviceId, ConfId, true)
|
|
}
|
|
|
|
JoinCallButton {
|
|
id: joinCallInVideo
|
|
|
|
source: JamiResources.videocam_24dp_svg
|
|
onClicked: MessagesAdapter.joinCall(ActionUri, DeviceId, ConfId)
|
|
Layout.rightMargin: parent.spacing
|
|
}
|
|
}
|
|
]
|
|
|
|
opacity: 0
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: 100
|
|
}
|
|
}
|
|
Component.onCompleted: opacity = 1
|
|
}
|