diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-04-28 15:17:36 +0200 |
|---|---|---|
| committer | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-04-28 15:17:36 +0200 |
| commit | 199aedf60a58fed424c3706f45bbac200bf33bc8 (patch) | |
| tree | 0c2c60de45a821f25d601d9851433bacead96463 | |
| parent | 170ddf1f6f4fa8a2a260c554dd44a2f7b67bba9e (diff) | |
| download | monzero-gui-199aedf60a58fed424c3706f45bbac200bf33bc8.tar.gz monzero-gui-199aedf60a58fed424c3706f45bbac200bf33bc8.tar.xz monzero-gui-199aedf60a58fed424c3706f45bbac200bf33bc8.zip | |
Dialog(s) for changing restore height
| -rw-r--r-- | js/Utils.js | 4 | ||||
| -rw-r--r-- | pages/Settings.qml | 82 |
2 files changed, 38 insertions, 48 deletions
diff --git a/js/Utils.js b/js/Utils.js index 7cf582b2..fdf24c6b 100644 --- a/js/Utils.js +++ b/js/Utils.js @@ -23,3 +23,7 @@ function formatDate( date, params ) { // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString return new Date( date ).toLocaleString( 'en-US', options ); } + +function isNumeric(n) { + return !isNaN(parseFloat(n)) && isFinite(n); +}
\ No newline at end of file diff --git a/pages/Settings.qml b/pages/Settings.qml index 77c9f09f..a9389ee4 100644 --- a/pages/Settings.qml +++ b/pages/Settings.qml @@ -679,59 +679,45 @@ Rectangle { property var style: "<style type='text/css'>a {cursor:pointer;text-decoration: none; color: #FF6C3C}</style>" text: (currentWallet ? currentWallet.walletCreationHeight : "") + style + qsTr(" <a href='#'> (Click to change)</a>") + translationManager.emptyString onLinkActivated: { - restoreHeightRow.visible = true; - } - } - - RowLayout { - id: restoreHeightRow - visible: false - Layout.preferredWidth: parent.width - - LineEdit { - id: restoreHeightEdit - Layout.preferredWidth: 80 - Layout.fillWidth: true - text: currentWallet ? currentWallet.walletCreationHeight : "0" - validator: IntValidator { - bottom:0 - } - } + inputDialog.labelText = qsTr("Set a new restore height:") + translationManager.emptyString; + inputDialog.inputText = currentWallet ? currentWallet.walletCreationHeight : "0"; + inputDialog.onAcceptedCallback = function() { + var _restoreHeight = inputDialog.inputText; + if(Utils.isNumeric(_restoreHeight)){ + _restoreHeight = parseInt(_restoreHeight); + if(_restoreHeight >= 0) { + currentWallet.walletCreationHeight = restoreHeightEdit.text + // Restore height is saved in .keys file. Set password to trigger rewrite. + currentWallet.setPassword(appWindow.walletPassword) - StandardButton { - id: restoreHeightSave - small: true - Layout.fillWidth: false - Layout.leftMargin: 30 - text: qsTr("Save") + translationManager.emptyString + // Show confirmation dialog + confirmationDialog.title = qsTr("Rescan wallet cache") + translationManager.emptyString; + confirmationDialog.text = qsTr("Are you sure you want to rebuild the wallet cache?\n" + + "The following information will be deleted\n" + + "- Recipient addresses\n" + + "- Tx keys\n" + + "- Tx descriptions\n\n" + + "The old wallet cache file will be renamed and can be restored later.\n" + ); + confirmationDialog.icon = StandardIcon.Question + confirmationDialog.cancelText = qsTr("Cancel") + confirmationDialog.onAcceptedCallback = function() { + walletManager.closeWallet(); + walletManager.clearWalletCache(persistentSettings.wallet_path); + walletManager.openWalletAsync(persistentSettings.wallet_path, appWindow.walletPassword, + persistentSettings.nettype); + } - onClicked: { - currentWallet.walletCreationHeight = restoreHeightEdit.text - // Restore height is saved in .keys file. Set password to trigger rewrite. - currentWallet.setPassword(appWindow.walletPassword) - restoreHeightRow.visible = false - - // Show confirmation dialog - confirmationDialog.title = qsTr("Rescan wallet cache") + translationManager.emptyString; - confirmationDialog.text = qsTr("Are you sure you want to rebuild the wallet cache?\n" - + "The following information will be deleted\n" - + "- Recipient addresses\n" - + "- Tx keys\n" - + "- Tx descriptions\n\n" - + "The old wallet cache file will be renamed and can be restored later.\n" - ); - confirmationDialog.icon = StandardIcon.Question - confirmationDialog.cancelText = qsTr("Cancel") - confirmationDialog.onAcceptedCallback = function() { - walletManager.closeWallet(); - walletManager.clearWalletCache(persistentSettings.wallet_path); - walletManager.openWalletAsync(persistentSettings.wallet_path, appWindow.walletPassword, - persistentSettings.nettype); + confirmationDialog.onRejectedCallback = null; + confirmationDialog.open() + return; + } } - confirmationDialog.onRejectedCallback = null; - confirmationDialog.open() + appWindow.showStatusMessage(qsTr("Invalid restore height specified. Must be a number."),3); } + inputDialog.onRejectedCallback = null; + inputDialog.open() } } |
