mirror of https://github.com/status-im/StatusQ.git
feat(StatusChatListItem): add `highlighted` property
Similar to other controls and components, chat list items can be in a `highlighted` state, for example when popup menus are active. Closes #178
This commit is contained in:
parent
34b35318bc
commit
44343d3857
|
@ -18,6 +18,7 @@ Rectangle {
|
||||||
color: Theme.palette.miscColor5
|
color: Theme.palette.miscColor5
|
||||||
}
|
}
|
||||||
property int type: StatusChatListItem.Type.PublicChat
|
property int type: StatusChatListItem.Type.PublicChat
|
||||||
|
property bool highlighted: false
|
||||||
property bool selected: false
|
property bool selected: false
|
||||||
|
|
||||||
signal clicked(var mouse)
|
signal clicked(var mouse)
|
||||||
|
@ -39,7 +40,7 @@ Rectangle {
|
||||||
if (selected) {
|
if (selected) {
|
||||||
return Theme.palette.statusChatListItem.selectedBackgroundColor
|
return Theme.palette.statusChatListItem.selectedBackgroundColor
|
||||||
}
|
}
|
||||||
return sensor.containsMouse ? Theme.palette.statusChatListItem.hoverBackgroundColor : Theme.palette.baseColor4
|
return sensor.containsMouse || highlighted ? Theme.palette.statusChatListItem.hoverBackgroundColor : Theme.palette.baseColor4
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
@ -47,6 +48,7 @@ Rectangle {
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
cursorShape: Qt.PointingHandCursor
|
cursorShape: Qt.PointingHandCursor
|
||||||
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
|
|
||||||
onClicked: statusChatListItem.clicked(mouse)
|
onClicked: statusChatListItem.clicked(mouse)
|
||||||
|
@ -101,12 +103,13 @@ Rectangle {
|
||||||
width: 14
|
width: 14
|
||||||
visible: statusChatListItem.type !== StatusChatListItem.Type.OneToOneChat
|
visible: statusChatListItem.type !== StatusChatListItem.Type.OneToOneChat
|
||||||
opacity: {
|
opacity: {
|
||||||
if (statusChatListItem.muted && !sensor.containsMouse) {
|
if (statusChatListItem.muted && !sensor.containsMouse && !statusChatListItem.highlighted) {
|
||||||
return 0.4
|
return 0.4
|
||||||
}
|
}
|
||||||
return statusChatListItem.hasMention ||
|
return statusChatListItem.hasMention ||
|
||||||
statusChatListItem.hasUnreadMessages ||
|
statusChatListItem.hasUnreadMessages ||
|
||||||
statusChatListItem.selected ||
|
statusChatListItem.selected ||
|
||||||
|
statusChatListItem.highlighted ||
|
||||||
statusBadge.visible ||
|
statusBadge.visible ||
|
||||||
sensor.containsMouse ? 1.0 : 0.7
|
sensor.containsMouse ? 1.0 : 0.7
|
||||||
}
|
}
|
||||||
|
@ -136,12 +139,13 @@ Rectangle {
|
||||||
|
|
||||||
text: statusChatListItem.name
|
text: statusChatListItem.name
|
||||||
color: {
|
color: {
|
||||||
if (statusChatListItem.muted && !sensor.containsMouse) {
|
if (statusChatListItem.muted && !sensor.containsMouse && !statusChatListItem.highlighted) {
|
||||||
return Theme.palette.directColor5
|
return Theme.palette.directColor5
|
||||||
}
|
}
|
||||||
return statusChatListItem.hasMention ||
|
return statusChatListItem.hasMention ||
|
||||||
statusChatListItem.hasUnreadMessages ||
|
statusChatListItem.hasUnreadMessages ||
|
||||||
statusChatListItem.selected ||
|
statusChatListItem.selected ||
|
||||||
|
statusChatListItem.highlighted ||
|
||||||
sensor.containsMouse ||
|
sensor.containsMouse ||
|
||||||
statusBadge.visible ? Theme.palette.directColor1 : Theme.palette.directColor4
|
statusBadge.visible ? Theme.palette.directColor1 : Theme.palette.directColor4
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue