status-desktop/ui/app/AppLayouts/Onboarding/popups/SelectAnotherAccountModal.qml

47 lines
995 B
QML
Raw Normal View History

2020-06-17 15:18:31 -04:00
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 {
signal accountSelected(int index)
signal openModalClicked()
id: popup
title: qsTr("Your keys")
AccountListPanel {
id: accountList
anchors.fill: parent
2021-10-17 12:44:21 +02:00
model: LoginStore.loginModuleInst.accountsModel
isSelected: function (index, keyUid) {
return LoginStore.currentAccount.keyUid === keyUid
2020-06-13 11:17:54 -04:00
}
onAccountSelect: function(index) {
popup.accountSelected(index)
popup.close()
}
}
footer: StatusButton {
2020-06-12 16:47:44 -04:00
anchors.bottom: parent.bottom
anchors.topMargin: Style.current.padding
anchors.right: parent.right
text: qsTr("Add another existing key")
onClicked : {
openModalClicked()
2020-06-12 16:47:44 -04:00
popup.close()
}
}
}