status-desktop/ui/app/AppLayouts/Wallet/components/GenerateAccountModal.qml

113 lines
3.3 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Dialogs 1.3
2020-06-04 14:53:10 +00:00
import "../../../../imports"
import "../../../../shared"
ModalPopup {
id: popup
title: qsTr("Generate an account")
property int marginBetweenInputs: 38
2020-06-04 18:56:04 +00:00
property string selectedColor: Constants.accountColors[0]
property string passwordValidationError: ""
property string accountNameValidationError: ""
property bool loading: false
function validate() {
if (passwordInput.text === "") {
passwordValidationError = qsTr("You need to enter a password")
} else if (passwordInput.text.length < 4) {
passwordValidationError = qsTr("Password needs to be 4 characters or more")
} else {
passwordValidationError = ""
}
if (accountNameInput.text === "") {
accountNameValidationError = qsTr("You need to enter an account name")
} else {
accountNameValidationError = ""
}
return passwordValidationError === "" && accountNameValidationError === ""
}
2020-06-04 14:53:10 +00:00
onOpened: {
passwordInput.text = "";
passwordInput.forceActiveFocus(Qt.MouseFocusReason)
}
Input {
id: passwordInput
placeholderText: qsTr("Enter your password…")
label: qsTr("Password")
textField.echoMode: TextInput.Password
validationError: popup.passwordValidationError
2020-06-04 14:53:10 +00:00
}
Input {
id: accountNameInput
anchors.top: passwordInput.bottom
anchors.topMargin: marginBetweenInputs
placeholderText: qsTr("Enter an account name...")
label: qsTr("Account name")
validationError: popup.accountNameValidationError
2020-06-04 14:53:10 +00:00
}
Select {
2020-06-04 14:53:10 +00:00
id: accountColorInput
anchors.top: accountNameInput.bottom
anchors.topMargin: marginBetweenInputs
2020-06-04 18:56:04 +00:00
bgColor: selectedColor
2020-06-04 14:53:10 +00:00
label: qsTr("Account color")
2020-06-04 18:56:04 +00:00
selectOptions: Constants.accountColors.map(color => {
return {
text: "",
bgColor: color,
height: 52,
onClicked: function () {
selectedColor = color
}
}
})
2020-06-04 14:53:10 +00:00
}
footer: StyledButton {
2020-06-04 19:55:05 +00:00
anchors.top: parent.top
anchors.right: parent.right
anchors.rightMargin: Theme.padding
label: loading ? qsTr("Loading...") : qsTr("Add account >")
2020-06-04 14:53:10 +00:00
disabled: loading || passwordInput.text === "" || accountNameInput.text === ""
MessageDialog {
id: accountError
title: "Adding the account failed"
icon: StandardIcon.Critical
standardButtons: StandardButton.Ok
}
2020-06-04 14:53:10 +00:00
onClicked : {
// TODO the loaidng doesn't work because the function freezes th eview. Might need to use threads
loading = true
if (!validate()) {
return loading = false
}
const error = walletModel.generateNewAccount(passwordInput.text, accountNameInput.text, selectedColor)
loading = false
if (error) {
accountError.text = error
return accountError.open()
}
2020-06-04 14:53:10 +00:00
popup.close();
}
}
}
/*##^##
Designer {
D{i:0;formeditorColor:"#ffffff";height:500;width:400}
}
##^##*/