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

120 lines
3.6 KiB
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Dialogs 1.3
2020-06-04 14:53:10 +00:00
import "../../../../imports"
import "../../../../shared"
import "../../../../shared/status"
2020-06-04 14:53:10 +00:00
ModalPopup {
id: popup
//% "Generate an account"
title: qsTrId("generate-a-new-account")
2020-06-04 14:53:10 +00:00
property int marginBetweenInputs: 38
property string passwordValidationError: ""
property string accountNameValidationError: ""
property bool loading: false
function validate() {
if (passwordInput.text === "") {
//% "You need to enter a password"
passwordValidationError = qsTrId("you-need-to-enter-a-password")
} else if (passwordInput.text.length < 6) {
passwordValidationError = qsTr("Password needs to be 6 characters or more")
} else {
passwordValidationError = ""
}
if (accountNameInput.text === "") {
//% "You need to enter an account name"
accountNameValidationError = qsTrId("you-need-to-enter-an-account-name")
} else {
accountNameValidationError = ""
}
return passwordValidationError === "" && accountNameValidationError === ""
}
2020-06-04 14:53:10 +00:00
onOpened: {
passwordValidationError = "";
accountNameValidationError = "";
2020-06-04 14:53:10 +00:00
passwordInput.text = "";
accountNameInput.text = "";
accountColorInput.selectedColor = Constants.accountColors[Math.floor(Math.random() * Constants.accountColors.length)]
2020-06-04 14:53:10 +00:00
passwordInput.forceActiveFocus(Qt.MouseFocusReason)
}
Input {
id: passwordInput
//% "Enter your password…"
placeholderText: qsTrId("enter-your-password…")
//% "Password"
label: qsTrId("password")
2020-06-04 14:53:10 +00:00
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
//% "Enter an account name..."
placeholderText: qsTrId("enter-an-account-name...")
//% "Account name"
label: qsTrId("account-name")
validationError: popup.accountNameValidationError
2020-06-04 14:53:10 +00:00
}
ColorSelector {
2020-06-04 14:53:10 +00:00
id: accountColorInput
model: Constants.accountColors
2020-06-04 14:53:10 +00:00
anchors.top: accountNameInput.bottom
anchors.topMargin: marginBetweenInputs
anchors.left: parent.left
anchors.right: parent.right
2020-06-04 14:53:10 +00:00
}
footer: StatusButton {
2020-06-04 19:55:05 +00:00
anchors.top: parent.top
anchors.right: parent.right
text: loading ?
//% "Loading..."
qsTrId("loading") :
qsTr("Add account")
2020-06-04 14:53:10 +00:00
enabled: !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()) {
errorSound.play()
return loading = false
}
const error = walletModel.generateNewAccount(passwordInput.text, accountNameInput.text, accountColorInput.selectedColor)
loading = false
if (error) {
errorSound.play()
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}
}
##^##*/