openethereum/js/packages/dapp-settings/Node/node.js
Jaco Greeff 49fdd23d58 Ui 2 move to packages/* (#6113)
* Move secureApi to shell

* Extract isTestnet test

* Use mobx + subscriptions for status

* Re-add status indicator

* Add lerna

* Move intial packages to js/packages

* Move 3rdparty/{email,sms}-verification to correct location

* Move package.json & README to library src

* Move tests for library packages

* Move views & dapps to packages

* Move i18n to root

* Move shell to actual src (main app)

* Remove ~ references

* Change ~ to root (explicit imports)

* Finalise convert of ~

* Move views into dapps as well

* Move dapps to packages/

* Fix references

* Update css

* Update test spec locations

* Update tests

* Case fix

* Skip flakey tests

* Update enzyme

* Skip previously ignored tests

* Allow empty api for hw

* Re-add theme for embed
2017-07-21 15:46:53 +02:00

251 lines
7.0 KiB
JavaScript

// Copyright 2015-2017 Parity Technologies (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { observer } from 'mobx-react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import { Container, Dropdown, LanguageSelector } from '@parity/ui';
import Features, { FeaturesStore, FEATURES } from '@parity/ui/Features';
import Store, { LOGLEVEL_OPTIONS } from './store';
import layout from '../layout.css';
@observer
export default class Node extends Component {
static contextTypes = {
api: PropTypes.object.isRequired
};
store = new Store(this.context.api);
features = FeaturesStore.get();
componentWillMount () {
this.store.loadChain();
return this.store.loadMode();
}
render () {
return (
<Container
title={
<FormattedMessage id='settings.parity.label' />
}
>
<div className={ layout.layout }>
<div className={ layout.overview }>
<div>
<FormattedMessage
id='settings.parity.overview_0'
defaultMessage='Control the Parity node settings and nature of syncing via this interface.'
/>
</div>
</div>
<div className={ layout.details }>
{ this.renderChains() }
{ this.renderModes() }
<Features />
<LanguageSelector />
</div>
</div>
{ this.renderLogsConfig() }
</Container>
);
}
renderItem (name, label) {
return {
key: name,
text: name,
value: name,
content: label
};
}
renderLogsConfig () {
if (!this.features.active[FEATURES.LOGLEVELS]) {
return null;
}
return (
<div className={ layout.layout }>
<div className={ layout.overview }>
<div>
<FormattedMessage
id='settings.parity.loglevels'
defaultMessage='Choose the different logs level.'
/>
</div>
</div>
<div className={ layout.details }>
{ this.renderLogsLevels() }
</div>
</div>
);
}
renderLogsLevels () {
const { logLevels } = this.store;
return Object
.keys(logLevels)
.map((key) => {
const { level, log } = logLevels[key];
const { desc } = log;
const onChange = (_, index) => {
this.store.updateLoggerLevel(log.key, Object.values(LOGLEVEL_OPTIONS)[index].value);
};
return (
<div key={ key }>
<p>{ desc }</p>
<Dropdown
onChange={ onChange }
value={ level }
options={ LOGLEVEL_OPTIONS }
/>
</div>
);
});
}
renderModes () {
const { mode } = this.store;
return (
<div className={ layout.option }>
<Dropdown
id='parityModeSelect'
label={
<FormattedMessage
id='settings.parity.modes.hint'
defaultMessage='Choose the syncing mode for the Parity node'
/>
}
onChange={ this.onChangeMode }
value={ mode }
options={ [
this.renderItem('active', (
<FormattedMessage
id='settings.parity.modes.mode_active'
defaultMessage='Continuously sync'
/>
)),
this.renderItem('passive', (
<FormattedMessage
id='settings.parity.modes.mode_passive'
defaultMessage='Sync on intervals'
/>
)),
this.renderItem('dark', (
<FormattedMessage
id='settings.parity.modes.mode_dark'
defaultMessage='Sync when RPC is active'
/>
)),
this.renderItem('offline', (
<FormattedMessage
id='settings.parity.modes.mode_offline'
defaultMessage='No Syncing'
/>
))
] }
/>
</div>
);
}
renderChains () {
const { chain } = this.store;
return (
<div className={ layout.option }>
<Dropdown
id='parityChainSelect'
label={
<FormattedMessage
id='settings.parity.chains.hint'
defaultMessage='Choose the chain for the Parity node to sync to'
/>
}
onChange={ this.onChangeChain }
value={ chain }
options={ [
this.renderItem('foundation', (
<FormattedMessage
id='settings.parity.chains.chain_foundation'
defaultMessage='Ethereum Foundation'
/>
)),
this.renderItem('kovan', (
<FormattedMessage
id='settings.parity.chains.chain_kovan'
defaultMessage='Kovan test network'
/>
)),
this.renderItem('olympic', (
<FormattedMessage
id='settings.parity.chains.chain_olympic'
defaultMessage='Olympic test network'
/>
)),
this.renderItem('morden', (
<FormattedMessage
id='settings.parity.chains.cmorden_kovan'
defaultMessage='Morden (Classic) test network'
/>
)),
this.renderItem('ropsten', (
<FormattedMessage
id='settings.parity.chains.chain_ropsten'
defaultMessage='Ropsten test network'
/>
)),
this.renderItem('classic', (
<FormattedMessage
id='settings.parity.chains.chain_classic'
defaultMessage='Ethereum Classic network'
/>
)),
this.renderItem('expanse', (
<FormattedMessage
id='settings.parity.chains.chain_expanse'
defaultMessage='Expanse network'
/>
)),
this.renderItem('dev', (
<FormattedMessage
id='settings.parity.chains.chain_dev'
defaultMessage='Local development chain'
/>
))
] }
/>
</div>
);
}
onChangeMode = (event, mode) => {
this.store.changeMode(mode.name);
}
onChangeChain = (event, chain) => {
this.store.changeChain(chain.name);
}
}