109 lines
2.9 KiB
QML
109 lines
2.9 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import Qt.labs.settings 1.0
|
|
import "../../../imports"
|
|
import "../../../shared"
|
|
import "../../../shared/status"
|
|
import "."
|
|
import "components"
|
|
|
|
SplitView {
|
|
id: chatView
|
|
handle: SplitViewHandle {}
|
|
|
|
property alias chatColumn: chatColumn
|
|
property bool stickersLoaded: false
|
|
property bool profilePopupOpened: false
|
|
|
|
Connections {
|
|
target: chatsModel.stickers
|
|
onStickerPacksLoaded: {
|
|
stickersLoaded = true;
|
|
}
|
|
}
|
|
|
|
property var onActivated: function () {
|
|
chatsModel.restorePreviousActiveChannel()
|
|
chatColumn.onActivated()
|
|
}
|
|
|
|
Loader {
|
|
id: contactColumnLoader
|
|
SplitView.preferredWidth: Style.current.leftTabPreferredSize
|
|
sourceComponent: appSettings.communitiesEnabled && chatsModel.communities.activeCommunity.active ? communtiyColumnComponent : contactsColumnComponent
|
|
}
|
|
|
|
Component {
|
|
id: contactsColumnComponent
|
|
ContactsColumn {
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: communtiyColumnComponent
|
|
CommunityColumn {}
|
|
}
|
|
|
|
Component {
|
|
id: groupInfoPopupComponent
|
|
GroupInfoPopup {}
|
|
}
|
|
|
|
ChatColumn {
|
|
id: chatColumn
|
|
chatGroupsListViewCount: contactColumnLoader.item.chatGroupsListViewCount
|
|
}
|
|
|
|
Component {
|
|
id: statusStickerPackClickPopup
|
|
StatusStickerPackClickPopup{
|
|
onClosed: {
|
|
destroy();
|
|
}
|
|
}
|
|
}
|
|
|
|
function openProfilePopup(userNameParam, fromAuthorParam, identiconParam, textParam, nicknameParam, parentPopup){
|
|
var popup = profilePopupComponent.createObject(chatView);
|
|
if(parentPopup){
|
|
popup.parentPopup = parentPopup;
|
|
}
|
|
popup.openPopup(profileModel.profile.pubKey !== fromAuthorParam, userNameParam, fromAuthorParam, identiconParam, textParam, nicknameParam);
|
|
profilePopupOpened = true
|
|
}
|
|
|
|
property Component profilePopupComponent: ProfilePopup {
|
|
id: profilePopup
|
|
height: 504
|
|
onClosed: {
|
|
if(profilePopup.parentPopup){
|
|
profilePopup.parentPopup.close();
|
|
}
|
|
profilePopupOpened = false
|
|
destroy()
|
|
}
|
|
}
|
|
|
|
|
|
ConfirmationDialog {
|
|
id: removeContactConfirmationDialog
|
|
// % "Remove contact"
|
|
title: qsTrId("remove-contact")
|
|
//% "Are you sure you want to remove this contact?"
|
|
confirmationText: qsTrId("are-you-sure-you-want-to-remove-this-contact-")
|
|
onConfirmButtonClicked: {
|
|
if (profileModel.contacts.isAdded(chatColumn.contactToRemove)) {
|
|
profileModel.contacts.removeContact(chatColumn.contactToRemove)
|
|
}
|
|
removeContactConfirmationDialog.parentPopup.close();
|
|
removeContactConfirmationDialog.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:1.25;height:770;width:1152}
|
|
}
|
|
##^##*/
|