2020-06-17 15:18:31 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-05 22:50:22 +02:00
|
|
|
import "../../../../shared"
|
|
|
|
import "../../../../shared/status"
|
|
|
|
import "../panels"
|
|
|
|
import "../stores"
|
2020-06-01 21:02:50 -04:00
|
|
|
|
2021-02-01 13:25:26 -05:00
|
|
|
ModalPopup {
|
|
|
|
id: popup
|
|
|
|
width: 480
|
|
|
|
height: 510
|
2021-10-05 22:50:22 +02:00
|
|
|
|
|
|
|
property string defaultCurrency: RootStore.defaultCurrency
|
2021-02-01 13:25:26 -05:00
|
|
|
|
2021-02-02 12:50:20 +01:00
|
|
|
onDefaultCurrencyChanged: {
|
|
|
|
setCurrencyModalContent.currency = defaultCurrency
|
2020-06-01 21:02:50 -04:00
|
|
|
}
|
|
|
|
|
2021-02-18 11:36:05 -05:00
|
|
|
//% "Set Currency"
|
|
|
|
title: qsTrId("set-currency")
|
2020-07-22 16:40:32 -04:00
|
|
|
|
2021-02-01 13:25:26 -05:00
|
|
|
SetCurrencyModalContent {
|
|
|
|
id: setCurrencyModalContent
|
2021-10-05 22:50:22 +02:00
|
|
|
tokenListModel: CurrenciesStore {}
|
|
|
|
onSetDefaultCurrency: {
|
|
|
|
RootStore.setDefaultCurrency(key)
|
|
|
|
}
|
2021-02-01 13:25:26 -05:00
|
|
|
}
|
2020-07-22 16:40:32 -04:00
|
|
|
|
2021-01-28 12:04:10 +01:00
|
|
|
footer: StatusButton {
|
2021-02-01 13:25:26 -05:00
|
|
|
anchors.right: parent.right
|
|
|
|
//% "Save"
|
2021-01-28 12:04:10 +01:00
|
|
|
text: qsTrId("save")
|
2021-02-01 13:25:26 -05:00
|
|
|
onClicked: {
|
|
|
|
console.log("TODO: apply all accounts")
|
|
|
|
popup.close()
|
2020-07-22 16:40:32 -04:00
|
|
|
}
|
2020-06-01 21:02:50 -04:00
|
|
|
}
|
|
|
|
}
|