mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
f9244e2c9f
- startup, login and onboarding modules merged into the single one - `State` class introduced which is the base class for all states, every state determines what is the next state in each of 3 possible actions, and what is the previous state, if it has previous state - `StateWrapper` class is introduced as a convenient way to expose `State`'s props and deal with them on the qml side - startup module maintains states as a linked list and there are few convenient methods to move through the list `onBackActionClicked`, `onNextPrimaryActionClicked` `onNextSecondaryActionClicked`, `onNextTertiaryActionClicked` - redundant code removed Fixes: #6473
51 lines
1.0 KiB
QML
51 lines
1.0 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
|
|
import utils 1.0
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import shared.popups 1.0
|
|
|
|
import "../panels"
|
|
import "../stores"
|
|
|
|
// TODO: replace with StatusModal
|
|
ModalPopup {
|
|
id: root
|
|
|
|
property StartupStore startupStore
|
|
|
|
signal accountSelected(int index)
|
|
signal openModalClicked()
|
|
|
|
title: qsTr("Your keys")
|
|
|
|
AccountListPanel {
|
|
id: accountList
|
|
anchors.fill: parent
|
|
|
|
model: root.startupStore.startupModuleInst.loginAccountsModel
|
|
isSelected: function (index, keyUid) {
|
|
return root.startupStore.selectedLoginAccount.keyUid === keyUid
|
|
}
|
|
|
|
onAccountSelect: function(index) {
|
|
root.accountSelected(index)
|
|
root.close()
|
|
}
|
|
}
|
|
|
|
footer: StatusButton {
|
|
anchors.bottom: parent.bottom
|
|
anchors.topMargin: Style.current.padding
|
|
anchors.right: parent.right
|
|
text: qsTr("Add another existing key")
|
|
|
|
onClicked : {
|
|
openModalClicked()
|
|
root.close()
|
|
}
|
|
}
|
|
}
|