slate/scenes/SceneDataTransfer[dep].js

80 lines
2.4 KiB
JavaScript
Raw Normal View History

2020-06-19 06:57:57 +03:00
import * as React from "react";
import * as System from "~/components/system";
2020-06-19 06:57:57 +03:00
import ScenePage from "~/components/core/ScenePage";
import Section from "~/components/core/Section";
export default class SceneDataTransfer extends React.Component {
2020-06-19 06:57:57 +03:00
state = { sub_navigation: "1" };
_handleChange = (e) => {
this.setState({ [e.target.name]: e.target.value });
};
render() {
return (
<ScenePage>
<System.H1>Data transfers</System.H1>
<System.CardTabGroup
style={{ marginTop: 24 }}
name="sub_navigation"
options={[
2020-06-19 06:57:57 +03:00
{ value: "1", label: "Current transfers" },
{ value: "2", label: "Past transfers" },
]}
value={this.state.sub_navigation}
onChange={this._handleChange}
/>
2020-06-19 06:57:57 +03:00
{this.state.sub_navigation === "2" ? (
2020-09-29 07:39:05 +03:00
<Section title="Past transfers" onAction={this.props.onAction}>
<System.Table
data={{
columns: [
{
key: "data-cid",
name: "Data CID",
copyable: true,
tooltip: "Data CID explainer.",
width: "224px",
},
{
key: "deal-cid",
name: "Deal CID",
copyable: true,
tooltip: "Deal CID explainer.",
width: "100%",
},
{
key: "data-source",
name: "Source",
width: "120px",
},
{
key: "data-destination",
name: "Destination",
width: "120px",
},
{ key: "size", name: "Size", width: "140px" },
],
rows: this.props.viewer.data_transfers,
}}
selectedRowId={this.state.table_past_transfer}
onChange={this._handleChange}
onAction={this.props.onAction}
name="table_past_transfer"
/>
</Section>
) : null}
2020-06-19 06:57:57 +03:00
{this.state.sub_navigation === "1" ? (
2020-09-29 07:39:05 +03:00
<Section onAction={this.props.onAction} title="Current transfers">
2021-07-07 23:50:57 +03:00
<System.P1 style={{ padding: 24 }}>There are no transfers</System.P1>
</Section>
) : null}
</ScenePage>
);
}
}