2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-05-27 21:59:34 +00:00
|
|
|
import "../../../../shared"
|
|
|
|
import "../../../../imports"
|
2020-06-02 09:54:46 +00:00
|
|
|
import "../components"
|
2020-05-27 21:59:34 +00:00
|
|
|
|
|
|
|
Rectangle {
|
2020-06-02 12:00:38 +00:00
|
|
|
property string channelNameStr: "#" + chatsModel.activeChannel.id
|
2020-07-10 18:49:14 +00:00
|
|
|
property int iconSize: 13
|
2020-05-27 21:59:34 +00:00
|
|
|
|
|
|
|
id: chatTopBarContent
|
2020-07-13 18:45:54 +00:00
|
|
|
color: Style.current.background
|
2020-05-27 21:59:34 +00:00
|
|
|
height: 56
|
|
|
|
Layout.fillWidth: true
|
2020-07-13 18:45:54 +00:00
|
|
|
border.color: Style.current.border
|
2020-05-27 21:59:34 +00:00
|
|
|
border.width: 1
|
|
|
|
|
2020-06-02 09:54:46 +00:00
|
|
|
ChannelIcon {
|
|
|
|
id: channelIcon
|
2020-06-09 21:20:42 +00:00
|
|
|
channelName: chatsModel.activeChannel.name
|
2020-06-02 12:00:38 +00:00
|
|
|
channelType: chatsModel.activeChannel.chatType
|
|
|
|
channelIdenticon: chatsModel.activeChannel.identicon
|
2020-07-15 16:09:20 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: Style.current.smallPadding
|
2020-05-27 21:59:34 +00:00
|
|
|
}
|
|
|
|
|
2020-06-19 18:21:02 +00:00
|
|
|
StyledTextEdit {
|
2020-05-27 21:59:34 +00:00
|
|
|
id: channelName
|
|
|
|
width: 80
|
|
|
|
height: 20
|
2020-06-09 15:48:17 +00:00
|
|
|
text: chatsModel.activeChannel.chatType != Constants.chatTypePublic ? chatsModel.activeChannel.name : channelNameStr
|
2020-05-27 21:59:34 +00:00
|
|
|
anchors.left: channelIcon.right
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.leftMargin: Style.current.smallPadding
|
2020-05-27 21:59:34 +00:00
|
|
|
anchors.top: parent.top
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.topMargin: Style.current.smallPadding
|
2020-05-27 21:59:34 +00:00
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: 15
|
|
|
|
selectByMouse: true
|
|
|
|
readOnly: true
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-27 21:59:34 +00:00
|
|
|
id: channelIdentifier
|
2020-07-02 15:14:31 +00:00
|
|
|
color: Style.current.darkGrey
|
2020-06-09 15:48:17 +00:00
|
|
|
text: {
|
|
|
|
switch(chatsModel.activeChannel.chatType){
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Public chat"
|
|
|
|
case Constants.chatTypePublic: return qsTrId("public-chat")
|
|
|
|
case Constants.chatTypeOneToOne: return (profileModel.isAdded(chatsModel.activeChannel.id) ?
|
|
|
|
//% "Contact"
|
|
|
|
qsTrId("chat-is-a-contact") :
|
|
|
|
//% "Not a contact"
|
|
|
|
qsTrId("chat-is-not-a-contact"))
|
2020-06-11 17:50:36 +00:00
|
|
|
case Constants.chatTypePrivateGroupChat:
|
2020-06-12 15:08:30 +00:00
|
|
|
let cnt = chatsModel.activeChannel.members.rowCount();
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "%1 members"
|
|
|
|
if(cnt > 1) return qsTrId("%1-members").arg(cnt);
|
|
|
|
//% "1 member"
|
|
|
|
return qsTrId("1-member");
|
2020-06-12 15:33:32 +00:00
|
|
|
default: return "...";
|
2020-06-09 15:48:17 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-27 21:59:34 +00:00
|
|
|
font.pixelSize: 12
|
|
|
|
anchors.left: channelIcon.right
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.leftMargin: Style.current.smallPadding
|
2020-05-27 21:59:34 +00:00
|
|
|
anchors.top: channelName.bottom
|
|
|
|
anchors.topMargin: 0
|
|
|
|
}
|
|
|
|
|
2020-07-09 17:56:31 +00:00
|
|
|
Rectangle {
|
|
|
|
id: moreActionsBtnContainer
|
|
|
|
width: 40
|
|
|
|
height: 40
|
|
|
|
radius: Style.current.radius
|
|
|
|
color: Style.current.transparent
|
2020-05-27 21:59:34 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.right: parent.right
|
2020-07-09 17:56:31 +00:00
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: moreActionsBtn
|
|
|
|
text: "..."
|
|
|
|
font.letterSpacing: 0.5
|
|
|
|
font.bold: true
|
|
|
|
lineHeight: 1.4
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
font.pixelSize: 25
|
|
|
|
}
|
2020-05-27 21:59:34 +00:00
|
|
|
|
|
|
|
MouseArea {
|
2020-07-09 17:36:42 +00:00
|
|
|
property bool menuOpened: false
|
|
|
|
|
2020-05-27 21:59:34 +00:00
|
|
|
id: mouseArea
|
|
|
|
anchors.fill: parent
|
2020-07-09 17:56:31 +00:00
|
|
|
hoverEnabled: true
|
|
|
|
onEntered: {
|
2020-07-13 18:45:54 +00:00
|
|
|
parent.color = Style.current.border
|
2020-07-09 17:56:31 +00:00
|
|
|
}
|
|
|
|
onExited: {
|
|
|
|
parent.color = Style.current.transparent
|
|
|
|
}
|
|
|
|
|
2020-05-27 21:59:34 +00:00
|
|
|
onClicked: {
|
2020-06-10 19:41:03 +00:00
|
|
|
var menu = chatContextMenu;
|
2020-07-09 17:56:31 +00:00
|
|
|
if(chatsModel.activeChannel.chatType === Constants.chatTypePrivateGroupChat){
|
2020-06-10 19:41:03 +00:00
|
|
|
menu = groupContextMenu
|
|
|
|
}
|
|
|
|
|
2020-07-09 17:36:42 +00:00
|
|
|
if (!menuOpened) {
|
|
|
|
menu.arrowX = menu.width - 40
|
2020-07-09 17:56:31 +00:00
|
|
|
menu.popup(moreActionsBtn.x, moreActionsBtn.height)
|
2020-07-09 17:36:42 +00:00
|
|
|
menuOpened = true
|
|
|
|
} else {
|
|
|
|
menu.dismiss()
|
|
|
|
menuOpened = false
|
|
|
|
}
|
2020-05-27 21:59:34 +00:00
|
|
|
}
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
|
|
|
|
|
|
PopupMenu {
|
2020-06-10 19:41:03 +00:00
|
|
|
id: chatContextMenu
|
2020-07-09 17:56:31 +00:00
|
|
|
onClosed: {
|
|
|
|
mouseArea.menuOpened = false
|
|
|
|
}
|
2020-06-18 09:47:30 +00:00
|
|
|
Action {
|
|
|
|
icon.source: "../../../img/close.svg"
|
2020-07-10 18:49:14 +00:00
|
|
|
icon.width: chatTopBarContent.iconSize
|
|
|
|
icon.height: chatTopBarContent.iconSize
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Clear history"
|
|
|
|
text: qsTrId("clear-history")
|
2020-06-18 09:47:30 +00:00
|
|
|
onTriggered: chatsModel.clearChatHistory(chatsModel.activeChannel.id)
|
|
|
|
}
|
2020-06-17 19:18:31 +00:00
|
|
|
Action {
|
2020-07-09 18:26:50 +00:00
|
|
|
icon.source: "../../../img/delete.svg"
|
2020-07-10 18:49:14 +00:00
|
|
|
icon.width: chatTopBarContent.iconSize
|
|
|
|
icon.height: chatTopBarContent.iconSize
|
2020-07-09 18:26:50 +00:00
|
|
|
icon.color: Style.current.red
|
2020-07-16 15:20:29 +00:00
|
|
|
//% "Delete Chat"
|
|
|
|
text: qsTrId("delete-chat")
|
2020-05-27 21:59:34 +00:00
|
|
|
onTriggered: chatsModel.leaveActiveChat()
|
|
|
|
}
|
|
|
|
}
|
2020-06-10 19:41:03 +00:00
|
|
|
|
|
|
|
PopupMenu {
|
|
|
|
id: groupContextMenu
|
2020-07-09 17:56:31 +00:00
|
|
|
onClosed: {
|
|
|
|
mouseArea.menuOpened = false
|
|
|
|
}
|
2020-06-17 19:18:31 +00:00
|
|
|
Action {
|
2020-06-11 17:50:36 +00:00
|
|
|
icon.source: "../../../img/group_chat.svg"
|
2020-07-10 18:49:14 +00:00
|
|
|
icon.width: chatTopBarContent.iconSize
|
|
|
|
icon.height: chatTopBarContent.iconSize
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Group Information"
|
|
|
|
text: qsTrId("group-information")
|
2020-06-11 17:50:36 +00:00
|
|
|
onTriggered: groupInfoPopup.open()
|
|
|
|
}
|
2020-06-18 09:47:30 +00:00
|
|
|
Action {
|
|
|
|
icon.source: "../../../img/close.svg"
|
2020-07-10 18:49:14 +00:00
|
|
|
icon.width: chatTopBarContent.iconSize
|
|
|
|
icon.height: chatTopBarContent.iconSize
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Clear history"
|
|
|
|
text: qsTrId("clear-history")
|
2020-06-18 09:47:30 +00:00
|
|
|
onTriggered: chatsModel.clearChatHistory(chatsModel.activeChannel.id)
|
|
|
|
}
|
2020-06-17 19:18:31 +00:00
|
|
|
Action {
|
2020-06-10 19:41:03 +00:00
|
|
|
icon.source: "../../../img/leave_chat.svg"
|
2020-07-10 18:49:14 +00:00
|
|
|
icon.width: chatTopBarContent.iconSize
|
|
|
|
icon.height: chatTopBarContent.iconSize
|
2020-07-06 20:39:55 +00:00
|
|
|
//% "Leave Group"
|
|
|
|
text: qsTrId("leave-group")
|
2020-06-10 19:41:03 +00:00
|
|
|
onTriggered: chatsModel.leaveActiveChat()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 17:50:36 +00:00
|
|
|
GroupInfoPopup {
|
|
|
|
id: groupInfoPopup
|
2020-07-09 17:56:31 +00:00
|
|
|
onClosed: {
|
|
|
|
mouseArea.menuOpened = false
|
|
|
|
}
|
2020-06-11 17:50:36 +00:00
|
|
|
}
|
2020-05-27 21:59:34 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-02 09:54:46 +00:00
|
|
|
}
|