mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
53 lines
1.4 KiB
JavaScript
53 lines
1.4 KiB
JavaScript
import * as React from "react";
|
|
import * as Strings from "~/common/strings";
|
|
import * as Constants from "~/common/constants";
|
|
import * as System from "~/components/system";
|
|
import * as SchemaTable from "~/common/schema-table";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import GLRenderer from "~/components/three/GLRenderer";
|
|
import Section from "~/components/core/Section";
|
|
import ScenePage from "~/components/core/ScenePage";
|
|
|
|
export default class ScenePeers extends React.Component {
|
|
state = {};
|
|
|
|
_handleChange = (e) => {
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<ScenePage>
|
|
<System.H1>Peers</System.H1>
|
|
<GLRenderer width={1200} height={480} />
|
|
<Section
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
title="Peers"
|
|
buttons={[
|
|
{
|
|
name: "Add peer",
|
|
type: "SIDEBAR",
|
|
value: "SIDEBAR_ADD_PEER",
|
|
},
|
|
]}
|
|
>
|
|
<System.Table
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
data={{
|
|
columns: SchemaTable.Peers,
|
|
rows: this.props.viewer.peers,
|
|
}}
|
|
selectedRowId={this.state.table_peers}
|
|
onChange={this._handleChange}
|
|
name="table_peers"
|
|
/>
|
|
</Section>
|
|
</ScenePage>
|
|
);
|
|
}
|
|
}
|