openethereum/js/src/views/Application/application.js
2016-12-11 16:49:38 +01:00

126 lines
3.1 KiB
JavaScript

// Copyright 2015, 2016 Ethcore (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 React, { Component, PropTypes } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { observer } from 'mobx-react';
import Connection from '../Connection';
import ParityBar from '../ParityBar';
import Snackbar from './Snackbar';
import Container from './Container';
import DappContainer from './DappContainer';
import FrameError from './FrameError';
import Status from './Status';
import Store from './store';
import TabBar from './TabBar';
import styles from './application.css';
const inFrame = window.parent !== window && window.parent.frames.length !== 0;
@observer
class Application extends Component {
static contextTypes = {
api: PropTypes.object.isRequired,
background: PropTypes.string
}
static propTypes = {
children: PropTypes.node,
netChain: PropTypes.string,
isTest: PropTypes.bool,
pending: PropTypes.array,
blockNumber: PropTypes.object
}
store = new Store(this.context.api);
render () {
const [root] = (window.location.hash || '').replace('#/', '').split('/');
const isDapp = root === 'app';
if (inFrame) {
return (
<FrameError />
);
}
return (
<div>
{ isDapp ? this.renderDapp() : this.renderApp() }
<Connection />
<ParityBar dapp={ isDapp } />
</div>
);
}
renderApp () {
const { children, pending, netChain, isTest, blockNumber } = this.props;
return (
<Container
showFirstRun={ this.store.firstrunVisible }
onCloseFirstRun={ this.store.closeFirstrun }>
<TabBar
netChain={ netChain }
isTest={ isTest }
pending={ pending } />
<div className={ styles.content }>
{ children }
</div>
{ blockNumber ? (<Status />) : null }
<Snackbar />
</Container>
);
}
renderDapp () {
const { children } = this.props;
return (
<DappContainer>
{ children }
</DappContainer>
);
}
}
function mapStateToProps (state) {
const { netChain, isTest, blockNumber } = state.nodeStatus;
const { hasAccounts } = state.personal;
const { pending } = state.signer;
return {
hasAccounts,
netChain,
isTest,
pending,
blockNumber
};
}
function mapDispatchToProps (dispatch) {
return bindActionCreators({}, dispatch);
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(Application);