matrixion/resources/qml/Reactions.qml

114 lines
4.5 KiB
QML
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.6
import QtQuick.Controls 2.2
2020-06-24 17:24:22 +03:00
import im.nheko 1.0
// This class is for showing Reactions in the timeline row, not for
// adding new reactions via the emoji picker
2020-05-04 01:59:05 +03:00
Flow {
2020-10-08 22:11:21 +03:00
id: reactionFlow
2023-06-02 02:45:24 +03:00
property string eventId
// lower-contrast colors to avoid distracting from text & to enhance hover effect
property color gentleHighlight: Qt.hsla(palette.highlight.hslHue, palette.highlight.hslSaturation, palette.highlight.hslLightness, 0.8)
property color gentleText: Qt.hsla(palette.text.hslHue, palette.text.hslSaturation, palette.text.hslLightness, 0.6)
2020-10-08 22:11:21 +03:00
property alias reactions: repeater.model
spacing: 4
Repeater {
id: repeater
delegate: AbstractButton {
id: reaction
ToolTip.delay: Nheko.tooltipDelay
2023-06-02 02:45:24 +03:00
ToolTip.visible: hovered
hoverEnabled: true
leftPadding: textMetrics.height / 2
rightPadding: textMetrics.height / 2
2020-10-08 22:11:21 +03:00
2023-06-02 02:45:24 +03:00
background: Rectangle {
anchors.centerIn: parent
border.color: reaction.hovered ? palette.text : gentleText
border.width: 1
color: reaction.hovered ? palette.highlight : (modelData.selfReactedEvent !== '' ? gentleHighlight : palette.window)
implicitHeight: reaction.implicitHeight
implicitWidth: reaction.implicitWidth
radius: reaction.height / 2
}
2020-10-08 22:11:21 +03:00
contentItem: Row {
2023-05-27 04:10:02 +03:00
spacing: textMetrics.height / 4
2020-10-08 22:11:21 +03:00
TextMetrics {
id: textMetrics
elide: Text.ElideRight
elideWidth: 150
2023-06-02 02:45:24 +03:00
font.family: Settings.emojiFont
text: modelData.displayKey
2020-10-08 22:11:21 +03:00
}
Text {
id: reactionText
anchors.baseline: reactionCounter.baseline
2023-06-02 02:45:24 +03:00
color: (reaction.hovered || modelData.selfReactedEvent !== '') ? palette.highlightedText : palette.text
font.family: Settings.emojiFont
maximumLineCount: 1
text: {
// When an emoji font is selected that doesn't have …, it is dropped from elidedText. So we add it back.
if (textMetrics.elidedText !== modelData.displayKey) {
if (!textMetrics.elidedText.endsWith("…")) {
return textMetrics.elidedText + "…";
}
}
return textMetrics.elidedText;
}
2023-05-27 04:10:02 +03:00
visible: !modelData.key.startsWith("mxc://")
}
Image {
anchors.verticalCenter: divider.verticalCenter
2023-06-02 02:45:24 +03:00
fillMode: Image.PreserveAspectFit
2023-05-27 04:10:02 +03:00
height: textMetrics.height
source: modelData.key.startsWith("mxc://") ? (modelData.key.replace("mxc://", "image://MxcImage/") + "?scale") : ""
visible: modelData.key.startsWith("mxc://")
2023-06-02 02:45:24 +03:00
width: textMetrics.height
2023-07-22 21:08:14 +03:00
mipmap: true
2020-10-08 22:11:21 +03:00
}
Rectangle {
id: divider
2023-06-02 02:45:24 +03:00
color: reaction.hovered ? palette.text : gentleText
2020-10-08 22:11:21 +03:00
height: Math.floor(reactionCounter.implicitHeight * 1.4)
width: 1
}
Text {
id: reactionCounter
anchors.verticalCenter: divider.verticalCenter
2023-06-02 02:45:24 +03:00
color: (reaction.hovered || modelData.selfReactedEvent !== '') ? palette.highlightedText : palette.windowText
2020-10-08 22:11:21 +03:00
font: reaction.font
2023-06-02 02:45:24 +03:00
text: modelData.count
2020-10-08 22:11:21 +03:00
}
}
2023-06-02 02:45:24 +03:00
Component.onCompleted: {
ToolTip.text = Qt.binding(function () {
if (textMetrics.elidedText === textMetrics.text) {
return modelData.users;
}
return modelData.displayKey + "\n" + modelData.users;
});
}
onClicked: {
console.debug("Picked " + modelData.key + "in response to " + reactionFlow.eventId + ". selfReactedEvent: " + modelData.selfReactedEvent);
room.input.reaction(reactionFlow.eventId, modelData.key);
2020-10-08 22:11:21 +03:00
}
}
}
}