mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Render custom reactions
This commit is contained in:
parent
f48c696baf
commit
2f1b3519d3
1 changed files with 12 additions and 6 deletions
|
@ -26,8 +26,6 @@ Flow {
|
|||
id: reaction
|
||||
|
||||
hoverEnabled: true
|
||||
implicitWidth: contentItem.childrenRect.width + contentItem.leftPadding * 2
|
||||
implicitHeight: contentItem.childrenRect.height
|
||||
ToolTip.visible: hovered
|
||||
ToolTip.delay: Nheko.tooltipDelay
|
||||
onClicked: {
|
||||
|
@ -42,12 +40,11 @@ Flow {
|
|||
return modelData.displayKey + "\n" + modelData.users;
|
||||
})
|
||||
}
|
||||
leftPadding: textMetrics.height / 2
|
||||
rightPadding: textMetrics.height / 2
|
||||
|
||||
contentItem: Row {
|
||||
anchors.centerIn: parent
|
||||
spacing: reactionText.implicitHeight / 4
|
||||
leftPadding: reactionText.implicitHeight / 2
|
||||
rightPadding: reactionText.implicitHeight / 2
|
||||
spacing: textMetrics.height / 4
|
||||
|
||||
TextMetrics {
|
||||
id: textMetrics
|
||||
|
@ -74,6 +71,15 @@ Flow {
|
|||
font.family: Settings.emojiFont
|
||||
color: (reaction.hovered || modelData.selfReactedEvent !== '') ? Nheko.colors.highlightedText: Nheko.colors.text
|
||||
maximumLineCount: 1
|
||||
visible: !modelData.key.startsWith("mxc://")
|
||||
}
|
||||
Image {
|
||||
anchors.verticalCenter: divider.verticalCenter
|
||||
height: textMetrics.height
|
||||
width: textMetrics.height
|
||||
source: modelData.key.startsWith("mxc://") ? (modelData.key.replace("mxc://", "image://MxcImage/") + "?scale") : ""
|
||||
visible: modelData.key.startsWith("mxc://")
|
||||
fillMode: Image.PreserveAspectFit
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
|
Loading…
Reference in a new issue