2016-12-11 19:30:54 +01:00
|
|
|
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
2016-11-01 22:43:22 +01:00
|
|
|
// 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';
|
2017-01-05 12:06:46 +01:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-11-01 22:43:22 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
|
|
|
|
import styles from './blockStatus.css';
|
|
|
|
|
|
|
|
class BlockStatus extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
blockNumber: PropTypes.object,
|
|
|
|
syncing: PropTypes.oneOfType([
|
|
|
|
PropTypes.bool,
|
|
|
|
PropTypes.object
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
const { blockNumber, syncing } = this.props;
|
|
|
|
|
|
|
|
if (!blockNumber) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!syncing) {
|
|
|
|
return (
|
|
|
|
<div className={ styles.blockNumber }>
|
2017-01-05 12:06:46 +01:00
|
|
|
<FormattedMessage
|
|
|
|
id='ui.blockStatus.bestBlock'
|
|
|
|
defaultMessage='{blockNumber} best block'
|
|
|
|
values={ {
|
|
|
|
blockNumber: blockNumber.toFormat()
|
|
|
|
} } />
|
2016-11-01 22:43:22 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-25 16:46:35 +01:00
|
|
|
if (syncing.warpChunksAmount && syncing.warpChunksProcessed && !syncing.warpChunksAmount.eq(syncing.warpChunksProcessed)) {
|
2016-11-01 22:43:22 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.syncStatus }>
|
2017-01-05 12:06:46 +01:00
|
|
|
<FormattedMessage
|
|
|
|
id='ui.blockStatus.warpRestore'
|
|
|
|
defaultMessage='{percentage}% warp restore'
|
|
|
|
values={ {
|
|
|
|
percentage: syncing.warpChunksProcessed.mul(100).div(syncing.warpChunksAmount).toFormat(2)
|
|
|
|
} } />
|
2016-11-01 22:43:22 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-05 12:06:46 +01:00
|
|
|
let syncStatus = null;
|
2016-11-01 22:43:22 +01:00
|
|
|
let warpStatus = null;
|
|
|
|
|
2017-01-05 12:06:46 +01:00
|
|
|
if (syncing.currentBlock && syncing.highestBlock) {
|
|
|
|
syncStatus = (
|
|
|
|
<span>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.blockStatus.syncStatus'
|
|
|
|
defaultMessage='{currentBlock}/{highestBlock} syncing'
|
|
|
|
values={ {
|
|
|
|
currentBlock: syncing.currentBlock.toFormat(),
|
|
|
|
highestBlock: syncing.highestBlock.toFormat()
|
|
|
|
} } />
|
|
|
|
</span>
|
2016-11-01 22:43:22 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-01-05 12:06:46 +01:00
|
|
|
if (syncing.blockGap) {
|
|
|
|
const [first, last] = syncing.blockGap;
|
2016-12-21 15:12:40 +01:00
|
|
|
|
2017-01-05 12:06:46 +01:00
|
|
|
warpStatus = (
|
|
|
|
<span>
|
|
|
|
<FormattedMessage
|
|
|
|
id='ui.blockStatus.warpStatus'
|
|
|
|
defaultMessage=', {percentage}% historic'
|
|
|
|
values={ {
|
|
|
|
percentage: first.mul(100).div(last).toFormat(2)
|
|
|
|
} } />
|
|
|
|
</span>
|
2016-12-21 15:12:40 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-11-01 22:43:22 +01:00
|
|
|
return (
|
|
|
|
<div className={ styles.syncStatus }>
|
2016-12-21 15:12:40 +01:00
|
|
|
{ syncStatus }
|
2016-11-01 22:43:22 +01:00
|
|
|
{ warpStatus }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapStateToProps (state) {
|
|
|
|
const { blockNumber, syncing } = state.nodeStatus;
|
|
|
|
|
|
|
|
return {
|
|
|
|
blockNumber,
|
|
|
|
syncing
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
mapStateToProps,
|
2017-01-11 17:02:53 +01:00
|
|
|
null
|
2016-11-01 22:43:22 +01:00
|
|
|
)(BlockStatus);
|