2020-05-26 21:56:56 +00:00
|
|
|
import QtQuick 2.12
|
2020-05-25 20:34:26 +00:00
|
|
|
import QtQuick.Controls 2.3
|
2020-05-26 21:56:56 +00:00
|
|
|
import QtQuick.Controls 2.12 as QQC2
|
2020-05-25 20:34:26 +00:00
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Qt.labs.platform 1.1
|
2020-05-26 21:56:56 +00:00
|
|
|
import QtGraphicalEffects 1.12
|
2020-05-25 20:34:26 +00:00
|
|
|
import "../../../imports"
|
2020-05-26 18:16:07 +00:00
|
|
|
import "./components"
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 17:56:25 +00:00
|
|
|
Item {
|
2020-05-26 18:16:07 +00:00
|
|
|
property alias chatGroupsListViewCount: chatGroupsListView.count
|
2020-05-25 20:34:26 +00:00
|
|
|
property alias searchStr: searchText.text
|
|
|
|
|
|
|
|
id: contactsColumn
|
|
|
|
width: 300
|
|
|
|
Layout.minimumWidth: 200
|
2020-05-27 18:40:58 +00:00
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
Text {
|
|
|
|
id: title
|
|
|
|
x: 772
|
|
|
|
text: qsTr("Chat")
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 17
|
|
|
|
font.bold: true
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
font.pixelSize: 17
|
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 20:11:56 +00:00
|
|
|
PublicChatPopup {
|
|
|
|
id: publicChatPopup
|
|
|
|
}
|
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Rectangle {
|
|
|
|
id: searchBox
|
|
|
|
height: 36
|
|
|
|
color: Theme.grey
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 59
|
|
|
|
radius: 8
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 65
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 16
|
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: searchText
|
2020-05-27 20:11:56 +00:00
|
|
|
placeholderText: qsTr("Search")
|
2020-05-27 18:40:58 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 32
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
font.pixelSize: 12
|
|
|
|
background: Rectangle {
|
|
|
|
color: "#00000000"
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Image {
|
|
|
|
id: image4
|
2020-05-27 16:24:24 +00:00
|
|
|
anchors.left: parent.left
|
2020-05-27 18:40:58 +00:00
|
|
|
anchors.leftMargin: 10
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: "../../img/search.svg"
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
MouseArea {
|
|
|
|
id: mouseArea
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
searchText.forceActiveFocus(Qt.MouseFocusReason)
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Rectangle {
|
|
|
|
id: addChat
|
|
|
|
x: 183
|
|
|
|
width: 36
|
|
|
|
height: 36
|
|
|
|
color: Theme.blue
|
|
|
|
radius: 50
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 16
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 59
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Text {
|
|
|
|
id: addChatLbl
|
|
|
|
color: "#ffffff"
|
|
|
|
text: qsTr("+")
|
|
|
|
anchors.verticalCenterOffset: -1
|
|
|
|
anchors.horizontalCenterOffset: 1
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
lineHeight: 1
|
|
|
|
fontSizeMode: Text.FixedSize
|
|
|
|
font.bold: true
|
|
|
|
font.pixelSize: 28
|
|
|
|
state: "default"
|
|
|
|
rotation: 0
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: "default"
|
|
|
|
PropertyChanges {
|
|
|
|
target: addChatLbl
|
|
|
|
rotation: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "rotated"
|
|
|
|
PropertyChanges {
|
|
|
|
target: addChatLbl
|
|
|
|
rotation: 45
|
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
transitions: [
|
|
|
|
Transition {
|
|
|
|
from: "default"
|
|
|
|
to: "rotated"
|
|
|
|
RotationAnimation {
|
|
|
|
duration: 150
|
|
|
|
direction: RotationAnimation.Clockwise
|
|
|
|
easing.type: Easing.InCubic
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
},
|
|
|
|
Transition {
|
|
|
|
from: "rotated"
|
|
|
|
to: "default"
|
|
|
|
RotationAnimation {
|
|
|
|
duration: 150
|
|
|
|
direction: RotationAnimation.Counterclockwise
|
|
|
|
easing.type: Easing.OutCubic
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
]
|
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
|
|
onClicked: {
|
|
|
|
addChatLbl.state = "rotated"
|
|
|
|
let x = addChatLbl.x + addChatLbl.width / 2 - newChatMenu.width / 2
|
|
|
|
newChatMenu.popup(x, addChatLbl.height + 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
QQC2.Menu {
|
|
|
|
id: newChatMenu
|
|
|
|
QQC2.Action {
|
|
|
|
text: qsTr("Start new chat")
|
|
|
|
icon.source: "../../img/new_chat.svg"
|
|
|
|
onTriggered: {
|
|
|
|
console.log("TODO: Start new chat")
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
}
|
|
|
|
QQC2.Action {
|
|
|
|
text: qsTr("Start group chat")
|
|
|
|
icon.source: "../../img/group_chat.svg"
|
|
|
|
onTriggered: {
|
|
|
|
console.log("TODO: Start group chat")
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
}
|
|
|
|
QQC2.Action {
|
|
|
|
text: qsTr("Join public chat")
|
|
|
|
icon.source: "../../img/public_chat.svg"
|
2020-05-27 20:11:56 +00:00
|
|
|
onTriggered: publicChatPopup.open()
|
2020-05-27 18:40:58 +00:00
|
|
|
}
|
|
|
|
onAboutToHide: {
|
|
|
|
addChatLbl.state = "default"
|
|
|
|
}
|
|
|
|
topPadding: 16
|
|
|
|
bottomPadding: 16
|
2020-05-27 16:24:24 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
delegate: QQC2.MenuItem {
|
|
|
|
id: addChatMenuItem
|
|
|
|
implicitWidth: 200
|
|
|
|
implicitHeight: 40
|
|
|
|
font.pixelSize: 15
|
|
|
|
icon.color: addChatMenuItem.highlighted ? "white" : Theme.blue
|
|
|
|
background: Rectangle {
|
|
|
|
implicitWidth: 220
|
2020-05-27 16:24:24 +00:00
|
|
|
implicitHeight: 40
|
2020-05-27 18:40:58 +00:00
|
|
|
color: addChatMenuItem.highlighted ? Theme.blue : "transparent"
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
}
|
2020-05-27 15:15:01 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
background: Rectangle {
|
|
|
|
id: bgAddItemMenu
|
|
|
|
implicitWidth: 220
|
|
|
|
implicitHeight: 172
|
|
|
|
color: "transparent"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: bgAddItemMenuArrow
|
|
|
|
color: Theme.white2
|
|
|
|
height: 14
|
|
|
|
width: 14
|
|
|
|
rotation: 135
|
|
|
|
x: bgAddItemMenu.width / 2 - width / 2
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow {
|
|
|
|
width: bgAddItemMenuArrow.width
|
|
|
|
height: bgAddItemMenuArrow.height
|
|
|
|
x: bgAddItemMenuArrow.x
|
|
|
|
y: bgAddItemMenuArrow.y + 10
|
|
|
|
visible: bgAddItemMenuArrow.visible
|
|
|
|
source: bgAddItemMenuArrow
|
|
|
|
horizontalOffset: 0
|
|
|
|
verticalOffset: 5
|
|
|
|
radius: 10
|
|
|
|
samples: 15
|
|
|
|
color: "#22000000"
|
2020-05-26 21:56:56 +00:00
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
}
|
2020-05-26 21:56:56 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Rectangle {
|
|
|
|
id: bgAddItemMenu2
|
|
|
|
y: 7
|
|
|
|
implicitWidth: 220
|
|
|
|
implicitHeight: 152
|
|
|
|
color: Theme.white2
|
|
|
|
radius: 16
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow {
|
|
|
|
width: bgAddItemMenu2.width
|
|
|
|
height: bgAddItemMenu2.height
|
|
|
|
x: bgAddItemMenu2.x
|
|
|
|
y: bgAddItemMenu2.y + 10
|
|
|
|
visible: bgAddItemMenu2.visible
|
|
|
|
source: bgAddItemMenu2
|
|
|
|
horizontalOffset: 0
|
|
|
|
verticalOffset: 7
|
|
|
|
radius: 10
|
|
|
|
samples: 15
|
|
|
|
color: "#22000000"
|
2020-05-26 21:56:56 +00:00
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 16:24:24 +00:00
|
|
|
StackLayout {
|
2020-05-27 18:40:58 +00:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 0
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 0
|
|
|
|
anchors.top: searchBox.bottom
|
|
|
|
anchors.topMargin: 16
|
|
|
|
|
2020-05-27 16:24:24 +00:00
|
|
|
|
|
|
|
currentIndex: chatGroupsListView.count > 0 ? 1 : 0
|
|
|
|
Item {
|
|
|
|
id: suggestionsContainer
|
2020-05-25 20:34:26 +00:00
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2020-05-27 16:24:24 +00:00
|
|
|
Row {
|
|
|
|
id: description
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 20
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 20
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 16:24:24 +00:00
|
|
|
Text {
|
|
|
|
width: parent.width
|
|
|
|
text: qsTr("Follow your interests in one of the many Public Chats.")
|
|
|
|
font.pointSize: 15
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
verticalAlignment: Text.AlignTop
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
fontSizeMode: Text.FixedSize
|
|
|
|
renderType: Text.QtRendering
|
|
|
|
onLinkActivated: console.log(link)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
id: row
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 20
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 20
|
|
|
|
anchors.top: description.bottom
|
|
|
|
anchors.topMargin: 20
|
|
|
|
|
|
|
|
Flow {
|
|
|
|
Layout.fillHeight: false
|
2020-05-26 18:16:07 +00:00
|
|
|
Layout.fillWidth: true
|
2020-05-27 16:24:24 +00:00
|
|
|
spacing: 6
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 16:24:24 +00:00
|
|
|
SuggestedChannel {
|
|
|
|
channel: "introductions"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "chitchat"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "status"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "crypto"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "tech"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "music"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "movies"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "test"
|
|
|
|
}
|
|
|
|
SuggestedChannel {
|
|
|
|
channel: "test2"
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
2020-05-26 18:16:07 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-26 18:16:07 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Item {
|
|
|
|
id: chatGroupsContainer
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
2020-05-26 18:16:07 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
Component {
|
|
|
|
id: chatViewDelegate
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-27 16:24:24 +00:00
|
|
|
Rectangle {
|
2020-05-27 18:40:58 +00:00
|
|
|
id: wrapper
|
|
|
|
color: ListView.isCurrentItem ? Theme.lightBlue : Theme.transparent
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
anchors.top: applicationWindow.top
|
|
|
|
anchors.topMargin: 0
|
2020-05-27 16:24:24 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Theme.padding
|
2020-05-27 18:40:58 +00:00
|
|
|
radius: 8
|
|
|
|
// Hide the box if it is filtered out
|
|
|
|
property bool isVisible: searchStr == "" || name.includes(searchStr)
|
|
|
|
visible: isVisible ? true : false
|
|
|
|
height: isVisible ? 64 : 0
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
chatsModel.setActiveChannelByIndex(index)
|
|
|
|
chatGroupsListView.currentIndex = index
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: contactImage
|
|
|
|
width: 40
|
|
|
|
color: Theme.darkGrey
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Theme.padding
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 12
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 12
|
|
|
|
radius: 50
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
|
|
|
|
Text {
|
2020-05-27 18:40:58 +00:00
|
|
|
id: contactInfo
|
|
|
|
text: name
|
|
|
|
anchors.right: contactTime.left
|
|
|
|
anchors.rightMargin: Theme.smallPadding
|
|
|
|
elide: Text.ElideRight
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 15
|
|
|
|
anchors.left: contactImage.right
|
|
|
|
anchors.leftMargin: Theme.padding
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.smallPadding
|
|
|
|
color: "black"
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: lastChatMessage
|
|
|
|
text: lastMessage || qsTr("No messages")
|
|
|
|
anchors.right: contactNumberChatsCircle.left
|
|
|
|
anchors.rightMargin: Theme.smallPadding
|
|
|
|
elide: Text.ElideRight
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Theme.smallPadding
|
|
|
|
font.pixelSize: 15
|
|
|
|
anchors.left: contactImage.right
|
|
|
|
anchors.leftMargin: Theme.padding
|
|
|
|
color: Theme.darkGrey
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
id: contactTime
|
|
|
|
text: timestamp
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Theme.smallPadding
|
|
|
|
font.pixelSize: 11
|
|
|
|
color: Theme.darkGrey
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
|
|
id: contactNumberChatsCircle
|
|
|
|
width: 22
|
|
|
|
height: 22
|
|
|
|
radius: 50
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Theme.smallPadding
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Theme.padding
|
|
|
|
color: Theme.blue
|
|
|
|
visible: unviewedMessagesCount > 0
|
|
|
|
Text {
|
|
|
|
id: contactNumberChats
|
|
|
|
text: unviewedMessagesCount
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
color: "white"
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
2020-05-26 18:16:07 +00:00
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
2020-05-26 18:16:07 +00:00
|
|
|
|
2020-05-27 18:40:58 +00:00
|
|
|
ListView {
|
|
|
|
id: chatGroupsListView
|
|
|
|
anchors.topMargin: 24
|
|
|
|
anchors.fill: parent
|
|
|
|
model: chatsModel.chats
|
|
|
|
delegate: chatViewDelegate
|
|
|
|
}
|
2020-05-27 16:24:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-27 18:40:58 +00:00
|
|
|
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-05-27 17:56:25 +00:00
|
|
|
D{i:0;formeditorColor:"#ffffff";height:770;width:300}
|
2020-05-25 20:34:26 +00:00
|
|
|
}
|
|
|
|
##^##*/
|
2020-05-27 16:24:24 +00:00
|
|
|
|