2020-06-17 15:18:31 -04:00
|
|
|
import QtQuick 2.13
|
2020-06-23 14:51:10 -04:00
|
|
|
import QtQuick.Controls 2.13
|
2020-06-23 16:49:04 -04:00
|
|
|
import Qt.labs.settings 1.0
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-28 00:27:49 +03:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2021-10-28 23:23:30 +03:00
|
|
|
import shared.views.chat 1.0
|
|
|
|
|
|
|
|
import StatusQ.Layout 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
2021-10-01 18:58:36 +03:00
|
|
|
|
|
|
|
import "views"
|
|
|
|
import "panels"
|
|
|
|
import "panels/communities"
|
|
|
|
import "popups"
|
|
|
|
import "helpers"
|
|
|
|
import "controls"
|
|
|
|
import "stores"
|
2020-05-13 13:27:06 -04:00
|
|
|
|
2021-07-22 17:53:19 +03:00
|
|
|
StatusAppThreePanelLayout {
|
2021-10-22 01:39:53 +03:00
|
|
|
id: root
|
2020-05-27 13:10:50 -04:00
|
|
|
|
2021-07-22 17:53:19 +03:00
|
|
|
handle: SplitViewHandle { implicitWidth: 5 }
|
|
|
|
|
2021-11-26 16:37:57 +01:00
|
|
|
// Important:
|
|
|
|
// Each `ChatLayout` has its own chatCommunitySectionModule
|
|
|
|
// (on the backend chat and community sections share the same module since they are actually the same)
|
|
|
|
property var chatCommunitySectionModule
|
2021-11-30 15:49:45 +01:00
|
|
|
// Since qml component doesn't follow encaptulation from the backend side, we're introducing
|
|
|
|
// a method which will return appropriate chat content module for selected chat/channel
|
|
|
|
function currentChatContentModule(){
|
|
|
|
// When we decide to have the same struct as it's on the backend we will remove this function.
|
|
|
|
// So far this is a way to deal with refactord backend from the current qml structure.
|
|
|
|
if(chatCommunitySectionModule.activeItem.isSubItemActive)
|
|
|
|
chatCommunitySectionModule.prepareChatContentModuleForChatId(chatCommunitySectionModule.activeItem.activeSubItem.id)
|
|
|
|
else
|
|
|
|
chatCommunitySectionModule.prepareChatContentModuleForChatId(chatCommunitySectionModule.activeItem.id)
|
|
|
|
|
|
|
|
return chatCommunitySectionModule.getChatContentModule()
|
|
|
|
}
|
2021-11-01 21:10:50 +01:00
|
|
|
|
2021-11-11 11:11:40 -05:00
|
|
|
// Not Refactored
|
2021-11-25 12:12:19 -05:00
|
|
|
property var messageStore
|
2021-11-11 11:11:40 -05:00
|
|
|
|
|
|
|
// Not Refactored
|
|
|
|
property RootStore rootStore: RootStore {
|
|
|
|
messageStore: root.messageStore
|
|
|
|
}
|
2021-11-15 10:15:21 -05:00
|
|
|
|
2020-11-19 14:30:09 -04:00
|
|
|
property alias chatColumn: chatColumn
|
2021-03-08 15:24:39 -04:00
|
|
|
property bool stickersLoaded: false
|
2021-07-20 18:22:09 +03:00
|
|
|
signal profileButtonClicked()
|
2021-11-10 09:09:31 +01:00
|
|
|
signal openAppSearch()
|
2021-03-08 15:24:39 -04:00
|
|
|
|
2021-11-10 13:48:22 +01:00
|
|
|
// Not Refactored
|
|
|
|
// Connections {
|
|
|
|
// target: root.rootStore.chatsModelInst.stickers
|
|
|
|
// onStickerPacksLoaded: {
|
|
|
|
// stickersLoaded = true;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// property var onActivated: function () {
|
|
|
|
// root.rootStore.chatsModelInst.channelView.restorePreviousActiveChannel();
|
|
|
|
// chatColumn.onActivated();
|
|
|
|
// }
|
2020-09-23 09:28:20 +02:00
|
|
|
|
2021-06-11 15:23:41 +02:00
|
|
|
leftPanel: Loader {
|
2020-12-11 15:29:46 -05:00
|
|
|
id: contactColumnLoader
|
2021-11-26 16:37:57 +01:00
|
|
|
sourceComponent: chatCommunitySectionModule.isCommunity()? communtiyColumnComponent : contactsColumnComponent
|
2020-12-11 15:29:46 -05:00
|
|
|
}
|
|
|
|
|
2021-10-28 12:01:10 +02:00
|
|
|
centerPanel: ChatColumnView {
|
2021-06-11 15:23:41 +02:00
|
|
|
id: chatColumn
|
2021-12-01 17:47:57 +01:00
|
|
|
parentModule: chatCommunitySectionModule
|
2021-11-11 11:11:40 -05:00
|
|
|
rootStore: root.rootStore
|
2021-11-26 16:37:57 +01:00
|
|
|
//chatGroupsListViewCount: contactColumnLoader.item.chatGroupsListViewCount
|
2021-11-10 09:09:31 +01:00
|
|
|
|
|
|
|
onOpenAppSearch: {
|
|
|
|
root.openAppSearch()
|
|
|
|
}
|
2021-06-11 15:23:41 +02:00
|
|
|
}
|
|
|
|
|
2021-11-30 15:49:45 +01:00
|
|
|
showRightPanel: {
|
|
|
|
// Check if user list is available as an option for particular chat content module.
|
2021-12-09 13:53:40 +01:00
|
|
|
let usersListAvailable = currentChatContentModule().chatDetails.isUsersListAvailable
|
2021-11-30 15:49:45 +01:00
|
|
|
return localAccountSensitiveSettings.showOnlineUsers && usersListAvailable && localAccountSensitiveSettings.expandUsersList
|
|
|
|
}
|
|
|
|
|
2021-11-26 16:37:57 +01:00
|
|
|
rightPanel: localAccountSensitiveSettings.communitiesEnabled && chatCommunitySectionModule.isCommunity()? communityUserListComponent : userListComponent
|
2021-07-22 17:53:19 +03:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: communityUserListComponent
|
2021-10-01 18:58:36 +03:00
|
|
|
CommunityUserListPanel {
|
|
|
|
messageContextMenu: quickActionMessageOptionsMenu
|
2021-11-30 15:49:45 +01:00
|
|
|
usersModule: {
|
|
|
|
if(chatCommunitySectionModule.activeItem.isSubItemActive)
|
|
|
|
chatCommunitySectionModule.prepareChatContentModuleForChatId(chatCommunitySectionModule.activeItem.activeSubItem.id)
|
|
|
|
else
|
|
|
|
chatCommunitySectionModule.prepareChatContentModuleForChatId(chatCommunitySectionModule.activeItem.id)
|
|
|
|
|
|
|
|
return chatCommunitySectionModule.getChatContentModule().usersModule
|
|
|
|
}
|
2021-10-01 18:58:36 +03:00
|
|
|
}
|
2021-07-22 17:53:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: userListComponent
|
2021-10-01 18:58:36 +03:00
|
|
|
UserListPanel {
|
|
|
|
messageContextMenu: quickActionMessageOptionsMenu
|
2021-11-30 15:49:45 +01:00
|
|
|
usersModule: {
|
|
|
|
chatCommunitySectionModule.prepareChatContentModuleForChatId(chatCommunitySectionModule.activeItem.id)
|
|
|
|
return chatCommunitySectionModule.getChatContentModule().usersModule
|
|
|
|
}
|
2021-10-01 18:58:36 +03:00
|
|
|
}
|
2021-07-22 17:53:19 +03:00
|
|
|
}
|
|
|
|
|
2020-12-11 15:29:46 -05:00
|
|
|
Component {
|
|
|
|
id: contactsColumnComponent
|
2021-10-01 18:58:36 +03:00
|
|
|
ContactsColumnView {
|
2021-11-26 16:37:57 +01:00
|
|
|
chatSectionModule: root.chatCommunitySectionModule
|
2021-11-11 11:11:40 -05:00
|
|
|
store: root.rootStore
|
2021-07-20 18:22:09 +03:00
|
|
|
onOpenProfileClicked: {
|
2021-10-22 01:39:53 +03:00
|
|
|
root.profileButtonClicked();
|
2021-07-20 18:22:09 +03:00
|
|
|
}
|
2021-11-10 09:09:31 +01:00
|
|
|
|
|
|
|
onOpenAppSearch: {
|
|
|
|
root.openAppSearch()
|
|
|
|
}
|
2020-12-11 15:29:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: communtiyColumnComponent
|
2021-10-01 18:58:36 +03:00
|
|
|
CommunityColumnView {
|
2021-11-26 16:37:57 +01:00
|
|
|
communitySectionModule: root.chatCommunitySectionModule
|
|
|
|
store: root.rootStore
|
|
|
|
//pinnedMessagesPopupComponent: chatColumn.pinnedMessagesPopupComponent
|
2021-06-02 15:43:33 -04:00
|
|
|
}
|
2020-05-13 13:27:06 -04:00
|
|
|
}
|
|
|
|
|
2021-02-17 15:36:10 -05:00
|
|
|
Component {
|
|
|
|
id: groupInfoPopupComponent
|
2021-05-25 15:38:18 -04:00
|
|
|
GroupInfoPopup {
|
2021-11-15 10:15:21 -05:00
|
|
|
// Not Refactored
|
2021-11-11 11:11:40 -05:00
|
|
|
store: root.rootStore
|
2021-11-26 16:37:57 +01:00
|
|
|
//pinnedMessagesPopupComponent: chatColumn.pinnedMessagesPopupComponent
|
2021-05-25 15:38:18 -04:00
|
|
|
}
|
2021-02-17 15:36:10 -05:00
|
|
|
}
|
|
|
|
|
2021-03-08 15:24:39 -04:00
|
|
|
Component {
|
|
|
|
id: statusStickerPackClickPopup
|
|
|
|
StatusStickerPackClickPopup{
|
|
|
|
onClosed: {
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 09:02:56 -04:00
|
|
|
ConfirmationDialog {
|
|
|
|
id: removeContactConfirmationDialog
|
|
|
|
// % "Remove contact"
|
2021-09-09 11:10:29 +02:00
|
|
|
header.title: qsTrId("remove-contact")
|
2020-10-02 09:02:56 -04:00
|
|
|
//% "Are you sure you want to remove this contact?"
|
|
|
|
confirmationText: qsTrId("are-you-sure-you-want-to-remove-this-contact-")
|
|
|
|
onConfirmButtonClicked: {
|
2021-11-26 16:37:57 +01:00
|
|
|
// Not Refactored Yet
|
|
|
|
// if (root.rootStore.contactsModuleInst.model.isAdded(chatColumn.contactToRemove)) {
|
|
|
|
// root.rootStore.contactsModuleInst.model.removeContact(chatColumn.contactToRemove)
|
|
|
|
// }
|
|
|
|
// removeContactConfirmationDialog.parentPopup.close();
|
|
|
|
// removeContactConfirmationDialog.close();
|
2020-10-02 09:02:56 -04:00
|
|
|
}
|
|
|
|
}
|
2021-09-01 19:38:39 +02:00
|
|
|
|
2021-10-21 03:41:54 +03:00
|
|
|
MessageContextMenuView {
|
2021-09-01 19:38:39 +02:00
|
|
|
id: quickActionMessageOptionsMenu
|
2021-12-09 11:25:38 -05:00
|
|
|
chatSectionModule: root.chatCommunitySectionModule
|
2021-11-15 10:15:21 -05:00
|
|
|
// Not Refactored
|
2021-11-11 11:11:40 -05:00
|
|
|
store: root.rootStore
|
2021-11-15 10:15:21 -05:00
|
|
|
// reactionModel: root.rootStore.emojiReactionsModel
|
2021-09-01 19:38:39 +02:00
|
|
|
}
|
2020-05-13 13:27:06 -04:00
|
|
|
}
|
2020-05-25 16:34:26 -04:00
|
|
|
|
2020-05-13 13:27:06 -04:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-06-23 14:51:10 -04:00
|
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:1.25;height:770;width:1152}
|
2020-05-13 13:27:06 -04:00
|
|
|
}
|
|
|
|
##^##*/
|