status-desktop/ui/app/AppLayouts/Chat/components/PrivateChatPopup.qml

54 lines
1.4 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.13
2020-05-28 12:56:43 +00:00
import "../../../../imports"
import "../../../../shared"
import "../../../../shared/status"
2020-05-28 12:56:43 +00:00
import "./"
2020-05-29 16:27:50 +00:00
ModalPopup {
function doJoin(pk, ensName) {
if(Utils.isChatKey(pk)){
chatsModel.joinChat(pk, Constants.chatTypeOneToOne);
} else {
chatsModel.joinChatWithENS(pk, ensName);
}
popup.close();
}
2020-05-28 12:56:43 +00:00
id: popup
//% "New chat"
title: qsTrId("new-chat")
2020-05-29 16:27:50 +00:00
2020-05-29 18:38:11 +00:00
onOpened: {
contactFieldAndList.chatKey.text = ""
contactFieldAndList.pubKey = ""
contactFieldAndList.ensUsername = ""
contactFieldAndList.chatKey.forceActiveFocus(Qt.MouseFocusReason)
contactFieldAndList.existingContacts.visible = profileModel.contacts.list.hasAddedContacts()
contactFieldAndList.noContactsRect.visible = !contactFieldAndList.existingContacts.visible
}
ContactsListAndSearch {
id: contactFieldAndList
anchors.top: parent.top
anchors.bottom: parent.bottom
onUserClicked: function (isContact, pubKey, ensName) {
if(Utils.isChatKey(pubKey)){
chatsModel.joinChat(pubKey, Constants.chatTypeOneToOne);
} else {
chatsModel.joinChatWithENS(pubKey, ensName);
}
popup.close();
}
2020-11-16 20:56:10 +00:00
}
2020-05-28 12:56:43 +00:00
}
/*##^##
Designer {
D{i:0;height:300;width:300}
}
##^##*/