117 lines
3.6 KiB
QML
117 lines
3.6 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import QtGraphicalEffects 1.13
|
|
|
|
import utils 1.0
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import shared.popups 1.0
|
|
|
|
import "../panels"
|
|
|
|
// TODO: Replace with StatusModal
|
|
ModalPopup {
|
|
id: popup
|
|
|
|
property var store
|
|
// Important:
|
|
// We're here in case of ChatSection
|
|
// This module is set from `ChatLayout` (each `ChatLayout` has its own chatSectionModule)
|
|
property var chatSectionModule
|
|
//% "Contact requests"
|
|
title: qsTrId("contact-requests")
|
|
|
|
ListView {
|
|
id: contactList
|
|
|
|
anchors.fill: parent
|
|
anchors.leftMargin: -Style.current.halfPadding
|
|
anchors.rightMargin: -Style.current.halfPadding
|
|
|
|
model: popup.store.contactRequestsModel
|
|
clip: true
|
|
|
|
delegate: ContactRequestPanel {
|
|
contactName: model.name
|
|
contactIcon: model.icon
|
|
contactIconIsIdenticon: model.isIdenticon
|
|
onOpenProfilePopup: {
|
|
Global.openProfilePopup(model.pubKey)
|
|
}
|
|
onBlockContactActionTriggered: {
|
|
blockContactConfirmationDialog.contactName = model.name
|
|
blockContactConfirmationDialog.contactAddress = model.pubKey
|
|
blockContactConfirmationDialog.open()
|
|
}
|
|
onAcceptClicked: {
|
|
chatSectionModule.createOneToOneChat(model.pubKey, "")
|
|
popup.store.acceptContactRequest(model.pubKey)
|
|
}
|
|
onDeclineClicked: {
|
|
popup.store.rejectContactRequest(model.pubKey)
|
|
}
|
|
}
|
|
}
|
|
|
|
footer: Item {
|
|
width: parent.width
|
|
height: children[0].height
|
|
|
|
BlockContactConfirmationDialog {
|
|
id: blockContactConfirmationDialog
|
|
onBlockButtonClicked: {
|
|
popup.store.blockContact(blockContactConfirmationDialog.contactAddress)
|
|
blockContactConfirmationDialog.close()
|
|
}
|
|
}
|
|
|
|
ConfirmationDialog {
|
|
id: declineAllDialog
|
|
//% "Decline all contacts"
|
|
header.title: qsTrId("decline-all-contacts")
|
|
//% "Are you sure you want to decline all these contact requests"
|
|
confirmationText: qsTrId("are-you-sure-you-want-to-decline-all-these-contact-requests")
|
|
onConfirmButtonClicked: {
|
|
popup.store.rejectAllContactRequests()
|
|
declineAllDialog.close()
|
|
}
|
|
}
|
|
|
|
ConfirmationDialog {
|
|
id: acceptAllDialog
|
|
//% "Accept all contacts"
|
|
header.title: qsTrId("accept-all-contacts")
|
|
//% "Are you sure you want to accept all these contact requests"
|
|
confirmationText: qsTrId("are-you-sure-you-want-to-accept-all-these-contact-requests")
|
|
onConfirmButtonClicked: {
|
|
popup.store.acceptAllContactRequests()
|
|
acceptAllDialog.close()
|
|
}
|
|
}
|
|
|
|
StatusButton {
|
|
id: blockBtn
|
|
enabled: contactList.count > 0
|
|
anchors.right: addToContactsButton.left
|
|
anchors.rightMargin: Style.current.padding
|
|
anchors.bottom: parent.bottom
|
|
type: StatusBaseButton.Type.Danger
|
|
//% "Decline all"
|
|
text: qsTrId("decline-all")
|
|
onClicked: declineAllDialog.open()
|
|
}
|
|
|
|
StatusButton {
|
|
id: addToContactsButton
|
|
enabled: contactList.count > 0
|
|
anchors.right: parent.right
|
|
//% "Accept all"
|
|
text: qsTrId("accept-all")
|
|
anchors.bottom: parent.bottom
|
|
onClicked: acceptAllDialog.open()
|
|
}
|
|
}
|
|
}
|