mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-12 14:47:16 +00:00
Fixes: #3564. Several UI bug fixes have been made for the gif widget: 1. Star now only appears once the gif is hovered 2. Default hover star colour is “grey” 3. Once the star is hovered, the star turns yellow 4. If the gif is favourited, the star fills in yellow 5. Removed square border around the gif 6. Added invisible padding around the star to increase the mouse surface area for hover/click 7. Added tooltip to the star for adding/removing from favourites NOTE: 1. An initial attempt at changing star state based on gif thumb hover and star hover proved unsuccessful. Changing visibility of the star had to depend on both the hover state of the thumb AND the star — relying on only the thumb hover caused a flicker. 2. Relying on the local hover state of the star and the thumb hover state caused inconsistencies where the hover state of the star would become true after not being hovered. I’m still unsure as to why this was happening. A workaround was to create a signal to a HOC as to the last hovered gif id. From there, we could rely on matching `model.id` to the last hovered gif id in the HOC.
123 lines
3.9 KiB
QML
123 lines
3.9 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.3
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import "../../imports"
|
|
|
|
|
|
Column {
|
|
id: root
|
|
spacing: 8
|
|
property alias gifList: repeater
|
|
property var gifWidth: 0
|
|
property var gifSelected: function () {}
|
|
property var toggleFavorite: function () {}
|
|
property string lastHoveredId
|
|
signal gifHovered(string id)
|
|
|
|
Repeater {
|
|
id: repeater
|
|
|
|
delegate: Rectangle {
|
|
id: thumb
|
|
property alias hovered: mouseArea.containsMouse
|
|
onHoveredChanged: {
|
|
if (hovered) {
|
|
root.gifHovered(model.id)
|
|
}
|
|
}
|
|
|
|
height: animation.status != Image.Ready ? loader.height : animation.height
|
|
width: root.gifWidth
|
|
color: Style.current.background
|
|
|
|
Rectangle {
|
|
id: loader
|
|
height: 100
|
|
width: root.gifWidth
|
|
visible: animation.status != Image.Ready
|
|
radius: Style.current.radius
|
|
rotation: 90
|
|
gradient: Gradient {
|
|
GradientStop { position: 0.0; color: "transparent" }
|
|
GradientStop { position: 1.0; color: "#E6EEF2" }
|
|
}
|
|
}
|
|
|
|
StatusBaseButton {
|
|
id: starButton
|
|
property bool favorite: model.isFavorite
|
|
|
|
type: StatusFlatRoundButton.Type.Secondary
|
|
textColor: hovered || favorite ? Style.current.yellow : Style.current.secondaryText
|
|
icon.name: favorite ? "star-icon" : "star-icon-outline"
|
|
icon.width: (14/104) * thumb.width
|
|
icon.height: (13/104) * thumb.width
|
|
topPadding: (6/104) * thumb.width
|
|
rightPadding: (6/104) * thumb.width
|
|
bottomPadding: (6/104) * thumb.width
|
|
leftPadding: (6/104) * thumb.width
|
|
color: "transparent"
|
|
visible: !loader.visible && model.id === root.lastHoveredId
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
z: 1
|
|
onClicked: {
|
|
root.toggleFavorite(model)
|
|
favorite = !favorite
|
|
}
|
|
onHoveredChanged: {
|
|
if (hovered) {
|
|
root.gifHovered(model.id)
|
|
}
|
|
}
|
|
StatusToolTip {
|
|
id: statusToolTip
|
|
text: starButton.favorite ?
|
|
qsTr("Remove from favorites") :
|
|
qsTr("Add to favorites")
|
|
visible: starButton.hovered
|
|
}
|
|
}
|
|
|
|
AnimatedImage {
|
|
id: animation
|
|
visible: animation.status == Image.Ready
|
|
source: model.tinyUrl
|
|
width: root.gifWidth
|
|
fillMode: Image.PreserveAspectFit
|
|
z: 0
|
|
layer.enabled: true
|
|
layer.effect: OpacityMask {
|
|
opacity: model.id === root.lastHoveredId ? 0.6 : 1
|
|
maskSource: Rectangle {
|
|
width: animation.width
|
|
height: animation.height
|
|
radius: Style.current.radius
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
cursorShape: Qt.PointingHandCursor
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
onClicked: function (event) {
|
|
root.gifSelected(event, model.url)
|
|
chatsModel.gif.addToRecents(model.id)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";height:440;width:360}
|
|
}
|
|
##^##*/
|