nheko/resources/qml/Reactions.qml

77 lines
1.8 KiB
QML
Raw Normal View History

2020-05-04 00:59:05 +02:00
import QtQuick 2.6
import QtQuick.Controls 2.2
Flow {
anchors.left: parent.left
anchors.right: parent.right
spacing: 4
2020-05-04 13:14:54 +02:00
property alias reactions: repeater.model
2020-05-04 00:59:05 +02:00
Repeater {
2020-05-04 13:14:54 +02:00
id: repeater
2020-05-06 03:40:24 +02:00
AbstractButton {
2020-05-04 00:59:05 +02:00
id: reaction
text: model.key
hoverEnabled: true
2020-05-06 03:40:24 +02:00
implicitWidth: contentItem.childrenRect.width + contentItem.leftPadding*2
implicitHeight: contentItem.childrenRect.height
2020-05-04 00:59:05 +02:00
ToolTip.visible: hovered
ToolTip.text: model.users
2020-05-06 03:40:24 +02:00
2020-05-04 00:59:05 +02:00
contentItem: Row {
anchors.centerIn: parent
2020-05-06 03:40:24 +02:00
spacing: reactionText.implicitHeight/4
leftPadding: reactionText.implicitHeight / 2
rightPadding: reactionText.implicitHeight / 2
TextMetrics {
id: textMetrics
font.family: settings.emojiFont
2020-05-06 03:40:24 +02:00
elide: Text.ElideRight
elideWidth: 150
text: reaction.text
}
2020-05-04 00:59:05 +02:00
Text {
anchors.baseline: reactionCounter.baseline
2020-05-04 00:59:05 +02:00
id: reactionText
2020-05-06 03:40:24 +02:00
text: textMetrics.elidedText + (textMetrics.elidedText == textMetrics.text ? "" : "…")
font.family: settings.emojiFont
2020-05-05 23:43:43 +02:00
color: reaction.hovered ? colors.highlight : colors.text
2020-05-06 03:40:24 +02:00
maximumLineCount: 1
2020-05-04 00:59:05 +02:00
}
Rectangle {
2020-05-06 03:40:24 +02:00
id: divider
height: Math.floor(reactionCounter.implicitHeight * 1.4)
2020-05-04 00:59:05 +02:00
width: 1
2020-05-05 23:43:43 +02:00
color: reaction.hovered ? colors.highlight : colors.text
2020-05-04 00:59:05 +02:00
}
Text {
2020-05-06 03:40:24 +02:00
anchors.verticalCenter: divider.verticalCenter
id: reactionCounter
2020-05-04 13:14:54 +02:00
text: model.counter
2020-05-04 00:59:05 +02:00
font: reaction.font
2020-05-05 23:43:43 +02:00
color: reaction.hovered ? colors.highlight : colors.text
2020-05-04 00:59:05 +02:00
}
}
background: Rectangle {
anchors.centerIn: parent
implicitWidth: reaction.implicitWidth
height: reaction.implicitHeight
2020-05-05 23:43:43 +02:00
border.color: (reaction.hovered || model.selfReacted )? colors.highlight : colors.text
color: colors.base
2020-05-04 00:59:05 +02:00
border.width: 1
radius: reaction.height / 2.0
}
}
}
}