103 lines
2.9 KiB
QML
103 lines
2.9 KiB
QML
import QtQuick 2.13
|
|
|
|
import shared.status 1.0
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Components 0.1
|
|
import utils 1.0
|
|
|
|
import "../../stores"
|
|
import "../../controls"
|
|
|
|
Item {
|
|
id: root
|
|
signal goBack
|
|
|
|
property WalletStore walletStore
|
|
|
|
StatusFlatButton {
|
|
id: backButton
|
|
anchors.top: parent.top
|
|
anchors.topMargin: Style.current.bigPadding
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Style.current.bigPadding
|
|
icon.name: "arrow-left"
|
|
icon.height: 13.5
|
|
icon.width: 17.5
|
|
text: qsTr("Wallet")
|
|
onClicked: {
|
|
root.goBack()
|
|
}
|
|
}
|
|
|
|
Column {
|
|
id: column
|
|
anchors.topMargin: Style.current.xlPadding
|
|
anchors.top: backButton.bottom
|
|
anchors.leftMargin: Style.current.xlPadding * 2
|
|
anchors.left: root.left
|
|
width: 560
|
|
|
|
StatusBaseText {
|
|
id: titleText
|
|
text: qsTr("DApp Permissions")
|
|
font.weight: Font.Bold
|
|
font.pixelSize: 28
|
|
color: Theme.palette.directColor1
|
|
}
|
|
|
|
|
|
Item {
|
|
height: Style.current.bigPadding
|
|
width: parent.width
|
|
}
|
|
|
|
|
|
Repeater {
|
|
id: permissionsList
|
|
model: walletStore.dappList
|
|
delegate: Item {
|
|
width: parent.width
|
|
height: listItem.height + spacer.height
|
|
StatusListItem {
|
|
id: listItem
|
|
title: model.name
|
|
icon.isLetterIdenticon: true
|
|
width: parent.width
|
|
highlighted: true
|
|
sensor.enabled: false
|
|
components: [
|
|
StatusButton {
|
|
text: model.accounts.count > 1 ? qsTr("Disconnect All") : qsTr("Disconnect")
|
|
size: StatusBaseButton.Size.Small
|
|
type: StatusBaseButton.Type.Danger
|
|
onClicked: {
|
|
walletStore.disconnect(model.name)
|
|
}
|
|
}
|
|
]
|
|
bottomModel: model.accounts
|
|
bottomDelegate: StatusListItemTag {
|
|
property int outerIndex: listItem.index
|
|
|
|
title: model.name
|
|
icon.isLetterIdenticon: true
|
|
icon.color: model.color
|
|
onClicked: {
|
|
const dappName = walletStore.dappList.rowData(outerIndex, 'name')
|
|
walletStore.disconnectAddress(dappName, model.address)
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: spacer
|
|
height: Style.current.bigPadding
|
|
width: parent.width
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} |