|
|
@ -24,9 +24,12 @@ class SettingsUI { |
|
|
|
|
|
|
|
|
|
|
|
this._components.registry = globalRegistry |
|
|
|
this._components.registry = globalRegistry |
|
|
|
this._deps = { |
|
|
|
this._deps = { |
|
|
|
networkModule: this._components.registry.get('network').api |
|
|
|
networkModule: this._components.registry.get('network').api, |
|
|
|
|
|
|
|
config: this._components.registry.get('config').api |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this._deps.config.events.on('settings/personal-mode_changed', this.onPersonalChange) |
|
|
|
|
|
|
|
|
|
|
|
setInterval(() => { |
|
|
|
setInterval(() => { |
|
|
|
this.updateAccountBalances() |
|
|
|
this.updateAccountBalances() |
|
|
|
}, 10 * 1000) |
|
|
|
}, 10 * 1000) |
|
|
@ -215,7 +218,17 @@ class SettingsUI { |
|
|
|
} |
|
|
|
} |
|
|
|
break |
|
|
|
break |
|
|
|
case 'web3': { |
|
|
|
case 'web3': { |
|
|
|
if (!this._components.registry.get('config').api.get('settings/personal-mode')) { |
|
|
|
onPersonalChange() |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
break |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onPersonalChange() { |
|
|
|
|
|
|
|
let plusBtn = document.getElementById('remixRunPlus') |
|
|
|
|
|
|
|
let plusTitle = document.getElementById('remixRunPlusWraper') |
|
|
|
|
|
|
|
if (!this._deps.config.get('settings/personal-mode')) { |
|
|
|
plusBtn.classList.add(css.disableMouseEvents) |
|
|
|
plusBtn.classList.add(css.disableMouseEvents) |
|
|
|
plusTitle.title = 'Creating an account is possible only in Personal mode. Please go to Settings to enable it.' |
|
|
|
plusTitle.title = 'Creating an account is possible only in Personal mode. Please go to Settings to enable it.' |
|
|
|
} else { |
|
|
|
} else { |
|
|
@ -223,10 +236,6 @@ class SettingsUI { |
|
|
|
plusTitle.title = 'Create a new account' |
|
|
|
plusTitle.title = 'Create a new account' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
break |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
newAccount () { |
|
|
|
newAccount () { |
|
|
|
this.settings.newAccount( |
|
|
|
this.settings.newAccount( |
|
|
|