mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-27 16:59:21 +00:00
77 lines
2.2 KiB
QML
77 lines
2.2 KiB
QML
import QtCore
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Linphone
|
|
import UtilsCpp
|
|
|
|
MessageInfosLayout {
|
|
id: mainItem
|
|
spacing: Math.round(25 * DefaultStyle.dp)
|
|
|
|
//: Reactions
|
|
title: qsTr("message_details_reactions_title")
|
|
tabbarModel: chatMessageGui ? chatMessageGui.core.reactionsSingletonAsStrings : []
|
|
listModel: EmojiProxy {
|
|
reactions: chatMessageGui ? chatMessageGui.core.reactions : []
|
|
// First index of reactionsSingletonAsStrings list is all reactions combined which does not appear
|
|
// in reactionsSingleton list
|
|
filter: tabbar.currentIndex >=1 && chatMessageGui && chatMessageGui.core.reactionsSingleton[tabbar.currentIndex-1].body || ""
|
|
}
|
|
listView.delegate: Item {
|
|
width: listView.width
|
|
height: delegateIn.implicitHeight
|
|
property var contactObj: modelData ? UtilsCpp.findFriendByAddress(modelData.address) : null
|
|
property var nameObj: modelData ? UtilsCpp.getDisplayName(modelData.address) : null
|
|
property var isMeObj: modelData ? UtilsCpp.isMe(modelData.address) : null
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
enabled: isMeObj && isMeObj.value
|
|
cursorShape: containsMouse ? Qt.PointingHandCursor : Qt.ArrowCursor
|
|
hoverEnabled: true
|
|
onClicked: mainItem.chatMessageGui.core.lRemoveReaction()
|
|
}
|
|
RowLayout {
|
|
id: delegateIn
|
|
anchors.fill: parent
|
|
spacing: Math.round(16 * DefaultStyle.dp)
|
|
Avatar {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
contact: contactObj?.value || null
|
|
displayNameVal: contact
|
|
? ""
|
|
: nameObj
|
|
? nameObj.value
|
|
: ""
|
|
Layout.preferredWidth: Math.round(45 * DefaultStyle.dp)
|
|
Layout.preferredHeight: Math.round(45 * DefaultStyle.dp)
|
|
}
|
|
ColumnLayout {
|
|
Text {
|
|
text: nameObj?.value || ""
|
|
font {
|
|
pixelSize: Typography.p1.pixelSize
|
|
weight: Typography.p1.weight
|
|
}
|
|
}
|
|
Text {
|
|
visible: isMeObj && isMeObj.value
|
|
//: Click to delete
|
|
text: qsTr("click_to_delete_reaction_info")
|
|
color: DefaultStyle.main2_400
|
|
font {
|
|
pixelSize: Typography.p3.pixelSize
|
|
weight: Typography.p3.weight
|
|
}
|
|
}
|
|
}
|
|
Item{Layout.fillWidth: true}
|
|
Text {
|
|
text: UtilsCpp.encodeEmojiToQmlRichFormat(modelData.body)
|
|
font {
|
|
pixelSize: Typography.h3.pixelSize
|
|
weight: Typography.p3.weight
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|