334 lines
11 KiB
QML
334 lines
11 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQml.Models 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Popups.Dialog 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Core.Utils 0.1
|
|
|
|
import AppLayouts.Communities.panels 1.0
|
|
|
|
import utils 1.0
|
|
|
|
StatusDialog {
|
|
id: root
|
|
|
|
// Community related props:
|
|
required property string communityName
|
|
required property string communityLogo
|
|
required property string communityColor
|
|
|
|
// Owner token related props:
|
|
required property string tokenSymbol
|
|
required property string tokenChainName
|
|
|
|
// Fees calculation props:
|
|
property string feeText
|
|
property string feeErrorText
|
|
property bool isFeeLoading
|
|
property string feeLabel: qsTr("Update %1 Community smart contract on %2").arg(root.communityName).arg(root.tokenChainName)
|
|
|
|
// Account expected roles: address, name, color, emoji, walletType
|
|
property var accounts
|
|
|
|
signal finaliseOwnershipClicked
|
|
signal rejectClicked
|
|
signal visitCommunityClicked
|
|
signal openControlNodeDocClicked(string link)
|
|
|
|
QtObject {
|
|
id: d
|
|
|
|
readonly property string controlNodeLink: Constants.statusHelpLinkPrefix + "status-communities/about-the-control-node-in-status-communities/"
|
|
readonly property int init: 0
|
|
readonly property int finalise: 1
|
|
|
|
property bool ackCheck: false
|
|
|
|
// Fees related props:
|
|
property string accountAddress: ""
|
|
property string accountName: ""
|
|
}
|
|
|
|
width: 640 // by design
|
|
padding: 0
|
|
|
|
component CustomText : StatusBaseText {
|
|
Layout.fillWidth: true
|
|
|
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
|
lineHeight: 1.2
|
|
}
|
|
|
|
contentItem: StatusScrollView {
|
|
id: scrollView
|
|
|
|
contentWidth: availableWidth
|
|
contentHeight: loader.item.height
|
|
|
|
padding: Style.current.padding
|
|
|
|
Loader {
|
|
id: loader
|
|
|
|
width: scrollView.availableWidth
|
|
sourceComponent: initialPanel
|
|
state: d.init
|
|
states: [
|
|
State {
|
|
name: d.init
|
|
|
|
PropertyChanges { target: loader; sourceComponent: initialPanel }
|
|
PropertyChanges {
|
|
target: acceptBtn
|
|
text: qsTr("Finalise %1 ownership").arg(root.communityName)
|
|
enabled: true
|
|
|
|
onClicked: loader.state = d.finalise
|
|
}
|
|
PropertyChanges {
|
|
target: rejectBtn
|
|
visible: true
|
|
|
|
onClicked: root.rejectClicked()
|
|
}
|
|
PropertyChanges { target: backButton; visible: false }
|
|
},
|
|
State {
|
|
name: d.finalise
|
|
|
|
PropertyChanges { target: loader; sourceComponent: finalisePanel }
|
|
PropertyChanges {
|
|
target: acceptBtn
|
|
text: qsTr("Make this device the control node and update smart contract")
|
|
enabled: d.ackCheck && !root.isFeeLoading && root.feeErrorText === ""
|
|
|
|
onClicked: root.finaliseOwnershipClicked()
|
|
}
|
|
PropertyChanges { target: rejectBtn; visible: false }
|
|
PropertyChanges {
|
|
target: backButton
|
|
visible: true
|
|
|
|
onClicked: loader.state = d.init
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
header: StatusDialogHeader {
|
|
headline.title: qsTr("Finalise %1 ownership").arg(root.communityName)
|
|
actions.closeButton.onClicked: root.close()
|
|
leftComponent: StatusSmartIdenticon {
|
|
asset.name: root.communityLogo
|
|
asset.isImage: !!asset.name
|
|
}
|
|
}
|
|
|
|
footer: StatusDialogFooter {
|
|
spacing: Style.current.padding
|
|
|
|
rightButtons: ObjectModel {
|
|
StatusFlatButton {
|
|
id: rejectBtn
|
|
|
|
text: qsTr("I don't want to be the owner")
|
|
|
|
onClicked: {
|
|
root.rejectClicked()
|
|
close()
|
|
}
|
|
}
|
|
|
|
StatusButton {
|
|
id: acceptBtn
|
|
}
|
|
}
|
|
leftButtons: ObjectModel {
|
|
StatusBackButton {
|
|
id: backButton
|
|
|
|
Layout.minimumWidth: implicitWidth
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: initialPanel
|
|
|
|
ColumnLayout {
|
|
spacing: Style.current.padding
|
|
|
|
CustomText {
|
|
text: qsTr("Congratulations! You have been sent the %1 Community Owner token.").arg(root.communityName)
|
|
font.bold: true
|
|
}
|
|
|
|
CustomText {
|
|
textFormat: Text.RichText
|
|
text: qsTr("To finalise your ownership and assume ultimate admin rights for the %1 Community, you need to make your device the Community's <a style=\"color:%3;\" href=\"%2\">control node</a><a style=\"color:%3;text-decoration: none\" href=\"%2\">↗</a>. You will also need to sign a small transaction to update the %1 Community smart contract to make you the official signatory for all Community changes.").arg(root.communityName).arg(d.controlNodeLink).arg(color)
|
|
|
|
onLinkActivated: root.openControlNodeDocClicked(link)
|
|
}
|
|
|
|
PrivilegedTokenArtworkPanel {
|
|
id: tokenPanel
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.topMargin: Style.current.padding
|
|
|
|
isOwner: true
|
|
artwork: root.communityLogo
|
|
color: root.communityColor
|
|
size: PrivilegedTokenArtworkPanel.Size.Large
|
|
}
|
|
|
|
Rectangle {
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.preferredWidth: tokenPanel.width
|
|
Layout.preferredHeight: boxContent.implicitHeight + Style.current.padding
|
|
Layout.bottomMargin: Style.current.padding
|
|
|
|
radius: 8
|
|
border.color: Theme.palette.baseColor2
|
|
color: "transparent"
|
|
|
|
ColumnLayout {
|
|
id: boxContent
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: 2
|
|
|
|
StatusBaseText {
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
text: qsTr("Symbol")
|
|
elide: Text.ElideRight
|
|
font.pixelSize: Style.current.additionalTextSize
|
|
color: Theme.palette.baseColor1
|
|
}
|
|
|
|
StatusBaseText {
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
text: root.tokenSymbol
|
|
elide: Text.ElideRight
|
|
font.pixelSize: Theme.primaryTextFontSize
|
|
color: Theme.palette.directColor1
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusListItem {
|
|
Layout.fillWidth: true
|
|
Layout.bottomMargin: Style.current.padding
|
|
|
|
title: root.communityName
|
|
border.color: Theme.palette.baseColor2
|
|
asset.name: root.communityLogo
|
|
asset.isImage: true
|
|
asset.isLetterIdenticon: !asset.name
|
|
components: [
|
|
RowLayout {
|
|
StatusIcon {
|
|
icon: "arrow-right"
|
|
color: Theme.palette.primaryColor1
|
|
}
|
|
|
|
StatusBaseText {
|
|
Layout.rightMargin: Style.current.padding
|
|
|
|
text: qsTr("Visit Community")
|
|
font.pixelSize: Style.current.additionalTextSize
|
|
color: Theme.palette.primaryColor1
|
|
}
|
|
}
|
|
]
|
|
|
|
onClicked: {
|
|
close()
|
|
root.visitCommunityClicked()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: finalisePanel
|
|
|
|
ColumnLayout {
|
|
spacing: Style.current.padding
|
|
|
|
CustomText {
|
|
text: qsTr("Finalising your ownership of the %1 Community requires you to:").arg(root.communityName)
|
|
}
|
|
|
|
CustomText {
|
|
text: qsTr("1. Make this device the control node for the Community")
|
|
font.bold: true
|
|
}
|
|
|
|
CustomText {
|
|
Layout.topMargin: -Style.current.halfPadding
|
|
|
|
text: qsTr("It is vital to keep your device online and running Status in order for the Community to operate effectively. Login with this account via another synced desktop device if you think it might be better suited for this purpose.")
|
|
}
|
|
|
|
CustomText {
|
|
text: qsTr("2. Update the %1 Community smart contract").arg(root.communityName)
|
|
font.bold: true
|
|
}
|
|
|
|
CustomText {
|
|
Layout.topMargin: -Style.current.halfPadding
|
|
|
|
text: qsTr("This transaction updates the %1 Community smart contract, making you the %1 Community owner.").arg(root.communityName)
|
|
}
|
|
|
|
FeesBox {
|
|
Layout.fillWidth: true
|
|
|
|
implicitWidth: 0
|
|
|
|
accountsSelector.model: root.accounts
|
|
accountErrorText: root.feeErrorText
|
|
accountSelectorText: qsTr("Gas fees will be paid from")
|
|
|
|
model: QtObject {
|
|
id: singleFeeModel
|
|
|
|
readonly property string title: root.feeLabel
|
|
readonly property string feeText: root.isFeeLoading ? "" : root.feeText
|
|
readonly property bool error: root.feeErrorText !== ""
|
|
}
|
|
|
|
accountsSelector.onCurrentIndexChanged: {
|
|
if (accountsSelector.currentIndex < 0)
|
|
return
|
|
|
|
const item = ModelUtils.get(accountsSelector.model,
|
|
accountsSelector.currentIndex)
|
|
d.accountAddress = item.address
|
|
d.accountName = item.name
|
|
}
|
|
}
|
|
|
|
StatusCheckBox {
|
|
Layout.topMargin: -Style.current.halfPadding
|
|
Layout.fillWidth: true
|
|
|
|
checked: d.ackCheck
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
text: qsTr("I acknowledge that I must keep this device online and running Status as much of the time as possible for the %1 Community to operate effectively").arg(root.communityName)
|
|
|
|
onCheckStateChanged: d.ackCheck = checked
|
|
}
|
|
}
|
|
}
|
|
}
|