2023-08-02 15:28:57 +00:00
import QtQuick 2.15
import QtQuick . Controls 2.15
import QtQuick . Layouts 1.15
import QtQml . Models 2.15
import StatusQ . Core 0.1
import StatusQ . Controls 0.1
import StatusQ . Popups . Dialog 0.1
import StatusQ . Core . Theme 0.1
2023-09-01 09:27:44 +00:00
import StatusQ . Core . Utils 0.1
2023-08-02 15:28:57 +00:00
import AppLayouts . Communities . panels 1.0
import utils 1.0
StatusDialog {
id: root
enum ActionType {
RemotelyDestruct , Kick , Ban
}
title: {
if ( actionType === TokenMasterActionPopup . ActionType . Ban )
return qsTr ( "Ban %1" ) . arg ( userName )
if ( actionType === TokenMasterActionPopup . ActionType . Kick )
return qsTr ( "Kick %1" ) . arg ( userName )
return qsTr ( "Remotely destruct TokenMaster token" )
}
implicitWidth: 600
property int actionType: TokenMasterActionPopup . ActionType . RemotelyDestruct
property string communityName
property string userName
property string networkName
2023-09-01 09:27:44 +00:00
2023-08-02 15:28:57 +00:00
property string feeText
property string feeErrorText
property bool isFeeLoading
2023-09-01 09:27:44 +00:00
2023-08-02 15:28:57 +00:00
property var accountsModel
2023-09-01 09:27:44 +00:00
readonly property alias selectedAccount: d . accountAddress
2023-09-21 13:02:18 +00:00
readonly property alias selectedAccountName: d . accountName
readonly property alias deleteMessages: deleteMessagesSwitch . checked
2023-08-02 15:28:57 +00:00
readonly property string feeLabel: qsTr ( "Remotely destruct 1 TokenMaster token on %1" ) . arg (
root . networkName )
signal remotelyDestructClicked
signal kickClicked
signal banClicked
2023-09-21 13:02:18 +00:00
QtObject {
id: d
2024-06-07 12:27:56 +00:00
readonly property string accountAddress: feesBox . accountsSelector . currentAccountAddress
readonly property string accountName: feesBox . accountsSelector . currentAccount . name ? ? ""
2023-09-21 13:02:18 +00:00
}
2023-08-02 15:28:57 +00:00
ColumnLayout {
anchors.fill: parent
spacing: 20
StatusBaseText {
Layout.fillWidth: true
text: {
if ( root . actionType === TokenMasterActionPopup . ActionType . RemotelyDestruct )
return qsTr ( 'Continuing will destroy the TokenMaster token held by <span style="font-weight:600;">%1</span> and revoke the permissions they have by virtue of holding this token.' )
. arg ( root . userName )
if ( root . actionType === TokenMasterActionPopup . ActionType . Kick )
return qsTr ( 'Are you sure you kick <span style="font-weight:600;">%1</span> from %2? <span style="font-weight:600;">%1</span> is a TokenMaster hodler. In order to kick them you must also remotely destruct their TokenMaster token to revoke the permissions they have by virtue of holding this token.' )
. arg ( root . userName ) . arg ( root . communityName )
if ( root . actionType === TokenMasterActionPopup . ActionType . Ban )
return qsTr ( 'Are you sure you ban <span style="font-weight:600;">%1</span> from %2? <span style="font-weight:600;">%1</span> is a TokenMaster hodler. In order to kick them you must also remotely destruct their TokenMaster token to revoke the permissions they have by virtue of holding this token.' )
. arg ( root . userName ) . arg ( root . communityName )
}
textFormat: Text . RichText
wrapMode: Text . Wrap
lineHeight: 22
lineHeightMode: Text . FixedHeight
}
Rectangle {
Layout.bottomMargin: 2
Layout.preferredHeight: 1
Layout.fillWidth: true
visible: root . actionType
!== TokenMasterActionPopup . ActionType . RemotelyDestruct
color: Theme . palette . baseColor2
}
RowLayout {
visible: root . actionType === TokenMasterActionPopup . ActionType . Ban
StatusBaseText {
Layout.fillWidth: true
text: qsTr ( "Delete all messages posted by the user" )
color: Theme . palette . directColor1
font.pixelSize: Theme . primaryTextFontSize
}
StatusSwitch {
id: deleteMessagesSwitch
checked: true
verticalPadding: 2
}
}
RowLayout {
Layout.bottomMargin: 2
visible: root . actionType
!== TokenMasterActionPopup . ActionType . RemotelyDestruct
StatusBaseText {
Layout.fillWidth: true
text: qsTr ( "Remotely destruct 1 TokenMaster token" )
color: Theme . palette . directColor1
font.pixelSize: Theme . primaryTextFontSize
}
StatusSwitch {
id: remotelyDestructSwitch
checked: true
enabled: false
verticalPadding: 2
}
}
FeesBox {
2024-06-07 12:27:56 +00:00
id: feesBox
2023-08-02 15:28:57 +00:00
Layout.fillWidth: true
implicitWidth: 0
accountsSelector.model: root . accountsModel
accountErrorText: root . feeErrorText
model: QtObject {
id: singleFeeModel
readonly property string title: root . feeLabel
readonly property string feeText: root . isFeeLoading ?
2023-09-01 09:27:44 +00:00
"" : root . feeText
2023-08-02 15:28:57 +00:00
readonly property bool error: root . feeErrorText !== ""
}
}
}
footer: StatusDialogFooter {
spacing: Style . current . padding
rightButtons: ObjectModel {
StatusFlatButton {
text: qsTr ( "Cancel" )
onClicked: close ( )
}
StatusButton {
enabled: ! root . isFeeLoading && root . feeErrorText === ""
text: {
if ( root . actionType === TokenMasterActionPopup . ActionType . Ban )
return qsTr ( "Ban %1 and remotely destruct 1 token" ) . arg ( root . userName )
if ( root . actionType === TokenMasterActionPopup . ActionType . Kick )
return qsTr ( "Kick %1 and remotely destruct 1 token" ) . arg ( root . userName )
return qsTr ( "Remotely destruct 1 token" )
}
type: StatusBaseButton . Type . Danger
onClicked: {
if ( root . actionType === TokenMasterActionPopup . ActionType . RemotelyDestruct )
root . remotelyDestructClicked ( )
else if ( root . actionType === TokenMasterActionPopup . ActionType . Ban )
root . banClicked ( )
else if ( root . actionType === TokenMasterActionPopup . ActionType . Kick )
root . kickClicked ( )
}
}
}
}
}