mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-29 15:57:03 +00:00
5479880cde
- `AddAccountStore` moved to `AddAccountPopup` - watch only address' placeholder text updated - emoji popup button added to the right side of the account name input field - `validateMnemonic` proc from accounts service updated
66 lines
1.8 KiB
QML
66 lines
1.8 KiB
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Controls.Validators 0.1
|
|
|
|
import utils 1.0
|
|
|
|
import "../stores"
|
|
|
|
Column {
|
|
id: root
|
|
|
|
property AddAccountStore store
|
|
|
|
function reset() {
|
|
addressInput.reset()
|
|
}
|
|
|
|
StatusInput {
|
|
id: addressInput
|
|
width: parent.width
|
|
maximumHeight: Constants.addAccountPopup.itemHeight
|
|
minimumHeight: Constants.addAccountPopup.itemHeight
|
|
label: qsTr("Ethereum address or ENS name")
|
|
placeholderText: "0x95222293DD7278Aa3Cdd389Cc1D1d165CCBAfe5"
|
|
input.multiline: true
|
|
input.rightComponent: StatusButton {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
borderColor: Theme.palette.primaryColor1
|
|
size: StatusBaseButton.Size.Tiny
|
|
text: qsTr("Paste")
|
|
onClicked: {
|
|
addressInput.text = ""
|
|
addressInput.input.edit.paste()
|
|
}
|
|
}
|
|
validators: [
|
|
StatusAddressOrEnsValidator {
|
|
errorMessage: qsTr("Please enter a valid Ethereum address or ENS name")
|
|
}
|
|
]
|
|
|
|
onTextChanged: {
|
|
if (addressInput.valid) {
|
|
root.store.changeWatchOnlyAccountAddressPostponed(text.trim())
|
|
return
|
|
}
|
|
root.store.cleanWatchOnlyAccountAddress()
|
|
}
|
|
|
|
onKeyPressed: {
|
|
root.store.submitAddAccount(event)
|
|
}
|
|
}
|
|
|
|
AddressDetails {
|
|
width: parent.width
|
|
addressDetailsItem: root.store.watchOnlyAccAddress
|
|
defaultMessage: qsTr("You will need to import your seed phrase or use your Keycard to transact with this account")
|
|
defaultMessageCondition: addressInput.text === "" || !addressInput.valid
|
|
}
|
|
}
|