status-desktop/ui/app/AppLayouts/Chat/ContactsColumn/ChannelList.qml

110 lines
3.2 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
2020-05-28 11:06:17 +00:00
import "../../../../shared"
import "../../../../imports"
import "../components"
import "./"
2020-05-28 11:06:17 +00:00
Item {
2020-12-11 20:29:46 +00:00
property var channelModel
2020-05-28 11:06:17 +00:00
property alias channelListCount: chatGroupsListView.count
property string searchStr: ""
2020-12-11 20:29:46 +00:00
id: channelListContent
width: parent.width
height: childrenRect.height
Timer {
id: timer
}
2020-12-11 20:29:46 +00:00
ListView {
id: chatGroupsListView
2021-02-10 20:41:00 +00:00
spacing: appSettings.useCompactMode ? 4 : Style.current.halfPadding
anchors.top: parent.top
2020-12-11 20:29:46 +00:00
height: childrenRect.height
2021-02-10 20:41:00 +00:00
visible: height > (appSettings.useCompactMode ? 30 : 50)
anchors.right: parent.right
anchors.left: parent.left
2020-12-11 20:29:46 +00:00
interactive: false
model: channelListContent.channelModel
delegate: Channel {
name: model.name
muted: model.muted
lastMessage: model.lastMessage
timestamp: model.timestamp
chatType: model.chatType
identicon: model.identicon
unviewedMessagesCount: model.unviewedMessagesCount
hasMentions: model.hasMentions
contentType: model.contentType
searchStr: channelListContent.searchStr
chatId: model.id
}
onCountChanged: {
if (count > 0 && chatsModel.activeChannelIndex > -1) {
currentIndex = chatsModel.activeChannelIndex;
2020-12-11 20:29:46 +00:00
} else {
if (chatsModel.activeChannelIndex > -1) {
chatGroupsListView.currentIndex = 0;
} else {
2020-12-11 20:29:46 +00:00
// Initial state. No chat has been selected yet
chatGroupsListView.currentIndex = -1;
}
}
}
2020-12-11 20:29:46 +00:00
}
2020-12-11 20:29:46 +00:00
Rectangle {
id: noSearchResults
anchors.top: parent.top
height: visible ? 300 : 0
color: "transparent"
visible: !chatGroupsListView.visible && channelListContent.searchStr !== ""
anchors.left: parent.left
anchors.right: parent.right
2020-12-11 20:29:46 +00:00
StyledText {
font.pixelSize: 15
color: Style.current.darkGrey
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
2021-02-18 16:36:05 +00:00
//% "No search results"
text: qsTrId("no-search-results")
2020-09-23 19:11:27 +00:00
}
}
ChannelContextMenu {
2020-08-03 19:05:49 +00:00
id: channelContextMenu
}
Connections {
target: chatsModel.chats
onDataChanged: {
// If the current active channel receives messages and changes its position,
// refresh the currentIndex accordingly
if(chatsModel.activeChannelIndex !== chatGroupsListView.currentIndex){
chatGroupsListView.currentIndex = chatsModel.activeChannelIndex
2020-05-28 14:58:25 +00:00
}
}
2020-05-28 11:06:17 +00:00
}
Connections {
target: chatsModel
onActiveChannelChanged: {
chatsModel.hideLoadingIndicator()
chatGroupsListView.currentIndex = chatsModel.activeChannelIndex
2020-07-10 22:22:39 +00:00
SelectedMessage.reset();
chatColumn.isReply = false;
}
}
2020-12-11 20:29:46 +00:00
2020-06-17 19:18:31 +00:00
}
2020-12-11 20:29:46 +00:00
2020-06-17 19:18:31 +00:00
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
}
##^##*/