mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
8b4cbc59a8
The new account selector expects a generic account model. It will display all the account data if provided, including preferred chains, balance or asset balance. Otherwise it will display only the available data. The account selector can receive an initial selection based on account address and will provide the current selected address and the current selected model item. - Unify the account selector between communities and wallet - Update the account selector to work with addresses instead of model indexes - Adapt all components using the account selector or the account selection - Move/reuse qml components involved in the account selector UI - Remove nim logic used to handle index based account selection. - Adding storybook page
126 lines
2.8 KiB
QML
126 lines
2.8 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQml 2.15
|
|
import Qt.labs.settings 1.0
|
|
import QtTest 1.15
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Utils 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
import Models 1.0
|
|
import Storybook 1.0
|
|
|
|
import shared.popups.walletconnect 1.0
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import AppLayouts.Wallet.panels 1.0
|
|
|
|
import utils 1.0
|
|
import shared.stores 1.0
|
|
|
|
Item {
|
|
id: root
|
|
|
|
function openModal() {
|
|
modal.openWithFilter([1, 42161], JSON.parse(`{
|
|
"metadata": {
|
|
"description": "React App for WalletConnect",
|
|
"icons": [
|
|
"https://avatars.githubusercontent.com/u/37784886"
|
|
],
|
|
"name": "React App",
|
|
"url": "https://react-app.walletconnect.com",
|
|
"verifyUrl": "https://verify.walletconnect.com"
|
|
},
|
|
"publicKey": "300a6a1df4cb0cd73eb652f11845f35a318541eb18ab369860be85c0c2ada54a"
|
|
}`))
|
|
if (pairedCheckbox.checked) {
|
|
pairedResultTimer.restart()
|
|
}
|
|
}
|
|
|
|
// qml Splitter
|
|
SplitView {
|
|
anchors.fill: parent
|
|
|
|
ColumnLayout {
|
|
SplitView.fillWidth: true
|
|
|
|
Component.onCompleted: root.openModal()
|
|
|
|
StatusButton {
|
|
id: openButton
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
Layout.margins: 20
|
|
|
|
text: "Open ConnectDAppModal"
|
|
|
|
onClicked: root.openModal()
|
|
}
|
|
|
|
ConnectDAppModal {
|
|
id: modal
|
|
|
|
anchors.centerIn: parent
|
|
|
|
spacing: 8
|
|
|
|
accounts: WalletAccountsModel {}
|
|
|
|
flatNetworks: SortFilterProxyModel {
|
|
sourceModel: NetworksModel.flatNetworks
|
|
filters: ValueFilter { roleName: "isTest"; value: false; }
|
|
}
|
|
}
|
|
|
|
ColumnLayout {}
|
|
}
|
|
|
|
ColumnLayout {
|
|
id: optionsSpace
|
|
|
|
CheckBox {
|
|
id: pairedCheckbox
|
|
|
|
text: "Report Paired"
|
|
|
|
checked: true
|
|
}
|
|
CheckBox {
|
|
id: pairedStatusCheckbox
|
|
|
|
text: "Paired Successful"
|
|
|
|
checked: true
|
|
}
|
|
Item { Layout.fillHeight: true }
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: pairedResultTimer
|
|
|
|
interval: 1000
|
|
running: false
|
|
repeat: false
|
|
onTriggered: {
|
|
if (pairedCheckbox.checked) {
|
|
if (pairedStatusCheckbox.checked) {
|
|
modal.pairSuccessful(null)
|
|
} else {
|
|
modal.pairFailed(null, "Pairing failed")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Wallet
|