re-add environment selector

deploy_settings_step
Iuri Matias 4 years ago
parent d1f1242f0d
commit 57a5678905
  1. 79
      apps/remix-ide/src/app/tabs/runTab/settings.js
  2. 3
      libs/remix-ui/run-tab/src/index.ts

@ -1,6 +1,6 @@
import { Settings } from '@remix-ui/run-tab' // eslint-disable-line import { Settings, EnvironmentSelector } from '@remix-ui/run-tab' // eslint-disable-line
import React from 'react' // eslint-disable-line import React from 'react' // eslint-disable-line
// import ReactDOM from 'react-dom' import ReactDOM from 'react-dom'
const $ = require('jquery') const $ = require('jquery')
const yo = require('yo-yo') const yo = require('yo-yo')
@ -13,17 +13,19 @@ const addTooltip = require('../../ui/tooltip')
const helper = require('../../../lib/helper.js') const helper = require('../../../lib/helper.js')
const globalRegistry = require('../../../global/registry') const globalRegistry = require('../../../global/registry')
// const defaultOptions = [ const defaultOptions = [
// { value: 'vm', name: 'JavaScript VM', title: 'Execution environment does not connect to any node, everything is local and in memory only.' }, { value: 'vm', name: 'JavaScript VM', title: 'Execution environment does not connect to any node, everything is local and in memory only.' },
// { value: 'injected', name: 'Injected Web3', title: 'Execution environment has been provided by Metamask or similar provider.' }, { value: 'injected', name: 'Injected Web3', title: 'Execution environment has been provided by Metamask or similar provider.' },
// { value: 'web3', name: 'Web3 Provider', title: 'Execution environment connects to node at localhost (or via IPC if available), transactions will be sent to the network and can cause loss of money or worse! If this page is served via https and you access your node via http, it might not work. In this case, try cloning the repository and serving it via http.' } { value: 'web3', name: 'Web3 Provider', title: 'Execution environment connects to node at localhost (or via IPC if available), transactions will be sent to the network and can cause loss of money or worse! If this page is served via https and you access your node via http, it might not work. In this case, try cloning the repository and serving it via http.' }
// ] ]
class SettingsUI { class SettingsUI {
constructor (blockchain, networkModule) { constructor (blockchain, networkModule) {
this.blockchain = blockchain this.blockchain = blockchain
this.event = new EventManager() this.event = new EventManager()
this._components = {} this._components = {}
this.options = defaultOptions
this.accounts = []
this.blockchain.event.register('transactionExecuted', (error, from, to, data, lookupOnly, txResult) => { this.blockchain.event.register('transactionExecuted', (error, from, to, data, lookupOnly, txResult) => {
if (!lookupOnly) this.el.querySelector('#value').value = 0 if (!lookupOnly) this.el.querySelector('#value').value = 0
@ -40,6 +42,7 @@ class SettingsUI {
} }
this._deps.config.events.on('settings/personal-mode_changed', this.onPersonalChange.bind(this)) this._deps.config.events.on('settings/personal-mode_changed', this.onPersonalChange.bind(this))
// this._deps.config.events.on('settings/personal-mode_changed', this.renderSettings.bind(this))
setInterval(() => { setInterval(() => {
this.updateAccountBalances() this.updateAccountBalances()
@ -88,31 +91,37 @@ class SettingsUI {
render () { render () {
this.netUI = yo`<span class="${css.network} badge badge-secondary"></span>` this.netUI = yo`<span class="${css.network} badge badge-secondary"></span>`
var environmentEl = yo` const selectedProvider = this.blockchain.getProvider()
<div class="${css.crow}">
<label id="selectExEnv" class="${css.settingsLabel}"> var environmentEl = yo`<div></div>`
Environment ReactDOM.render(<EnvironmentSelector options={defaultOptions} updateNetwork={this.updateNetwork.bind(this)} selectedProvider={selectedProvider} />, environmentEl)
</label>
<div class="${css.environment}"> // var environmentEl = yo`
<select id="selectExEnvOptions" data-id="settingsSelectEnvOptions" onchange=${() => { this.updateNetwork() }} class="form-control ${css.select} custom-select"> // <div class="${css.crow}">
<option id="vm-mode" // <label id="selectExEnv" class="${css.settingsLabel}">
title="Execution environment does not connect to any node, everything is local and in memory only." // Environment
value="vm" name="executionContext"> JavaScript VM // </label>
</option> // <div class="${css.environment}">
<option id="injected-mode" // <select id="selectExEnvOptions" data-id="settingsSelectEnvOptions" onchange=${() => { this.updateNetwork() }} class="form-control ${css.select} custom-select">
title="Execution environment has been provided by Metamask or similar provider." // <option id="vm-mode"
value="injected" name="executionContext"> Injected Web3 // title="Execution environment does not connect to any node, everything is local and in memory only."
</option> // value="vm" name="executionContext"> JavaScript VM
<option id="web3-mode" data-id="settingsWeb3Mode" // </option>
title="Execution environment connects to node at localhost (or via IPC if available), transactions will be sent to the network and can cause loss of money or worse! // <option id="injected-mode"
If this page is served via https and you access your node via http, it might not work. In this case, try cloning the repository and serving it via http." // title="Execution environment has been provided by Metamask or similar provider."
value="web3" name="executionContext"> Web3 Provider // value="injected" name="executionContext"> Injected Web3
</option> // </option>
</select> // <option id="web3-mode" data-id="settingsWeb3Mode"
<a href="https://remix-ide.readthedocs.io/en/latest/run.html#run-setup" target="_blank"><i class="${css.infoDeployAction} ml-2 fas fa-info" title="check out docs to setup Environment"></i></a> // title="Execution environment connects to node at localhost (or via IPC if available), transactions will be sent to the network and can cause loss of money or worse!
</div> // If this page is served via https and you access your node via http, it might not work. In this case, try cloning the repository and serving it via http."
</div> // value="web3" name="executionContext"> Web3 Provider
` // </option>
// </select>
// <a href="https://remix-ide.readthedocs.io/en/latest/run.html#run-setup" target="_blank"><i class="${css.infoDeployAction} ml-2 fas fa-info" title="check out docs to setup Environment"></i></a>
// </div>
// </div>
// `
const networkEl = yo` const networkEl = yo`
<div class="${css.crow}"> <div class="${css.crow}">
<div class="${css.settingsLabel}"> <div class="${css.settingsLabel}">
@ -375,14 +384,16 @@ class SettingsUI {
}) })
} }
updateNetwork () { updateNetwork (context, cb) {
this.blockchain.updateNetwork((err, { id, name } = {}) => { this.blockchain.updateNetwork((err, { id, name } = {}) => {
if (!cb) return
if (err) { if (err) {
this.netUI.innerHTML = 'can\'t detect network ' this.netUI.innerHTML = 'can\'t detect network '
return return cb('can\'t detect network ')
} }
const network = this._components.networkModule.getNetworkProvider.bind(this._components.networkModule) const network = this._components.networkModule.getNetworkProvider.bind(this._components.networkModule)
this.netUI.innerHTML = (network() !== 'vm') ? `${name} (${id || '-'}) network` : '' this.netUI.innerHTML = (network() !== 'vm') ? `${name} (${id || '-'}) network` : ''
cb((network() !== 'vm') ? `${name} (${id || '-'}) network` : '')
}) })
this.fillAccountsList() this.fillAccountsList()
} }

@ -1 +1,2 @@
export * from './lib/settings/settings'; export * from './lib/settings/settings';
export * from './lib/settings/environment-selector';
Loading…
Cancel
Save