lotus/lotuspond/front/src/FullNode.js

163 lines
5.3 KiB
JavaScript
Raw Normal View History

2019-07-24 17:10:44 +00:00
import React from 'react';
import { Client } from 'rpc-websockets'
2019-07-24 18:42:02 +00:00
import Cristal from 'react-cristal'
2019-07-25 17:06:10 +00:00
import { BlockLinks } from "./BlockLink";
2019-07-30 23:18:21 +00:00
import StorageNodeInit from "./StorageNodeInit";
2019-08-10 01:54:45 +00:00
import Address from "./Address";
2019-08-16 02:34:11 +00:00
import ChainExplorer from "./ChainExplorer";
2019-07-25 14:57:30 +00:00
2019-07-24 17:10:44 +00:00
class FullNode extends React.Component {
constructor(props) {
super(props)
2019-08-21 15:14:38 +00:00
this.state = {}
2019-07-24 17:10:44 +00:00
2019-07-24 22:30:17 +00:00
this.loadInfo = this.loadInfo.bind(this)
2019-07-30 23:18:21 +00:00
this.newScepAddr = this.newScepAddr.bind(this)
this.startStorageMiner = this.startStorageMiner.bind(this)
2019-08-09 15:59:12 +00:00
this.add1k = this.add1k.bind(this)
2019-08-16 02:34:11 +00:00
this.explorer = this.explorer.bind(this)
2019-07-24 17:10:44 +00:00
2019-08-09 15:59:12 +00:00
this.loadInfo()
setInterval(this.loadInfo, 2050)
2019-07-24 17:10:44 +00:00
}
async loadInfo() {
2019-08-09 15:59:12 +00:00
const id = await this.props.client.call("Filecoin.ID", [])
const version = await this.props.client.call("Filecoin.Version", [])
2019-07-24 17:10:44 +00:00
2019-08-09 15:59:12 +00:00
const peers = await this.props.client.call("Filecoin.NetPeers", [])
2019-07-24 22:14:09 +00:00
2019-08-09 15:59:12 +00:00
const tipset = await this.props.client.call("Filecoin.ChainHead", [])
2019-07-25 14:57:30 +00:00
2019-08-15 15:46:34 +00:00
let addrs = await this.props.client.call('Filecoin.WalletList', [])
let defaultAddr = ""
2019-08-10 01:54:45 +00:00
if (addrs.length > 0) {
2019-08-09 15:59:12 +00:00
defaultAddr = await this.props.client.call('Filecoin.WalletDefaultAddress', [])
}
2019-08-15 15:46:34 +00:00
let paychs = await this.props.client.call('Filecoin.PaychList', [])
if(!paychs)
paychs = []
const vouchers = await Promise.all(paychs.map(paych => {
return this.props.client.call('Filecoin.PaychVoucherList', [paych])
}))
2019-07-25 14:57:30 +00:00
2019-08-21 15:14:38 +00:00
let minerList = await this.props.client.call('Filecoin.MinerAddresses', [])
2019-08-09 16:11:46 +00:00
this.setState(() => ({
id: id,
version: version,
peers: peers.length,
tipset: tipset,
2019-08-10 01:54:45 +00:00
addrs: addrs,
2019-08-15 15:46:34 +00:00
paychs: paychs,
vouchers: vouchers,
2019-08-21 15:14:38 +00:00
defaultAddr: defaultAddr,
2019-07-24 17:10:44 +00:00
2019-08-21 15:14:38 +00:00
minerList: minerList,
}))
2019-07-24 22:30:17 +00:00
}
2019-07-30 23:18:21 +00:00
async newScepAddr() {
const t = "secp256k1"
2019-08-09 15:59:12 +00:00
await this.props.client.call("Filecoin.WalletNew", [t])
2019-07-30 23:18:21 +00:00
this.loadInfo()
}
async startStorageMiner() {
2019-08-09 15:59:12 +00:00
this.props.mountWindow((onClose) => <StorageNodeInit fullRepo={this.props.node.Repo} fullConn={this.props.client} pondClient={this.props.pondClient} onClose={onClose} mountWindow={this.props.mountWindow}/>)
}
async add1k(to) {
await this.props.give1k(to)
2019-07-30 23:18:21 +00:00
}
2019-08-16 02:34:11 +00:00
explorer() {
this.props.mountWindow((onClose) => <ChainExplorer onClose={onClose} ts={this.state.tipset} client={this.props.client} mountWindow={this.props.mountWindow}/>)
}
2019-07-24 17:10:44 +00:00
render() {
let runtime = <div></div>
2019-08-09 16:11:46 +00:00
if (this.state.id) {
2019-07-24 22:14:09 +00:00
let chainInfo = <div></div>
if (this.state.tipset !== undefined) {
chainInfo = (
2019-07-25 16:13:46 +00:00
<div>
Head: {
<BlockLinks cids={this.state.tipset.Cids} conn={this.props.client} mountWindow={this.props.mountWindow} />
2019-08-16 02:34:11 +00:00
} H:{this.state.tipset.Height} <a href="#" onClick={this.explorer}>[Explore]</a>
2019-07-25 16:13:46 +00:00
</div>
2019-07-24 22:14:09 +00:00
)
}
2019-08-21 15:14:38 +00:00
let mining = <span/>
if(this.state.minerList.length > 0) {
mining = this.state.minerList.map((a, k) => <span key={k}>&nbsp;<Address short={true} client={this.props.client} addr={a} mountWindow={this.props.mountWindow}/></span>)
mining = <span>[Mine{mining}]</span>
2019-07-24 23:46:48 +00:00
}
2019-07-30 23:18:21 +00:00
let storageMine = <a href="#" onClick={this.startStorageMiner}>[Spawn Storage Miner]</a>
2019-08-10 01:54:45 +00:00
let addresses = this.state.addrs.map((addr) => {
let line = <Address client={this.props.client} add1k={this.add1k} addr={addr} mountWindow={this.props.mountWindow}/>
if (this.state.defaultAddr === addr) {
line = <b>{line}</b>
}
2019-08-09 16:11:46 +00:00
return <div key={addr}>{line}</div>
})
2019-08-15 15:46:34 +00:00
let paychannels = this.state.paychs.map((addr, ak) => {
const line = <Address client={this.props.client} add1k={this.add1k} addr={addr} mountWindow={this.props.mountWindow}/>
const vouchers = this.state.vouchers[ak].map(voucher => {
let extra = <span></span>
if(voucher.Extra) {
2019-08-16 17:37:04 +00:00
extra = <span>Verif: &lt;<b><Address nobalance={true} client={this.props.client} addr={voucher.Extra.Actor} method={voucher.Extra.Method} mountWindow={this.props.mountWindow}/></b>&gt;</span>
2019-08-15 15:46:34 +00:00
}
return <div key={voucher.Nonce} className="FullNode-voucher">
Voucher Nonce:<b>{voucher.Nonce}</b> Lane:<b>{voucher.Lane}</b> Amt:<b>{voucher.Amount}</b> TL:<b>{voucher.TimeLock}</b> MinCl:<b>{voucher.MinCloseHeight}</b> {extra}
</div>
})
return <div key={addr}>
{line}
{vouchers}
</div>
})
2019-07-25 14:57:30 +00:00
2019-07-24 17:10:44 +00:00
runtime = (
<div>
2019-08-09 16:11:46 +00:00
<div>{this.props.node.ID} - v{this.state.version.Version}, <abbr title={this.state.id}>{this.state.id.substr(-8)}</abbr>, {this.state.peers} peers</div>
2019-07-24 22:14:09 +00:00
<div>Repo: LOTUS_PATH={this.props.node.Repo}</div>
{chainInfo}
2019-07-25 14:57:30 +00:00
<div>
2019-08-21 15:14:38 +00:00
{mining} {storageMine}
2019-07-30 23:18:21 +00:00
</div>
<div>
<div>Balances: [New <a href="#" onClick={this.newScepAddr}>[Secp256k1]</a>]</div>
2019-08-10 01:54:45 +00:00
<div>{addresses}</div>
2019-08-15 15:46:34 +00:00
<div>{paychannels}</div>
2019-07-25 14:57:30 +00:00
</div>
2019-07-24 22:14:09 +00:00
2019-07-24 17:10:44 +00:00
</div>
)
}
return (
2019-07-24 18:42:02 +00:00
<Cristal
title={"Node " + this.props.node.ID}
2019-08-16 17:37:04 +00:00
initialPosition={{x: this.props.node.ID*30, y: this.props.node.ID * 30}}
initialSize={{width: 690, height: 300}} >
2019-07-25 14:57:30 +00:00
<div className="CristalScroll">
<div className="FullNode">
{runtime}
</div>
2019-07-24 18:42:02 +00:00
</div>
</Cristal>
2019-07-24 17:10:44 +00:00
)
}
}
export default FullNode