lotus/lotuspond/front/src/Block.js

60 lines
2.0 KiB
JavaScript
Raw Normal View History

2019-07-25 17:06:10 +00:00
import React from 'react';
import {Cristal} from "react-cristal";
import {BlockLinks} from "./BlockLink";
2019-08-10 01:54:45 +00:00
import Address from "./Address";
2019-07-25 17:06:10 +00:00
class Block extends React.Component {
constructor(props) {
super(props)
this.state = {}
this.loadHeader()
}
async loadHeader() {
const header = await this.props.conn.call('Filecoin.ChainGetBlock', [this.props.cid])
const messages = await this.props.conn.call('Filecoin.ChainGetBlockMessages', [this.props.cid])
console.log(messages)
this.setState({header: header, messages: messages})
2019-07-25 17:06:10 +00:00
}
render() {
let content = <div>Loading Block Info</div>
if (this.state.header) {
let head = this.state.header
let messages = [
...(this.state.messages.BlsMessages.map(m => ({...m, type: 'BLS'}))),
...(this.state.messages.SecpkMessages.map(m => ({...(m.Message), type: 'Secpk'})))
].map(m => (
2019-07-25 17:06:10 +00:00
<div>
2019-08-16 17:37:04 +00:00
<Address client={this.props.conn} addr={m.From} mountWindow={this.props.mountWindow}/><b>&nbsp;=>&nbsp;</b>
<Address client={this.props.conn} addr={m.To} mountWindow={this.props.mountWindow} transfer={m.Value} method={m.Method}/>
</div>
))
content = (
<div className="Block">
2019-07-25 17:06:10 +00:00
<div>Height: {head.Height}</div>
<div>Parents: <BlockLinks cids={head.Parents} conn={this.props.conn} mountWindow={this.props.mountWindow}/></div>
<div>Weight: {head.ParentWeight}</div>
2019-08-10 01:54:45 +00:00
<div>Miner: {<Address client={this.props.conn} addr={head.Miner} mountWindow={this.props.mountWindow}/>}</div>
2019-07-25 17:06:10 +00:00
<div>Messages: {head.Messages['/']} {/*TODO: link to message explorer */}</div>
<div>Receipts: {head.MessageReceipts['/']}</div>
<div>State Root:&nbsp;{head.StateRoot['/']}</div>
<div>----</div>
<div>{messages}</div>
2019-07-25 17:06:10 +00:00
</div>
)
}
2019-08-16 17:37:04 +00:00
return (<Cristal initialSize={{width: 700, height: 200}} onClose={this.props.onClose} title={`Block ${this.props.cid['/']}`}>
2019-07-25 17:06:10 +00:00
{content}
</Cristal>)
}
}
export default Block