2020-11-19 14:59:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtGraphicalEffects 1.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
2021-10-20 10:03:09 +00:00
|
|
|
import StatusQ.Controls 0.1
|
2021-10-21 23:34:35 +00:00
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Core 0.1
|
2021-10-20 10:03:09 +00:00
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
2020-11-19 14:59:31 +00:00
|
|
|
|
2021-10-14 11:33:34 +00:00
|
|
|
// TODO: replace with StatusModal
|
2020-11-19 14:59:31 +00:00
|
|
|
ModalPopup {
|
|
|
|
id: root
|
2022-04-04 11:26:30 +00:00
|
|
|
title: qsTr("Muted chats")
|
2021-12-28 14:43:25 +00:00
|
|
|
|
|
|
|
property var model: []
|
2021-07-20 16:01:22 +00:00
|
|
|
property string noContentText: ""
|
2020-11-19 14:59:31 +00:00
|
|
|
|
2021-12-28 14:43:25 +00:00
|
|
|
signal unmuteChat(string chatId)
|
|
|
|
|
2020-11-19 14:59:31 +00:00
|
|
|
onClosed: {
|
|
|
|
root.destroy()
|
|
|
|
}
|
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
StatusListView {
|
2020-11-19 14:59:31 +00:00
|
|
|
id: mutedChatsList
|
2021-12-28 14:43:25 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
model: root.model
|
2020-11-19 14:59:31 +00:00
|
|
|
delegate: Rectangle {
|
2021-03-19 10:25:29 +00:00
|
|
|
id: channelItem
|
|
|
|
property bool isHovered: false
|
2020-11-19 14:59:31 +00:00
|
|
|
height: contactImage.height + Style.current.smallPadding * 2
|
2021-01-21 18:07:01 +00:00
|
|
|
width: parent.width
|
2021-03-19 10:25:29 +00:00
|
|
|
radius: Style.current.radius
|
|
|
|
color: isHovered ? Style.current.backgroundHover : Style.current.transparent
|
2020-11-19 14:59:31 +00:00
|
|
|
|
2021-10-21 23:34:35 +00:00
|
|
|
StatusSmartIdenticon {
|
2020-11-19 14:59:31 +00:00
|
|
|
id: contactImage
|
|
|
|
anchors.left: parent.left
|
2021-03-19 10:25:29 +00:00
|
|
|
anchors.leftMargin: Style.current.smallPadding
|
2020-11-19 14:59:31 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2022-08-11 11:55:08 +00:00
|
|
|
asset.width: 40
|
|
|
|
asset.height: 40
|
|
|
|
asset.name: model.icon
|
|
|
|
asset.isLetterIdenticon: asset.name === ""
|
|
|
|
asset.letterSize: 15
|
|
|
|
asset.color: Theme.palette.miscColor5
|
2021-10-21 23:34:35 +00:00
|
|
|
name: model.name
|
2020-11-19 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: contactInfo
|
2021-12-28 14:43:25 +00:00
|
|
|
text: model.name
|
2020-11-19 14:59:31 +00:00
|
|
|
anchors.right: unmuteButton.left
|
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
|
|
|
elide: Text.ElideRight
|
2021-03-19 10:25:29 +00:00
|
|
|
font.pixelSize: 15
|
2020-11-19 14:59:31 +00:00
|
|
|
anchors.left: contactImage.right
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
}
|
|
|
|
|
2021-03-19 10:25:29 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
hoverEnabled: true
|
|
|
|
onEntered: channelItem.isHovered = true
|
|
|
|
onExited: channelItem.isHovered = false
|
|
|
|
}
|
|
|
|
|
2021-10-20 10:03:09 +00:00
|
|
|
StatusFlatButton {
|
2020-11-19 14:59:31 +00:00
|
|
|
id: unmuteButton
|
|
|
|
anchors.right: parent.right
|
2021-03-19 10:25:29 +00:00
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
2020-11-19 14:59:31 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Unmute")
|
2021-07-13 09:11:08 +00:00
|
|
|
|
2021-03-19 10:25:29 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
hoverEnabled: true
|
|
|
|
onEntered: {
|
|
|
|
channelItem.isHovered = true
|
|
|
|
}
|
2021-07-13 09:11:08 +00:00
|
|
|
onClicked: {
|
2021-12-28 14:43:25 +00:00
|
|
|
root.unmuteChat(model.itemId)
|
2021-07-13 09:11:08 +00:00
|
|
|
}
|
2021-03-19 10:25:29 +00:00
|
|
|
}
|
2020-11-19 14:59:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-20 16:01:22 +00:00
|
|
|
|
|
|
|
StyledText {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
visible: (mutedChatsList.count === 0)
|
|
|
|
text: root.noContentText
|
|
|
|
}
|
2020-11-19 14:59:31 +00:00
|
|
|
}
|