2022-03-07 09:33:38 +00:00
|
|
|
|
import QtQuick 2.13
|
|
|
|
|
|
2022-07-28 20:56:44 +00:00
|
|
|
|
|
2022-03-07 09:33:38 +00:00
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-07-19 13:45:27 +00:00
|
|
|
|
import StatusQ.Core.Utils 0.1
|
2022-07-28 20:56:44 +00:00
|
|
|
|
|
2022-03-07 09:33:38 +00:00
|
|
|
|
import utils 1.0
|
2022-07-28 20:56:44 +00:00
|
|
|
|
import shared.status 1.0
|
|
|
|
|
import shared.popups 1.0
|
|
|
|
|
import shared.controls 1.0
|
2022-03-07 09:33:38 +00:00
|
|
|
|
|
|
|
|
|
import "../../stores"
|
2022-03-10 17:01:17 +00:00
|
|
|
|
import "../../popups"
|
2022-03-07 09:33:38 +00:00
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
id: root
|
|
|
|
|
signal goBack
|
|
|
|
|
|
|
|
|
|
property WalletStore walletStore
|
2022-03-10 17:01:17 +00:00
|
|
|
|
property var emojiPopup
|
2022-03-07 09:33:38 +00:00
|
|
|
|
|
|
|
|
|
Column {
|
|
|
|
|
id: column
|
2022-05-07 11:45:15 +00:00
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
|
anchors.right: parent.right
|
|
|
|
|
anchors.leftMargin: Style.current.padding
|
|
|
|
|
anchors.rightMargin: Style.current.padding
|
2022-03-07 09:33:38 +00:00
|
|
|
|
|
2022-07-19 13:45:27 +00:00
|
|
|
|
spacing: Style.current.bigPadding
|
|
|
|
|
|
2022-03-10 17:01:17 +00:00
|
|
|
|
Row {
|
2022-03-07 09:33:38 +00:00
|
|
|
|
id: header
|
2022-03-10 17:01:17 +00:00
|
|
|
|
spacing: Style.current.smallPadding
|
2022-03-07 09:33:38 +00:00
|
|
|
|
StatusSmartIdenticon {
|
|
|
|
|
id: accountImage
|
2022-08-10 09:23:06 +00:00
|
|
|
|
objectName: "walletAccountViewAccountImage"
|
2022-03-10 17:01:17 +00:00
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2022-08-11 11:55:08 +00:00
|
|
|
|
asset: StatusAssetSettings {
|
2022-03-10 17:01:17 +00:00
|
|
|
|
width: isLetterIdenticon ? 40 : 20
|
|
|
|
|
height: isLetterIdenticon ? 40 : 20
|
2022-03-07 09:33:38 +00:00
|
|
|
|
color: walletStore.currentAccount.color
|
2022-03-10 17:01:17 +00:00
|
|
|
|
emoji: walletStore.currentAccount.emoji
|
|
|
|
|
name: !walletStore.currentAccount.emoji ? "filled-account": ""
|
|
|
|
|
letterSize: 14
|
|
|
|
|
isLetterIdenticon: !!walletStore.currentAccount.emoji
|
2022-08-11 11:55:08 +00:00
|
|
|
|
bgWidth: 40
|
|
|
|
|
bgHeight: 40
|
|
|
|
|
bgColor: Theme.palette.primaryColor3
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
2022-03-10 17:01:17 +00:00
|
|
|
|
}
|
|
|
|
|
Column {
|
|
|
|
|
spacing: Style.current.halfPadding
|
|
|
|
|
Row {
|
|
|
|
|
spacing: Style.current.halfPadding
|
|
|
|
|
StatusBaseText {
|
2022-08-10 09:23:06 +00:00
|
|
|
|
objectName: "walletAccountViewAccountName"
|
2022-03-10 17:01:17 +00:00
|
|
|
|
id: accountName
|
|
|
|
|
text: walletStore.currentAccount.name
|
|
|
|
|
font.weight: Font.Bold
|
|
|
|
|
font.pixelSize: 28
|
|
|
|
|
color: Theme.palette.directColor1
|
|
|
|
|
}
|
|
|
|
|
StatusFlatRoundButton {
|
2022-08-10 09:23:06 +00:00
|
|
|
|
objectName: "walletAccountViewEditAccountButton"
|
2022-03-10 17:01:17 +00:00
|
|
|
|
width: 28
|
|
|
|
|
height: 28
|
|
|
|
|
anchors.verticalCenter: accountName.verticalCenter
|
|
|
|
|
type: StatusFlatRoundButton.Type.Tertiary
|
|
|
|
|
color: "transparent"
|
|
|
|
|
icon.name: "pencil"
|
|
|
|
|
onClicked: Global.openPopup(renameAccountModalComponent)
|
|
|
|
|
}
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
2022-08-03 12:51:47 +00:00
|
|
|
|
StatusAddressPanel {
|
2022-12-12 12:07:51 +00:00
|
|
|
|
value: walletStore.currentAccount.address
|
2022-08-03 12:51:47 +00:00
|
|
|
|
|
|
|
|
|
font.weight: Font.Normal
|
|
|
|
|
|
|
|
|
|
showFrame: false
|
|
|
|
|
|
|
|
|
|
onDoCopy: (address) => globalUtils.copyToClipboard(address)
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-07-19 13:45:27 +00:00
|
|
|
|
Flow {
|
2022-03-07 09:33:38 +00:00
|
|
|
|
width: parent.width
|
2022-07-19 13:45:27 +00:00
|
|
|
|
|
|
|
|
|
spacing: Style.current.halfPadding
|
|
|
|
|
|
|
|
|
|
InformationTile {
|
2022-03-07 09:33:38 +00:00
|
|
|
|
id: typeRectangle
|
2022-07-19 13:45:27 +00:00
|
|
|
|
maxWidth: parent.width
|
|
|
|
|
primaryText: qsTr("Type")
|
|
|
|
|
secondaryText: {
|
|
|
|
|
const walletType = walletStore.currentAccount.walletType
|
|
|
|
|
if (walletType === "watch") {
|
|
|
|
|
return qsTr("Watch-Only Account")
|
|
|
|
|
} else if (walletType === "generated" || walletType === "") {
|
|
|
|
|
return qsTr("Generated by your Status seed phrase profile")
|
|
|
|
|
} else {
|
|
|
|
|
return qsTr("Imported Account")
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-19 13:45:27 +00:00
|
|
|
|
InformationTile {
|
|
|
|
|
maxWidth: parent.width
|
|
|
|
|
primaryText: qsTr("Storage")
|
|
|
|
|
secondaryText: qsTr("On Device")
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
2022-03-24 09:10:34 +00:00
|
|
|
|
|
2022-07-19 13:45:27 +00:00
|
|
|
|
InformationTile {
|
|
|
|
|
maxWidth: parent.width
|
|
|
|
|
primaryText: qsTr("Derivation Path")
|
|
|
|
|
secondaryText: walletStore.currentAccount.path
|
|
|
|
|
visible: walletStore.currentAccount.path
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-07-19 13:45:27 +00:00
|
|
|
|
InformationTile {
|
|
|
|
|
maxWidth: parent.width
|
|
|
|
|
visible: walletStore.currentAccount.relatedAccounts.count > 0
|
|
|
|
|
primaryText: qsTr("Related Accounts")
|
|
|
|
|
tagsModel: walletStore.currentAccount.relatedAccounts
|
|
|
|
|
tagsDelegate: StatusListItemTag {
|
2022-12-21 13:57:41 +00:00
|
|
|
|
bgColor: model.color
|
|
|
|
|
bgRadius: 6
|
|
|
|
|
height: 50
|
2022-07-19 13:45:27 +00:00
|
|
|
|
closeButtonVisible: false
|
2022-08-11 11:55:08 +00:00
|
|
|
|
asset.emoji: model.emoji
|
|
|
|
|
asset.emojiSize: Emoji.size.verySmall
|
|
|
|
|
asset.isLetterIdenticon: true
|
2022-07-19 13:45:27 +00:00
|
|
|
|
title: model.name
|
|
|
|
|
titleText.font.pixelSize: 12
|
|
|
|
|
titleText.color: Theme.palette.indirectColor1
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
StatusButton {
|
2022-07-20 08:18:27 +00:00
|
|
|
|
objectName: "deleteAccountButton"
|
2022-03-07 09:33:38 +00:00
|
|
|
|
visible: walletStore.currentAccount.walletType !== ""
|
|
|
|
|
text: qsTr("Remove from your profile")
|
|
|
|
|
type: StatusBaseButton.Type.Danger
|
|
|
|
|
|
|
|
|
|
ConfirmationDialog {
|
|
|
|
|
id: confirmationPopup
|
2022-07-20 08:18:27 +00:00
|
|
|
|
confirmButtonObjectName: "confirmDeleteAccountButton"
|
2022-03-07 09:33:38 +00:00
|
|
|
|
header.title: qsTr("Confirm %1 Removal").arg(walletStore.currentAccount.name)
|
|
|
|
|
confirmationText: qsTr("You will not be able to restore viewing access to this account in the future unless you enter this account’s address again.")
|
|
|
|
|
confirmButtonLabel: qsTr("Remove Account")
|
|
|
|
|
onConfirmButtonClicked: {
|
|
|
|
|
confirmationPopup.close();
|
|
|
|
|
root.goBack();
|
2023-01-04 15:01:10 +00:00
|
|
|
|
root.walletStore.deleteAccount(walletStore.currentAccount.keyUid, walletStore.currentAccount.address);
|
2022-03-07 09:33:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onClicked : {
|
|
|
|
|
confirmationPopup.open()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-10 17:01:17 +00:00
|
|
|
|
|
|
|
|
|
Component {
|
|
|
|
|
id: renameAccountModalComponent
|
|
|
|
|
RenameAccontModal {
|
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
onClosed: destroy()
|
|
|
|
|
walletStore: root.walletStore
|
|
|
|
|
emojiPopup: root.emojiPopup
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|