mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
56 lines
No EOL
1.7 KiB
JavaScript
56 lines
No EOL
1.7 KiB
JavaScript
/**
|
|
* Formats a date.
|
|
* @param {date} date - toggle decorations
|
|
* @param {params} params -
|
|
*/
|
|
function formatDate( date, params ) {
|
|
var options = {
|
|
weekday: "short",
|
|
year: "numeric",
|
|
month: "long",
|
|
day: "numeric",
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
timeZone: "UTC",
|
|
timeZoneName: "short",
|
|
};
|
|
|
|
options = [options, params].reduce(function (r, o) {
|
|
Object.keys(o).forEach(function (k) { r[k] = o[k]; });
|
|
return r;
|
|
}, {});
|
|
|
|
// 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);
|
|
}
|
|
|
|
function showSeedPage() {
|
|
// Shows `Settings->Seed & keys`. Prompts a password dialog.
|
|
passwordDialog.onAcceptedCallback = function() {
|
|
if(walletPassword === passwordDialog.password){
|
|
if(currentWallet.seedLanguage == "") {
|
|
console.log("No seed language set. Using English as default");
|
|
currentWallet.setSeedLanguage("English");
|
|
}
|
|
// Load keys page
|
|
appWindow.showPageRequest("Keys");
|
|
} else {
|
|
informationPopup.title = qsTr("Error") + translationManager.emptyString;
|
|
informationPopup.text = qsTr("Wrong password");
|
|
informationPopup.open()
|
|
informationPopup.onCloseCallback = function() {
|
|
passwordDialog.open()
|
|
}
|
|
}
|
|
}
|
|
passwordDialog.onRejectedCallback = function() {
|
|
leftPanel.selectItem(middlePanel.state);
|
|
}
|
|
passwordDialog.open();
|
|
if(isMobile) hideMenu();
|
|
updateBalance();
|
|
} |