2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2020-06-23 18:51:10 +00:00
|
|
|
import QtQuick.Controls 2.13
|
2020-06-23 20:49:04 +00:00
|
|
|
import Qt.labs.settings 1.0
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2021-10-28 20:23:30 +00:00
|
|
|
import shared.views.chat 1.0
|
|
|
|
|
|
|
|
import StatusQ.Layout 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
2021-10-01 15:58:36 +00:00
|
|
|
|
|
|
|
import "views"
|
|
|
|
import "panels"
|
|
|
|
import "panels/communities"
|
|
|
|
import "popups"
|
|
|
|
import "helpers"
|
|
|
|
import "controls"
|
|
|
|
import "stores"
|
2020-05-13 17:27:06 +00:00
|
|
|
|
2021-07-22 14:53:19 +00:00
|
|
|
StatusAppThreePanelLayout {
|
2021-10-21 22:39:53 +00:00
|
|
|
id: root
|
2020-05-27 17:10:50 +00:00
|
|
|
|
2021-07-22 14:53:19 +00:00
|
|
|
handle: SplitViewHandle { implicitWidth: 5 }
|
|
|
|
|
2021-11-10 12:48:22 +00:00
|
|
|
property var store
|
2021-11-01 20:10:50 +00:00
|
|
|
|
2021-11-11 16:11:40 +00:00
|
|
|
// Not Refactored
|
2021-11-25 17:12:19 +00:00
|
|
|
property var messageStore
|
2021-11-11 16:11:40 +00:00
|
|
|
|
|
|
|
// Not Refactored
|
|
|
|
property RootStore rootStore: RootStore {
|
|
|
|
messageStore: root.messageStore
|
|
|
|
}
|
2021-11-15 15:15:21 +00:00
|
|
|
|
2020-11-19 18:30:09 +00:00
|
|
|
property alias chatColumn: chatColumn
|
2021-03-08 19:24:39 +00:00
|
|
|
property bool stickersLoaded: false
|
2021-07-20 15:22:09 +00:00
|
|
|
signal profileButtonClicked()
|
2021-11-10 08:09:31 +00:00
|
|
|
signal openAppSearch()
|
2021-03-08 19:24:39 +00:00
|
|
|
|
2021-11-10 12:48:22 +00:00
|
|
|
// Not Refactored
|
|
|
|
// Connections {
|
|
|
|
// target: root.rootStore.chatsModelInst.stickers
|
|
|
|
// onStickerPacksLoaded: {
|
|
|
|
// stickersLoaded = true;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// property var onActivated: function () {
|
|
|
|
// root.rootStore.chatsModelInst.channelView.restorePreviousActiveChannel();
|
|
|
|
// chatColumn.onActivated();
|
|
|
|
// }
|
2021-11-15 15:15:21 +00:00
|
|
|
// Not Refactored
|
|
|
|
property RootStore rootStore: RootStore {
|
|
|
|
messageStore: root.messageStore
|
|
|
|
}
|
2020-09-23 07:28:20 +00:00
|
|
|
|
2021-06-11 13:23:41 +00:00
|
|
|
leftPanel: Loader {
|
2020-12-11 20:29:46 +00:00
|
|
|
id: contactColumnLoader
|
2021-11-10 12:48:22 +00:00
|
|
|
sourceComponent: store.isCommunity()? communtiyColumnComponent : contactsColumnComponent
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
|
2021-10-28 10:01:10 +00:00
|
|
|
centerPanel: ChatColumnView {
|
2021-06-11 13:23:41 +00:00
|
|
|
id: chatColumn
|
2021-11-11 16:11:40 +00:00
|
|
|
rootStore: root.rootStore
|
2021-10-15 19:47:43 +00:00
|
|
|
chatGroupsListViewCount: contactColumnLoader.item.chatGroupsListViewCount
|
2021-11-10 08:09:31 +00:00
|
|
|
|
|
|
|
onOpenAppSearch: {
|
|
|
|
root.openAppSearch()
|
|
|
|
}
|
2021-06-11 13:23:41 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 09:50:50 +00:00
|
|
|
showRightPanel: (localAccountSensitiveSettings.expandUsersList && (localAccountSensitiveSettings.showOnlineUsers || chatsModel.communities.activeCommunity.active)
|
2021-10-06 20:05:13 +00:00
|
|
|
&& (chatsModel.channelView.activeChannel.chatType !== Constants.chatTypeOneToOne))
|
2021-10-20 09:50:50 +00:00
|
|
|
rightPanel: localAccountSensitiveSettings.communitiesEnabled && chatsModel.communities.activeCommunity.active ? communityUserListComponent : userListComponent
|
2021-07-22 14:53:19 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: communityUserListComponent
|
2021-10-01 15:58:36 +00:00
|
|
|
CommunityUserListPanel {
|
|
|
|
currentTime: chatColumn.currentTime
|
|
|
|
messageContextMenu: quickActionMessageOptionsMenu
|
2021-10-29 18:06:18 +00:00
|
|
|
profilePubKey: userProfile.pubKey
|
2021-10-21 22:39:53 +00:00
|
|
|
community: root.rootStore.chatsModelInst.communities.activeCommunity
|
2021-10-29 21:15:33 +00:00
|
|
|
currentUserName: Utils.removeStatusEns(root.rootStore.profileModelInst.ens.preferredUsername
|
|
|
|
|| root.rootStore.profileModelInst.profile.username)
|
2021-12-06 12:14:41 +00:00
|
|
|
currentUserOnline: root.rootStore.userProfileInst.userStatus
|
2021-11-15 15:15:21 +00:00
|
|
|
contactsList: root.rootStore.allContacts
|
2021-10-01 15:58:36 +00:00
|
|
|
}
|
2021-07-22 14:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: userListComponent
|
2021-10-01 15:58:36 +00:00
|
|
|
UserListPanel {
|
|
|
|
currentTime: chatColumn.currentTime
|
|
|
|
userList: chatColumn.userList
|
|
|
|
messageContextMenu: quickActionMessageOptionsMenu
|
2021-10-29 18:06:18 +00:00
|
|
|
profilePubKey: userProfile.pubKey
|
2021-11-15 15:15:21 +00:00
|
|
|
contactsList: root.rootStore.allContacts
|
2021-10-21 22:39:53 +00:00
|
|
|
isOnline: root.rootStore.chatsModelInst.isOnline
|
2021-10-01 15:58:36 +00:00
|
|
|
}
|
2021-07-22 14:53:19 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 20:29:46 +00:00
|
|
|
Component {
|
|
|
|
id: contactsColumnComponent
|
2021-10-01 15:58:36 +00:00
|
|
|
ContactsColumnView {
|
2021-11-15 15:15:21 +00:00
|
|
|
// Not Refactored
|
2021-11-11 16:11:40 +00:00
|
|
|
store: root.rootStore
|
2021-07-20 15:22:09 +00:00
|
|
|
onOpenProfileClicked: {
|
2021-10-21 22:39:53 +00:00
|
|
|
root.profileButtonClicked();
|
2021-07-20 15:22:09 +00:00
|
|
|
}
|
2021-11-10 08:09:31 +00:00
|
|
|
|
|
|
|
onOpenAppSearch: {
|
|
|
|
root.openAppSearch()
|
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: communtiyColumnComponent
|
2021-10-01 15:58:36 +00:00
|
|
|
CommunityColumnView {
|
2021-11-10 12:48:22 +00:00
|
|
|
store: root.store
|
2021-06-02 19:43:33 +00:00
|
|
|
pinnedMessagesPopupComponent: chatColumn.pinnedMessagesPopupComponent
|
|
|
|
}
|
2020-05-13 17:27:06 +00:00
|
|
|
}
|
|
|
|
|
2021-02-17 20:36:10 +00:00
|
|
|
Component {
|
|
|
|
id: groupInfoPopupComponent
|
2021-05-25 19:38:18 +00:00
|
|
|
GroupInfoPopup {
|
2021-11-15 15:15:21 +00:00
|
|
|
// Not Refactored
|
2021-11-11 16:11:40 +00:00
|
|
|
store: root.rootStore
|
2021-05-25 19:38:18 +00:00
|
|
|
pinnedMessagesPopupComponent: chatColumn.pinnedMessagesPopupComponent
|
|
|
|
}
|
2021-02-17 20:36:10 +00:00
|
|
|
}
|
|
|
|
|
2021-03-08 19:24:39 +00:00
|
|
|
Component {
|
|
|
|
id: statusStickerPackClickPopup
|
|
|
|
StatusStickerPackClickPopup{
|
|
|
|
onClosed: {
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 13:02:56 +00:00
|
|
|
ConfirmationDialog {
|
|
|
|
id: removeContactConfirmationDialog
|
|
|
|
// % "Remove contact"
|
2021-09-09 09:10:29 +00:00
|
|
|
header.title: qsTrId("remove-contact")
|
2020-10-02 13:02:56 +00:00
|
|
|
//% "Are you sure you want to remove this contact?"
|
|
|
|
confirmationText: qsTrId("are-you-sure-you-want-to-remove-this-contact-")
|
|
|
|
onConfirmButtonClicked: {
|
2021-11-15 15:15:21 +00:00
|
|
|
if (root.rootStore.contactsModuleInst.model.isAdded(chatColumn.contactToRemove)) {
|
|
|
|
root.rootStore.contactsModuleInst.model.removeContact(chatColumn.contactToRemove)
|
|
|
|
}
|
2020-10-02 13:02:56 +00:00
|
|
|
removeContactConfirmationDialog.parentPopup.close();
|
|
|
|
removeContactConfirmationDialog.close();
|
|
|
|
}
|
|
|
|
}
|
2021-09-01 17:38:39 +00:00
|
|
|
|
2021-10-21 00:41:54 +00:00
|
|
|
MessageContextMenuView {
|
2021-09-01 17:38:39 +00:00
|
|
|
id: quickActionMessageOptionsMenu
|
2021-11-15 15:15:21 +00:00
|
|
|
// Not Refactored
|
2021-11-11 16:11:40 +00:00
|
|
|
store: root.rootStore
|
2021-11-15 15:15:21 +00:00
|
|
|
// reactionModel: root.rootStore.emojiReactionsModel
|
2021-09-01 17:38:39 +00:00
|
|
|
}
|
2020-05-13 17:27:06 +00:00
|
|
|
}
|
2020-05-25 20:34:26 +00:00
|
|
|
|
2020-05-13 17:27:06 +00:00
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-06-23 18:51:10 +00:00
|
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:1.25;height:770;width:1152}
|
2020-05-13 17:27:06 +00:00
|
|
|
}
|
|
|
|
##^##*/
|