2023-06-22 21:24:30 +00:00
import QtQuick 2.15
import QtQuick . Controls 2.15
import QtQuick . Layouts 1.15
2023-03-09 11:12:49 +00:00
import QtQml 2.15
2023-03-07 11:32:45 +00:00
import StatusQ . Core . Theme 0.1
2023-05-22 13:00:40 +00:00
import StatusQ . Controls 0.1
2023-07-18 17:34:57 +00:00
import StatusQ . Core . Utils 0.1 as SQUtils
2023-02-17 11:57:17 +00:00
2023-06-28 19:30:01 +00:00
import AppLayouts . Communities . controls 1.0
2023-06-23 06:17:04 +00:00
import AppLayouts . Communities . helpers 1.0
2023-06-28 22:11:58 +00:00
import AppLayouts . Communities . layouts 1.0
2023-06-28 19:30:01 +00:00
import AppLayouts . Communities . popups 1.0
import AppLayouts . Communities . views 1.0
2023-02-17 11:57:17 +00:00
2023-07-06 12:33:27 +00:00
import shared . controls 1.0
2023-02-17 11:57:17 +00:00
import utils 1.0
2023-06-27 19:56:44 +00:00
import shared . popups 1.0
2023-03-28 13:55:34 +00:00
import SortFilterProxyModel 0.2
2023-02-17 11:57:17 +00:00
2023-06-28 19:30:01 +00:00
StackView {
2023-02-17 11:57:17 +00:00
id: root
2023-06-01 10:38:56 +00:00
// General properties:
2023-07-18 17:34:57 +00:00
property int viewWidth: 560 // by design
2023-07-06 12:33:27 +00:00
required property string communityName
2023-07-10 14:12:25 +00:00
required property string communityLogo
required property color communityColor
2023-07-18 17:34:57 +00:00
// User profile props:
required property bool isOwner
required property bool isTokenMasterOwner
required property bool isAdmin
readonly property bool isAdminOnly: root . isAdmin && ! root . isPrivilegedTokenOwnerProfile
readonly property bool isPrivilegedTokenOwnerProfile: root . isOwner || root . isTokenMasterOwner
// Owner and TMaster token related properties:
readonly property bool arePrivilegedTokensDeployed: root . isOwnerTokenDeployed && root . isTMasterTokenDeployed
property bool isOwnerTokenDeployed: false
property bool isTMasterTokenDeployed: false
// It will monitorize if Owner and/or TMaster token items are included in the `tokensModel` despite the deployment state
property bool ownerOrTMasterTokenItemsExist: false
2023-06-01 10:38:56 +00:00
2023-03-08 13:44:47 +00:00
// Models:
2023-02-17 11:57:17 +00:00
property var tokensModel
2023-07-04 13:21:15 +00:00
property var tokensModelWallet
2023-06-20 10:12:56 +00:00
property var accounts // Expected roles: address, name, color, emoji, walletType
2023-04-13 08:09:06 +00:00
2023-06-01 10:38:56 +00:00
// Transaction related properties:
2023-03-23 13:17:07 +00:00
property string feeText
2023-07-26 22:39:13 +00:00
property string feeErrorText
2023-03-23 13:17:07 +00:00
property bool isFeeLoading: true
2023-03-08 13:44:47 +00:00
// Network related properties:
property var layer1Networks
property var layer2Networks
property var testNetworks
property var enabledNetworks
property var allNetworks
2023-06-01 10:38:56 +00:00
signal mintCollectible ( var collectibleItem )
signal mintAsset ( var assetItem )
2023-07-18 12:39:38 +00:00
signal mintOwnerToken ( var ownerToken , var tMasterToken )
2023-06-28 19:30:01 +00:00
2023-07-26 22:39:13 +00:00
signal deployFeesRequested ( int chainId , string accountAddress , int tokenType )
2023-06-21 16:36:20 +00:00
signal signRemoteDestructTransactionOpened ( var remotelyDestructTokensList , // [key , amount]
string tokenKey )
signal remotelyDestructCollectibles ( var remotelyDestructTokensList , // [key , amount]
string tokenKey )
2023-06-06 12:54:35 +00:00
signal signBurnTransactionOpened ( string tokenKey , int amount )
2023-06-01 10:38:56 +00:00
signal burnToken ( string tokenKey , int amount )
2023-06-21 16:40:26 +00:00
signal airdropToken ( string tokenKey , int type , var addresses )
2023-05-30 15:18:45 +00:00
signal deleteToken ( string tokenKey )
2023-04-17 12:11:31 +00:00
function setFeeLoading ( ) {
root . isFeeLoading = true
root . feeText = ""
2023-07-26 22:39:13 +00:00
root . feeErrorText = ""
2023-04-17 12:11:31 +00:00
}
2023-02-17 11:57:17 +00:00
function navigateBack ( ) {
2023-06-28 19:30:01 +00:00
pop ( StackView . Immediate )
2023-02-17 11:57:17 +00:00
}
2023-06-28 19:30:01 +00:00
function resetNavigation ( ) {
pop ( initialItem , StackView . Immediate )
2023-06-14 07:19:45 +00:00
}
2023-07-18 17:34:57 +00:00
// This method will be called from the outsite from a different section like Airdrop or Permissions
2023-06-28 19:30:01 +00:00
function openNewTokenForm ( isAssetView ) {
resetNavigation ( )
2023-07-18 17:34:57 +00:00
if ( root . isAdminOnly ) {
// Admins can only see the initial tokens page. They cannot mint
root . push ( mintedTokensViewComponent , StackView . Immediate )
return
}
if ( root . arePrivilegedTokensInProgress || root . arePrivilegedTokensFailed ) {
// If Owner and TMaster tokens deployment action has been started at least ones, but still without success
root . push ( mintedTokensViewComponent , StackView . Immediate )
return
}
if ( root . ownerOrTMasterTokenItemsExist ) {
// Regular minting flow, selecting the specific tab
2023-07-10 14:12:25 +00:00
const properties = { isAssetView }
root . push ( newTokenViewComponent , properties , StackView . Immediate )
2023-07-18 17:34:57 +00:00
return
}
if ( root . isOwner ) {
// Owner and TMaster tokens to be deployed.
2023-07-10 14:12:25 +00:00
root . push ( ownerTokenViewComponent , StackView . Immediate )
2023-07-18 17:34:57 +00:00
return
2023-07-10 14:12:25 +00:00
}
2023-07-18 17:34:57 +00:00
// Any other case, initial view
root . push ( mintedTokensViewComponent , StackView . Immediate )
2023-03-07 11:32:45 +00:00
}
2023-06-28 19:30:01 +00:00
property string previousPageName: depth > 1 ? qsTr ( "Back" ) : ""
2023-05-30 15:18:45 +00:00
2023-07-18 17:34:57 +00:00
initialItem: mintedTokensViewComponent
2023-07-10 14:12:25 +00:00
2023-07-18 17:34:57 +00:00
Component {
id: tokenObjectComponent
TokenObject { }
2023-07-10 14:12:25 +00:00
}
2023-07-18 17:34:57 +00:00
// Mint tokens possible view contents:
Component {
id: mintedTokensViewComponent
SettingsPage {
implicitWidth: 0
title: qsTr ( "Tokens" )
2023-06-22 21:24:30 +00:00
2023-07-18 17:34:57 +00:00
buttons: [
// TO BE REMOVED when Owner and TMaster backend is integrated. This is just to keep the minting flow available somehow
StatusButton {
2023-06-23 07:51:20 +00:00
2023-07-18 17:34:57 +00:00
text: qsTr ( "TEMP Mint token" )
2023-05-30 15:18:45 +00:00
2023-07-18 17:34:57 +00:00
onClicked: root . push ( newTokenViewComponent , StackView . Immediate )
2023-03-09 11:12:49 +00:00
2023-07-18 17:34:57 +00:00
StatusToolTip {
visible: parent . hovered
text: "TO BE REMOVED when Owner and TMaster backend is integrated. This is just to keep the airdrop flow available somehow"
orientation: StatusToolTip . Orientation . Bottom
y: parent . height + 12
maxWidth: 300
}
} ,
DisabledTooltipButton {
readonly property bool buttonEnabled: root . isPrivilegedTokenOwnerProfile && root . arePrivilegedTokensDeployed
buttonType: DisabledTooltipButton . Normal
aliasedObjectName: "addNewItemButton"
text: qsTr ( "Mint token" )
enabled: root . isAdminOnly || buttonEnabled
interactive: buttonEnabled
onClicked: root . push ( newTokenViewComponent , StackView . Immediate )
tooltipText: qsTr ( "In order to mint, you must hodl the TokenMaster token for %1" ) . arg ( root . communityName )
}
]
contentItem: MintedTokensView {
model: SortFilterProxyModel {
sourceModel: root . tokensModel
proxyRoles: ExpressionRole {
name: "color"
expression: root . communityColor
}
}
isOwner: root . isOwner
isAdmin: root . isAdmin
communityName: root . communityName
onItemClicked: root . push ( tokenViewComponent , { tokenKey } , StackView . Immediate )
onMintOwnerTokenClicked: root . push ( ownerTokenViewComponent , StackView . Immediate )
}
}
2023-03-09 11:12:49 +00:00
}
2023-07-10 14:12:25 +00:00
Component {
id: ownerTokenViewComponent
SettingsPage {
id: ownerTokenPage
title: qsTr ( "Mint Owner token" )
contentItem: OwnerTokenWelcomeView {
2023-07-18 12:39:38 +00:00
viewWidth: root . viewWidth
2023-07-10 14:12:25 +00:00
communityLogo: root . communityLogo
communityColor: root . communityColor
communityName: root . communityName
2023-07-18 12:39:38 +00:00
onNextClicked: root . push ( ownerTokenEditViewComponent , StackView . Immediate )
}
}
}
Component {
id: ownerTokenEditViewComponent
SettingsPage {
id: ownerTokenPage
2023-07-18 17:34:57 +00:00
property int chainId
property string accountName
property string accountAddress
2023-07-18 12:39:38 +00:00
title: qsTr ( "Mint Owner token" )
contentItem: EditOwnerTokenView {
id: editOwnerTokenView
function signMintTransaction ( ) {
root . mintOwnerToken ( ownerToken , tMasterToken )
root . resetNavigation ( )
}
viewWidth: root . viewWidth
2023-07-18 17:34:57 +00:00
2023-07-18 12:39:38 +00:00
communityLogo: root . communityLogo
communityColor: root . communityColor
communityName: root . communityName
2023-07-18 17:34:57 +00:00
ownerToken.chainId: ownerTokenPage . chainId
ownerToken.accountName: ownerTokenPage . accountName
ownerToken.accountAddress: ownerTokenPage . accountAddress
tMasterToken.chainId: ownerTokenPage . chainId
tMasterToken.accountName: ownerTokenPage . accountName
tMasterToken.accountAddress: ownerTokenPage . accountAddress
2023-07-18 12:39:38 +00:00
layer1Networks: root . layer1Networks
layer2Networks: root . layer2Networks
testNetworks: root . testNetworks
enabledNetworks: root . testNetworks
allNetworks: root . allNetworks
accounts: root . accounts
onMintClicked: signMintPopup . open ( )
2023-07-26 22:39:13 +00:00
onDeployFeesRequested: root . deployFeesRequested (
ownerToken . chainId ,
ownerToken . accountAddress ,
Constants . TokenType . ERC721 )
feeText: root . feeText
feeErrorText: root . feeErrorText
isFeeLoading: root . isFeeLoading
SignMultiTokenTransactionsPopup {
2023-07-18 12:39:38 +00:00
id: signMintPopup
2023-07-26 22:39:13 +00:00
title: qsTr ( "Sign transaction - Mint %1 tokens" ) . arg (
editOwnerTokenView . communityName )
totalFeeText: root . isFeeLoading ?
"" : root . feeText
2023-07-18 12:39:38 +00:00
accountName: editOwnerTokenView . ownerToken . accountName
2023-07-26 22:39:13 +00:00
model: QtObject {
readonly property string title: editOwnerTokenView . feeLabel
readonly property string feeText: signMintPopup . totalFeeText
readonly property bool error: root . feeErrorText !== ""
2023-07-18 12:39:38 +00:00
}
2023-07-26 22:39:13 +00:00
2023-07-18 12:39:38 +00:00
onSignTransactionClicked: editOwnerTokenView . signMintTransaction ( )
}
2023-07-10 14:12:25 +00:00
}
}
}
2023-02-17 11:57:17 +00:00
Component {
2023-07-03 14:44:02 +00:00
id: newTokenViewComponent
2023-02-17 11:57:17 +00:00
2023-06-28 19:30:01 +00:00
SettingsPage {
id: newTokenPage
2023-06-09 11:50:22 +00:00
2023-06-22 21:24:30 +00:00
property TokenObject asset: TokenObject {
2023-07-03 14:44:02 +00:00
type: Constants . TokenType . ERC20
2023-06-22 21:24:30 +00:00
}
property TokenObject collectible: TokenObject {
2023-07-03 14:44:02 +00:00
type: Constants . TokenType . ERC721
2023-06-22 21:24:30 +00:00
}
2023-06-09 11:50:22 +00:00
property bool isAssetView: false
2023-06-09 16:42:35 +00:00
property int validationMode: StatusInput . ValidationMode . OnlyWhenDirty
property string referenceName: ""
property string referenceSymbol: ""
2023-06-09 11:50:22 +00:00
2023-07-18 17:34:57 +00:00
title: optionsTab . currentItem === assetsTab
2023-06-30 14:36:46 +00:00
? qsTr ( "Mint asset" ) : qsTr ( "Mint collectible" )
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
contentItem: ColumnLayout {
width: root . viewWidth
spacing: Style . current . padding
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
StatusSwitchTabBar {
id: optionsTab
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
Layout.preferredWidth: root . viewWidth
currentIndex: newTokenPage . isAssetView ? 1 : 0
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
StatusSwitchTabButton {
id: collectiblesTab
text: qsTr ( "Collectibles" )
}
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
StatusSwitchTabButton {
id: assetsTab
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
text: qsTr ( "Assets" )
}
2023-05-22 13:00:40 +00:00
}
2023-06-28 19:30:01 +00:00
StackLayout {
Layout.preferredWidth: root . viewWidth
Layout.fillHeight: true
2023-05-22 13:00:40 +00:00
2023-07-18 17:34:57 +00:00
currentIndex: optionsTab . currentItem === collectiblesTab ? 0 : 1
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
CustomEditCommunityTokenView {
id: newCollectibleView
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
isAssetView: false
validationMode: ! newTokenPage . isAssetView
? newTokenPage . validationMode
: StatusInput . ValidationMode . OnlyWhenDirty
collectible: newTokenPage . collectible
}
2023-06-09 11:50:22 +00:00
2023-06-28 19:30:01 +00:00
CustomEditCommunityTokenView {
id: newAssetView
2023-06-09 11:50:22 +00:00
2023-06-28 19:30:01 +00:00
isAssetView: true
validationMode: newTokenPage . isAssetView
? newTokenPage . validationMode
: StatusInput . ValidationMode . OnlyWhenDirty
asset: newTokenPage . asset
}
2023-05-22 13:00:40 +00:00
2023-06-28 19:30:01 +00:00
component CustomEditCommunityTokenView: EditCommunityTokenView {
viewWidth: root . viewWidth
layer1Networks: root . layer1Networks
layer2Networks: root . layer2Networks
testNetworks: root . testNetworks
2023-07-18 17:34:57 +00:00
enabledNetworks: root . enabledNetworks
2023-06-28 19:30:01 +00:00
allNetworks: root . allNetworks
accounts: root . accounts
tokensModel: root . tokensModel
2023-07-04 13:21:15 +00:00
tokensModelWallet: root . tokensModelWallet
2023-06-28 19:30:01 +00:00
referenceName: newTokenPage . referenceName
referenceSymbol: newTokenPage . referenceSymbol
2023-07-27 20:29:31 +00:00
feeText: root . feeText
feeErrorText: root . feeErrorText
isFeeLoading: root . isFeeLoading
2023-06-28 19:30:01 +00:00
onPreviewClicked: {
const properties = {
token: isAssetView ? asset : collectible
}
2023-07-03 14:44:02 +00:00
root . push ( previewTokenViewComponent , properties ,
2023-06-28 19:30:01 +00:00
StackView . Immediate )
2023-06-22 21:24:30 +00:00
}
2023-07-27 20:29:31 +00:00
onDeployFeesRequested: {
if ( isAssetView )
root . deployFeesRequested ( asset . chainId ,
asset . accountAddress ,
Constants . TokenType . ERC20 )
else
root . deployFeesRequested ( collectible . chainId ,
collectible . accountAddress ,
Constants . TokenType . ERC721 )
}
2023-05-25 10:46:53 +00:00
}
2023-05-22 13:00:40 +00:00
}
2023-03-09 11:12:49 +00:00
}
2023-03-07 11:32:45 +00:00
}
}
Component {
2023-07-03 14:44:02 +00:00
id: previewTokenViewComponent
2023-03-07 11:32:45 +00:00
2023-06-28 19:30:01 +00:00
SettingsPage {
id: tokenPreviewPage
2023-03-07 11:32:45 +00:00
2023-06-28 19:30:01 +00:00
property alias token: preview . token
2023-03-23 13:17:07 +00:00
2023-06-30 14:36:46 +00:00
title: token . name
subtitle: token . symbol
2023-05-15 12:49:26 +00:00
2023-06-28 19:30:01 +00:00
contentItem: CommunityTokenView {
id: preview
2023-03-23 13:17:07 +00:00
2023-07-27 20:29:31 +00:00
viewWidth: root . viewWidth
preview: true
feeText: root . feeText
feeErrorText: root . feeErrorText
isFeeLoading: root . isFeeLoading
accounts: root . accounts
onDeployFeesRequested: root . deployFeesRequested (
token . chainId , token . accountAddress ,
token . type )
onMintClicked: signMintPopup . open ( )
2023-06-28 19:30:01 +00:00
function signMintTransaction ( ) {
2023-04-03 11:29:36 +00:00
root . setFeeLoading ( )
2023-03-31 12:52:51 +00:00
2023-06-28 19:30:01 +00:00
if ( preview . isAssetView )
root . mintAsset ( token )
else
root . mintCollectible ( token )
2023-03-31 12:52:51 +00:00
2023-06-28 19:30:01 +00:00
root . resetNavigation ( )
2023-03-31 12:52:51 +00:00
}
2023-07-27 20:29:31 +00:00
SignMultiTokenTransactionsPopup {
2023-06-28 19:30:01 +00:00
id: signMintPopup
2023-05-30 15:18:45 +00:00
2023-07-03 14:44:02 +00:00
title: qsTr ( "Sign transaction - Mint %1 token" ) . arg (
2023-07-27 20:29:31 +00:00
preview . token . name )
totalFeeText: root . isFeeLoading ? "" : root . feeText
accountName: preview . token . accountName
model: QtObject {
readonly property string title: preview . feeLabel
readonly property string feeText: signMintPopup . totalFeeText
readonly property bool error: root . feeErrorText !== ""
2023-05-18 15:01:48 +00:00
}
2023-07-27 20:29:31 +00:00
2023-06-28 19:30:01 +00:00
onSignTransactionClicked: preview . signMintTransaction ( )
2023-06-05 13:49:36 +00:00
}
}
2023-03-07 11:32:45 +00:00
}
}
2023-07-03 14:44:02 +00:00
component TokenViewPage: SettingsPage {
id: tokenViewPage
2023-03-28 13:55:34 +00:00
2023-07-03 14:44:02 +00:00
readonly property alias token: view . token
2023-07-18 17:34:57 +00:00
readonly property bool deploymentFailed: view . deployState === Constants . ContractTransactionStatus . Failed
2023-03-28 13:55:34 +00:00
2023-07-03 14:44:02 +00:00
property alias tokenOwnersModel: view . tokenOwnersModel
property alias airdropKey: view . airdropKey
2023-03-28 13:55:34 +00:00
2023-07-18 17:34:57 +00:00
// Owner and TMaster related props
readonly property bool isPrivilegedTokenItem: token . isPrivilegedToken
readonly property bool isOwnerTokenItem: token . isPrivilegedToken && token . isOwner
readonly property bool isTMasterTokenItem: token . isPrivilegedToken && ! token . isOwner
2023-07-03 14:44:02 +00:00
title: view . name
subtitle: view . symbol
2023-06-22 21:24:30 +00:00
2023-07-03 14:44:02 +00:00
buttons: [
StatusButton {
text: qsTr ( "Delete" )
type: StatusBaseButton . Type . Danger
2023-03-28 13:55:34 +00:00
2023-07-18 17:34:57 +00:00
visible: ( ! tokenViewPage . isPrivilegedTokenItem ) && ! root . isAdminOnly && tokenViewPage . deploymentFailed
2023-05-30 15:18:45 +00:00
2023-07-03 14:44:02 +00:00
onClicked: deleteTokenAlertPopup . open ( )
} ,
StatusButton {
2023-07-18 17:34:57 +00:00
function retryAssetOrCollectible ( ) {
2023-07-03 14:44:02 +00:00
// https://bugreports.qt.io/browse/QTBUG-91917
var isAssetView = tokenViewPage . token . type === Constants . TokenType . ERC20
2023-05-18 15:01:48 +00:00
2023-07-18 17:34:57 +00:00
// Copy TokenObject
var tokenObject = tokenObjectComponent . createObject ( null , view . token )
2023-05-18 15:01:48 +00:00
2023-07-03 14:44:02 +00:00
// Then move on to the new token view, but token pre-filled:
var properties = {
isAssetView ,
referenceName: tokenObject . name ,
referenceSymbol: tokenObject . symbol ,
validationMode: StatusInput . ValidationMode . Always ,
[ isAssetView ? "asset" : "collectible" ] : tokenObject
2023-06-28 19:30:01 +00:00
}
2023-06-09 11:50:22 +00:00
2023-07-03 14:44:02 +00:00
var tokenView = root . push ( newTokenViewComponent , properties ,
2023-07-18 17:34:57 +00:00
StackView . Immediate )
2023-06-28 19:30:01 +00:00
2023-07-18 17:34:57 +00:00
// Cleanup dynamically created TokenObject
2023-07-03 14:44:02 +00:00
tokenView . Component . destruction . connect ( ( ) = > tokenObject . destroy ( ) )
2023-03-28 13:55:34 +00:00
}
2023-07-18 17:34:57 +00:00
// Owner or TMaster token
function retryPrivilegedToken ( ) {
var properties = {
chainId: view . token . chainId ,
accountName: view . token . accountName ,
accountAddress: view . token . accountAddress ,
}
root . push ( ownerTokenEditViewComponent , properties ,
StackView . Immediate )
}
text: qsTr ( "Retry mint" )
visible: ( tokenViewPage . isPrivilegedTokenItem && root . isOwner && tokenViewPage . deploymentFailed ) ||
( ! tokenViewPage . isPrivilegedTokenItem && ! root . isAdminOnly && tokenViewPage . deploymentFailed )
onClicked: {
2023-07-25 14:11:10 +00:00
if ( tokenViewPage . isPrivilegedTokenItem ) {
2023-07-18 17:34:57 +00:00
retryPrivilegedToken ( )
2023-07-25 14:11:10 +00:00
} else {
2023-07-18 17:34:57 +00:00
retryAssetOrCollectible ( )
2023-07-25 14:11:10 +00:00
}
2023-07-18 17:34:57 +00:00
}
2023-03-28 13:55:34 +00:00
}
2023-07-03 14:44:02 +00:00
]
2023-04-17 12:11:31 +00:00
2023-07-03 14:44:02 +00:00
contentItem: CommunityTokenView {
id: view
2023-06-05 13:49:36 +00:00
2023-07-03 14:44:02 +00:00
property string airdropKey // TO REMOVE: Temporal property until airdrop backend is not ready to use token key instead of symbol
2023-06-05 13:49:36 +00:00
2023-07-03 14:44:02 +00:00
viewWidth: root . viewWidth
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
token: TokenObject { }
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onGeneralAirdropRequested: {
root . airdropToken ( view . airdropKey , view . token . type , [ ] ) // tokenKey instead when backend airdrop ready to use key instead of symbol
}
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onAirdropRequested: {
root . airdropToken ( view . airdropKey , view . token . type , [ address ] ) // tokenKey instead when backend airdrop ready to use key instead of symbol
}
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onRemoteDestructRequested: {
remotelyDestructPopup . open ( )
// TODO: set the address selected in the popup's list
2023-06-05 13:49:36 +00:00
}
2023-07-03 14:44:02 +00:00
}
2023-06-05 13:49:36 +00:00
2023-07-03 14:44:02 +00:00
footer: MintTokensFooterPanel {
id: footer
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
readonly property TokenObject token: view . token
2023-06-28 19:30:01 +00:00
2023-07-18 17:34:57 +00:00
readonly property bool deployStateCompleted: token . deployState === Constants . ContractTransactionStatus . Completed
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
function closePopups ( ) {
remotelyDestructPopup . close ( )
alertPopup . close ( )
signTransactionPopup . close ( )
burnTokensPopup . close ( )
}
2023-06-28 19:30:01 +00:00
2023-07-18 17:34:57 +00:00
visible: {
if ( tokenViewPage . isOwnerTokenItem )
// Always hidden
return false
if ( tokenViewPage . isTMasterTokenItem )
// Only footer if owner profile
return root . isOwner
// Always present
return true
}
2023-07-03 14:44:02 +00:00
airdropEnabled: deployStateCompleted &&
( token . infiniteSupply ||
token . remainingTokens !== 0 )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
remotelyDestructEnabled: deployStateCompleted &&
! ! view . tokenOwnersModel &&
view . tokenOwnersModel . count > 0
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
burnEnabled: deployStateCompleted
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
remotelyDestructVisible: token . remotelyDestruct
burnVisible: ! token . infiniteSupply
2023-06-28 19:30:01 +00:00
2023-07-18 17:34:57 +00:00
onAirdropClicked: root . airdropToken ( view . airdropKey , // tokenKey instead when backend airdrop ready to use key instead of symbol
view . token . type , [ ] )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onRemotelyDestructClicked: remotelyDestructPopup . open ( )
onBurnClicked: burnTokensPopup . open ( )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
// helper properties to pass data through popups
property var remotelyDestructTokensList
property int burnAmount
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
RemotelyDestructPopup {
id: remotelyDestructPopup
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
collectibleName: view . token . name
model: view . tokenOwnersModel || null
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onRemotelyDestructClicked: {
2023-07-21 12:10:37 +00:00
remotelyDestructPopup . close ( )
2023-07-03 14:44:02 +00:00
footer . remotelyDestructTokensList = remotelyDestructTokensList
alertPopup . tokenCount = tokenCount
alertPopup . open ( )
2023-06-28 19:30:01 +00:00
}
2023-07-03 14:44:02 +00:00
}
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
AlertPopup {
id: alertPopup
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
property int tokenCount
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
title: qsTr ( "Remotely destruct %n token(s)" , "" , tokenCount )
acceptBtnText: qsTr ( "Remotely destruct" )
alertText: qsTr ( "Continuing will destroy tokens held by members and revoke any permissions they are given. To undo you will have to issue them new tokens." )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onAcceptClicked: {
signTransactionPopup . isRemotelyDestructTransaction = true
signTransactionPopup . open ( )
2023-06-28 19:30:01 +00:00
}
2023-07-03 14:44:02 +00:00
}
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
SignTokenTransactionsPopup {
id: signTransactionPopup
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
property bool isRemotelyDestructTransaction
readonly property string tokenKey: tokenViewPage . token . key
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
function signTransaction ( ) {
root . setFeeLoading ( )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
if ( signTransactionPopup . isRemotelyDestructTransaction )
root . remotelyDestructCollectibles (
footer . remotelyDestructTokensList , tokenKey )
else
root . burnToken ( tokenKey , footer . burnAmount )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
footerPanel . closePopups ( )
}
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
title: signTransactionPopup . isRemotelyDestructTransaction
2023-07-21 12:10:37 +00:00
? qsTr ( "Sign transaction - Self-destruct %1 tokens" ) . arg ( tokenName )
: qsTr ( "Sign transaction - Burn %1 tokens" ) . arg ( tokenName )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
tokenName: footer . token . name
accountName: footer . token . accountName
networkName: footer . token . chainName
feeText: root . feeText
isFeeLoading: root . isFeeLoading
2023-07-26 22:39:13 +00:00
errorText: root . feeErrorText
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onOpened: {
root . setFeeLoading ( )
signTransactionPopup . isRemotelyDestructTransaction
? root . signRemoteDestructTransactionOpened ( footer . remotelyDestructTokensList , tokenKey )
: root . signBurnTransactionOpened ( tokenKey , footer . burnAmount )
2023-06-28 19:30:01 +00:00
}
2023-07-03 14:44:02 +00:00
onSignTransactionClicked: signTransaction ( )
}
2023-04-17 12:11:31 +00:00
2023-07-03 14:44:02 +00:00
BurnTokensPopup {
id: burnTokensPopup
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
communityName: root . communityName
tokenName: footer . token . name
remainingTokens: footer . token . remainingTokens
tokenSource: footer . token . artworkSource
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onBurnClicked: {
2023-07-21 12:10:37 +00:00
burnTokensPopup . close ( )
2023-07-03 14:44:02 +00:00
footer . burnAmount = burnAmount
signTransactionPopup . isRemotelyDestructTransaction = false
signTransactionPopup . open ( )
2023-04-17 12:11:31 +00:00
}
}
2023-07-03 14:44:02 +00:00
}
2023-05-30 15:18:45 +00:00
2023-07-03 14:44:02 +00:00
AlertPopup {
id: deleteTokenAlertPopup
2023-05-30 15:18:45 +00:00
2023-07-03 14:44:02 +00:00
readonly property alias tokenName: view . token . name
2023-05-30 15:18:45 +00:00
2023-07-03 14:44:02 +00:00
width: 521
title: qsTr ( "Delete %1" ) . arg ( tokenName )
acceptBtnText: qsTr ( "Delete %1 token" ) . arg ( tokenName )
alertText: qsTr ( "%1 is not yet minted, are you sure you want to delete it? All data associated with this token including its icon and description will be permanently deleted." ) . arg ( tokenName )
2023-06-28 19:30:01 +00:00
2023-07-03 14:44:02 +00:00
onAcceptClicked: {
root . deleteToken ( tokenViewPage . token . key )
root . navigateBack ( )
}
}
}
Component {
id: tokenViewComponent
Item {
id: tokenViewPageWrapper
property string tokenKey
Repeater {
model: SortFilterProxyModel {
sourceModel: root . tokensModel
filters: ValueFilter {
roleName: "contractUniqueKey"
value: tokenViewPageWrapper . tokenKey
}
}
delegate: TokenViewPage {
implicitWidth: 0
anchors.fill: parent
tokenOwnersModel: model . tokenOwnersModel
airdropKey: model . symbol // TO BE REMOVED: When airdrop backend is ready to use token key instead of symbol
2023-07-18 17:34:57 +00:00
token.isPrivilegedToken: model . isPrivilegedToken
token.isOwner: model . isOwner
token.color: root . communityColor
2023-07-03 14:44:02 +00:00
token.accountName: model . accountName
token.artworkSource: model . image
token.chainIcon: model . chainIcon
token.chainId: model . chainId
token.chainName: model . chainName
token.decimals: model . decimals
token.deployState: model . deployState
token.description: model . description
token.infiniteSupply: model . infiniteSupply
token.key: model . contractUniqueKey
token.name: model . name
token.remainingTokens: model . remainingSupply
token.remotelyDestruct: model . remoteSelfDestruct
token.supply: model . supply
token.symbol: model . symbol
token.transferable: model . transferable
token.type: model . tokenType
2023-07-04 11:05:43 +00:00
token.burnState: model . burnState
2023-07-03 14:44:02 +00:00
// TODO: Backend
//token.accountAddress: model.accountAddress
//token.remotelyDestructState: model.remotelyDestructState
}
onCountChanged: {
if ( count === 0 )
root . navigateBack ( )
2023-06-28 19:30:01 +00:00
}
}
2023-05-30 15:18:45 +00:00
}
}
2023-02-17 11:57:17 +00:00
}