pond: Show actual tipset height

This commit is contained in:
Łukasz Magiera 2019-10-09 09:56:00 +02:00
parent c83fb517ad
commit 1239cf2a20

View File

@ -140,9 +140,12 @@ class ChainExplorer extends React.Component {
const base = this.state.at - this.state.at % rows const base = this.state.at - this.state.at % rows
const className = row === this.state.at ? 'ChainExplorer-at' : (row < base ? 'ChainExplorer-after' : 'ChainExplorer-before') const className = row === this.state.at ? 'ChainExplorer-at' : (row < base ? 'ChainExplorer-after' : 'ChainExplorer-before')
let info = <span>(fetching)</span> let info = <span>(fetching)</span>
let h = <i>{row}</i>
if(this.state.cache[row]) { if(this.state.cache[row]) {
const ts = this.state.cache[row] const ts = this.state.cache[row]
h = ts.Height
let msgc = -1 let msgc = -1
if(ts.Cids[0] && this.state.messages[ts.Cids[0]['/']]) { // TODO: get from all blks if(ts.Cids[0] && this.state.messages[ts.Cids[0]['/']]) { // TODO: get from all blks
msgc = this.state.messages[ts.Cids[0]['/']].length msgc = this.state.messages[ts.Cids[0]['/']].length
@ -160,7 +163,7 @@ class ChainExplorer extends React.Component {
</span> </span>
} }
return <div key={row} className={className}>@{row} {info}</div> return <div key={row} className={className}>@{h} {info}</div>
})}</div> })}</div>
return (<Window onClose={this.props.onClose} title={`Chain Explorer ${this.state.follow ? '(Following)' : ''}`}> return (<Window onClose={this.props.onClose} title={`Chain Explorer ${this.state.follow ? '(Following)' : ''}`}>