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

95 lines
2.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
import "../../../imports"
import "../../../shared"
import "./components"
import "./ContactsColumn"
Item {
2020-05-28 11:06:17 +00:00
property alias chatGroupsListViewCount: channelList.channelListCount
property alias searchStr: searchBox.text
id: contactsColumn
2020-05-27 18:40:58 +00:00
Layout.fillHeight: true
StyledText {
2020-05-27 18:40:58 +00:00
id: title
//% "Chat"
text: qsTrId("chat")
2020-05-27 18:40:58 +00:00
anchors.top: parent.top
2020-07-15 19:38:03 +00:00
anchors.topMargin: Style.current.padding
2020-05-27 18:40:58 +00:00
anchors.horizontalCenter: parent.horizontalCenter
2020-07-15 19:38:03 +00:00
font.weight: Font.Bold
2020-05-27 18:40:58 +00:00
font.pixelSize: 17
}
PublicChatPopup {
id: publicChatPopup
}
2020-06-17 15:56:48 +00:00
GroupChatPopup {
id: groupChatPopup
}
2020-05-28 12:56:43 +00:00
PrivateChatPopup {
id: privateChatPopup
}
2020-05-28 11:19:18 +00:00
SearchBox {
2020-05-27 18:40:58 +00:00
id: searchBox
2020-07-15 19:38:03 +00:00
anchors.top: title.bottom
anchors.topMargin: Style.current.padding
anchors.right: addChat.left
anchors.rightMargin: Style.current.padding
anchors.left: parent.left
anchors.leftMargin: Style.current.padding
2020-05-27 18:40:58 +00:00
}
2020-05-28 11:32:05 +00:00
AddChat {
2020-06-17 19:18:31 +00:00
id: addChat
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
2020-07-15 19:38:03 +00:00
anchors.top: title.bottom
anchors.topMargin: Style.current.padding
}
StackLayout {
id: contactsStackView
2020-05-27 18:40:58 +00:00
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
anchors.top: searchBox.bottom
anchors.topMargin: Style.current.padding
2020-05-27 18:40:58 +00:00
function getCurrentIndex() {
return channelList.channelListCount > 0 ? 1 : 0
}
currentIndex: getCurrentIndex()
EmptyView {
onCloseButtonPressed: function () {
contactsStackView.currentIndex = 2
}
}
2020-05-28 11:06:17 +00:00
ChannelList {
id: channelList
searchStr: contactsColumn.searchStr
onChannelListCountChanged: {
contactsStackView.currentIndex = contactsStackView.getCurrentIndex()
}
}
ClosedEmptyView {}
}
}
/*##^##
Designer {
D{i:0;autoSize:true;formeditorColor:"#ffffff";height:480;width:640}
}
##^##*/