2018-04-23 20:42:52 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import { Tabs, Tab } from 'react-bootstrap';
|
2016-08-18 11:45:08 +00:00
|
|
|
|
2018-01-03 17:42:48 +00:00
|
|
|
import EmbarkJS from 'Embark/EmbarkJS';
|
2018-04-23 20:42:52 +00:00
|
|
|
import Blockchain from './components/blockchain';
|
|
|
|
import Whisper from './components/whisper';
|
2018-04-24 20:21:33 +00:00
|
|
|
import Storage from './components/storage';
|
2018-01-03 17:42:48 +00:00
|
|
|
|
2018-01-12 21:33:16 +00:00
|
|
|
import './dapp.css';
|
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
class App extends React.Component {
|
2016-08-18 11:45:08 +00:00
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2015-05-24 13:07:19 +00:00
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
this.state = {
|
2018-04-24 20:21:33 +00:00
|
|
|
whisperEnabled: false,
|
|
|
|
storageEnabled: false
|
2017-10-25 10:19:24 +00:00
|
|
|
}
|
2018-04-23 20:42:52 +00:00
|
|
|
}
|
2017-10-25 10:19:24 +00:00
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
componentDidMount(){
|
2018-04-26 00:11:15 +00:00
|
|
|
let _this = this;
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
if (EmbarkJS.isNewWeb3()) {
|
|
|
|
EmbarkJS.Messages.Providers.whisper.getWhisperVersion(function(err, version){
|
|
|
|
if(!err)
|
|
|
|
_this.setState({whisperEnabled: true})
|
|
|
|
else
|
|
|
|
console.log(err);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (EmbarkJS.Messages.providerName === 'whisper') {
|
|
|
|
EmbarkJS.Messages.getWhisperVersion(function(err, version) {
|
|
|
|
if(!err)
|
|
|
|
_this.setState({whisperEnabled: true})
|
|
|
|
else
|
|
|
|
console.log(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 500);
|
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
this.setState({
|
2018-04-26 00:11:15 +00:00
|
|
|
storageEnabled: true
|
2017-01-26 11:29:17 +00:00
|
|
|
});
|
2018-04-23 20:42:52 +00:00
|
|
|
}
|
2017-01-26 11:29:17 +00:00
|
|
|
|
2017-01-27 00:18:53 +00:00
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
_renderStatus(title, available){
|
|
|
|
let className = available ? 'pull-right status-online' : 'pull-right status-offline';
|
|
|
|
return <React.Fragment>
|
|
|
|
{title}
|
|
|
|
<span className={className}></span>
|
|
|
|
</React.Fragment>;
|
2017-10-25 10:19:24 +00:00
|
|
|
}
|
2017-01-26 11:29:17 +00:00
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
render(){
|
|
|
|
return (<div><h3>Embark - Usage Example</h3>
|
|
|
|
<Tabs defaultActiveKey={1} id="uncontrolled-tab-example">
|
|
|
|
<Tab eventKey={1} title="Blockchain">
|
|
|
|
<Blockchain />
|
|
|
|
</Tab>
|
2018-04-24 20:21:33 +00:00
|
|
|
<Tab eventKey={2} title={this._renderStatus('Decentralized Storage', this.state.storageEnabled)}>
|
2018-04-27 13:04:34 +00:00
|
|
|
<Storage enabled={this.state.storageEnabled} />
|
2018-04-23 20:42:52 +00:00
|
|
|
</Tab>
|
|
|
|
<Tab eventKey={3} title={this._renderStatus('P2P communication (Whisper/Orbit)', this.state.whisperEnabled)}>
|
|
|
|
<Whisper enabled={this.state.whisperEnabled} />
|
|
|
|
</Tab>
|
|
|
|
</Tabs>
|
|
|
|
</div>);
|
|
|
|
}
|
|
|
|
}
|
2017-01-26 11:29:17 +00:00
|
|
|
|
2018-04-23 20:42:52 +00:00
|
|
|
ReactDOM.render(<App></App>, document.getElementById('app'));
|