2021-05-26 17:36:24 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import QtGraphicalEffects 1.13
|
2021-09-28 15:04:06 +00:00
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
import StatusQ.Core 0.1
|
2021-10-19 11:56:35 +00:00
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared.popups 1.0
|
2021-05-26 17:36:24 +00:00
|
|
|
|
2021-10-01 15:58:36 +00:00
|
|
|
import "../panels"
|
|
|
|
|
2021-10-14 09:50:59 +00:00
|
|
|
// TODO: Replace with StatusModal
|
2021-05-26 17:36:24 +00:00
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
|
|
|
|
2021-10-22 20:49:47 +00:00
|
|
|
property var store
|
2022-01-10 09:16:48 +00:00
|
|
|
|
2022-04-04 11:26:30 +00:00
|
|
|
title: qsTr("Contact requests")
|
2021-05-26 17:36:24 +00:00
|
|
|
|
2022-07-14 11:03:36 +00:00
|
|
|
StatusListView {
|
2021-05-26 17:36:24 +00:00
|
|
|
id: contactList
|
|
|
|
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.leftMargin: -Style.current.halfPadding
|
|
|
|
anchors.rightMargin: -Style.current.halfPadding
|
|
|
|
|
2022-01-04 12:06:05 +00:00
|
|
|
model: popup.store.contactRequestsModel
|
2021-05-26 17:36:24 +00:00
|
|
|
|
2021-10-01 15:58:36 +00:00
|
|
|
delegate: ContactRequestPanel {
|
2022-04-07 19:05:33 +00:00
|
|
|
contactPubKey: model.pubKey
|
2022-06-20 13:27:00 +00:00
|
|
|
contactName: model.displayName
|
2022-01-04 12:06:05 +00:00
|
|
|
contactIcon: model.icon
|
2022-04-07 19:05:33 +00:00
|
|
|
|
2022-01-04 12:06:05 +00:00
|
|
|
onOpenProfilePopup: {
|
|
|
|
Global.openProfilePopup(model.pubKey)
|
2021-05-26 17:36:24 +00:00
|
|
|
}
|
|
|
|
onBlockContactActionTriggered: {
|
2022-09-27 21:26:26 +00:00
|
|
|
Global.blockContactRequested(model.pubKey, model.displayName)
|
2021-05-26 17:36:24 +00:00
|
|
|
}
|
2021-10-01 15:58:36 +00:00
|
|
|
onAcceptClicked: {
|
2022-01-04 12:06:05 +00:00
|
|
|
popup.store.acceptContactRequest(model.pubKey)
|
2021-10-01 15:58:36 +00:00
|
|
|
}
|
|
|
|
onDeclineClicked: {
|
2022-05-27 08:57:18 +00:00
|
|
|
popup.store.dismissContactRequest(model.pubKey)
|
2021-10-01 15:58:36 +00:00
|
|
|
}
|
2021-05-26 17:36:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: Item {
|
|
|
|
width: parent.width
|
|
|
|
height: children[0].height
|
|
|
|
|
|
|
|
ConfirmationDialog {
|
|
|
|
id: declineAllDialog
|
2022-04-04 11:26:30 +00:00
|
|
|
header.title: qsTr("Decline all contacts")
|
|
|
|
confirmationText: qsTr("Are you sure you want to decline all these contact requests")
|
2021-05-26 17:36:24 +00:00
|
|
|
onConfirmButtonClicked: {
|
2022-05-27 08:57:18 +00:00
|
|
|
popup.store.dismissAllContactRequests()
|
2021-05-26 17:36:24 +00:00
|
|
|
declineAllDialog.close()
|
2022-05-02 10:36:24 +00:00
|
|
|
popup.close()
|
2021-05-26 17:36:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfirmationDialog {
|
|
|
|
id: acceptAllDialog
|
2022-04-04 11:26:30 +00:00
|
|
|
header.title: qsTr("Accept all contacts")
|
|
|
|
confirmationText: qsTr("Are you sure you want to accept all these contact requests")
|
2021-05-26 17:36:24 +00:00
|
|
|
onConfirmButtonClicked: {
|
2022-01-04 12:06:05 +00:00
|
|
|
popup.store.acceptAllContactRequests()
|
2021-05-26 17:36:24 +00:00
|
|
|
acceptAllDialog.close()
|
2022-05-02 10:36:24 +00:00
|
|
|
popup.close()
|
2021-05-26 17:36:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusButton {
|
|
|
|
id: blockBtn
|
2021-05-26 20:04:42 +00:00
|
|
|
enabled: contactList.count > 0
|
2021-05-26 17:36:24 +00:00
|
|
|
anchors.right: addToContactsButton.left
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
anchors.bottom: parent.bottom
|
2021-10-19 11:56:35 +00:00
|
|
|
type: StatusBaseButton.Type.Danger
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Decline all")
|
2021-05-26 17:36:24 +00:00
|
|
|
onClicked: declineAllDialog.open()
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusButton {
|
|
|
|
id: addToContactsButton
|
2021-05-26 20:04:42 +00:00
|
|
|
enabled: contactList.count > 0
|
2021-05-26 17:36:24 +00:00
|
|
|
anchors.right: parent.right
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Accept all")
|
2021-05-26 17:36:24 +00:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
onClicked: acceptAllDialog.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|