186 lines
5.5 KiB
QML
186 lines
5.5 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQml 2.15
|
|
|
|
import Storybook 1.0
|
|
import Models 1.0
|
|
|
|
import AppLayouts.Communities.popups 1.0
|
|
import AppLayouts.Wallet.stores 1.0
|
|
|
|
SplitView {
|
|
id: root
|
|
Logs { id: logs }
|
|
|
|
ListModel {
|
|
id: emptyModel
|
|
}
|
|
|
|
readonly property WalletAssetsStore walletAssetStore: WalletAssetsStore {
|
|
assetsWithFilteredBalances: walletAssetStore.groupedAccountsAssetsModel
|
|
}
|
|
|
|
Component {
|
|
id: dlgComponent
|
|
SharedAddressesPopup {
|
|
//anchors.centerIn: parent
|
|
isEditMode: ctrlEditMode.checked
|
|
communityName: "Decentraland"
|
|
communityIcon: ModelsData.assets.uni
|
|
loginType: ctrlLoginType.currentIndex
|
|
walletAccountsModel: WalletAccountsModel {}
|
|
permissionsModel: {
|
|
if (ctrlPermissions.checked && ctrlTokenGatedChannels.checked) {
|
|
return PermissionsModel.complexCombinedPermissionsModel
|
|
}
|
|
if (ctrlPermissions.checked) {
|
|
return PermissionsModel.complexPermissionsModel
|
|
}
|
|
if (ctrlTokenGatedChannels.checked) {
|
|
return PermissionsModel.channelsOnlyPermissionsModel
|
|
}
|
|
|
|
console.warn("!!! EMPTY MODEL !!!")
|
|
return emptyModel
|
|
}
|
|
|
|
walletAssetsModel: walletAssetStore.groupedAccountAssetsModel
|
|
|
|
assetsModel: AssetsModel {}
|
|
collectiblesModel: CollectiblesModel {}
|
|
visible: true
|
|
|
|
onShareSelectedAddressesClicked: logs.logEvent("::shareSelectedAddressesClicked", ["airdropAddress", "sharedAddresses"], arguments)
|
|
onSharedAddressesChanged: logs.logEvent("::sharedAddressesChanged", ["airdropAddress", "sharedAddresses"], arguments)
|
|
onPrepareForSigning: logs.logEvent("::onPrepareForSigning", ["airdropAddress", "sharedAddresses"], arguments)
|
|
onEditRevealedAddresses: logs.logEvent("::onEditRevealedAddresses")
|
|
onSignSharedAddressesForAllNonKeycardKeypairs: logs.logEvent("::onSignSharedAddressesForAllNonKeycardKeypairs")
|
|
onSignSharedAddressesForKeypair: logs.logEvent("::onSignSharedAddressesForKeypair", ["keyUid"], arguments)
|
|
onClosed: destroy()
|
|
getCurrencyAmount: function (balance, symbol) {
|
|
return ({
|
|
amount: balance,
|
|
symbol: symbol.toUpperCase(),
|
|
displayDecimals: 2,
|
|
stripTrailingZeroes: false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
property var dialog
|
|
|
|
function createAndOpenDialog() {
|
|
dialog = dlgComponent.createObject(root)
|
|
dialog.open()
|
|
}
|
|
|
|
Component.onCompleted: createAndOpenDialog()
|
|
|
|
SplitView {
|
|
orientation: Qt.Vertical
|
|
SplitView.fillWidth: true
|
|
|
|
Pane {
|
|
id: pane
|
|
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
PopupBackground {
|
|
anchors.fill: parent
|
|
}
|
|
|
|
Button {
|
|
anchors.centerIn: parent
|
|
text: "Reopen"
|
|
|
|
onClicked: createAndOpenDialog()
|
|
}
|
|
}
|
|
|
|
LogsAndControlsPanel {
|
|
id: logsAndControlsPanel
|
|
|
|
SplitView.minimumHeight: 100
|
|
SplitView.preferredHeight: 150
|
|
|
|
logsView.logText: logs.logText
|
|
}
|
|
}
|
|
|
|
Pane {
|
|
SplitView.minimumWidth: 300
|
|
SplitView.preferredWidth: 300
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
Switch {
|
|
id: ctrlPermissions
|
|
text: "With permissions"
|
|
checked: true
|
|
}
|
|
|
|
Switch {
|
|
id: ctrlTokenGatedChannels
|
|
text: "With token gated channels"
|
|
checked: true
|
|
}
|
|
|
|
Switch {
|
|
id: ctrlEditMode
|
|
text: "Edit mode"
|
|
}
|
|
|
|
ColumnLayout {
|
|
visible: ctrlEditMode.checked
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: "Login type"
|
|
}
|
|
|
|
ComboBox {
|
|
id: ctrlLoginType
|
|
Layout.fillWidth: true
|
|
model: ["Password","Biometrics","Keycard"]
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 1
|
|
color: "lightgray"
|
|
}
|
|
|
|
Text {
|
|
text: "Info"
|
|
font.bold: true
|
|
}
|
|
|
|
Text {
|
|
Layout.fillWidth: true
|
|
text: "Shared addresses: %1".arg(!!dialog ? dialog.selectedSharedAddresses.join(";") : "")
|
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
|
}
|
|
|
|
Text {
|
|
Layout.fillWidth: true
|
|
text: "Airdrop address: %1".arg(!!dialog ? dialog.selectedAirdropAddress : "")
|
|
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
|
}
|
|
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Popups
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=31461%3A564367&mode=dev
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=31461%3A563905&mode=dev
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=31461%3A579875&mode=dev
|