mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-23 22:12:19 +03:00
219 lines
6.1 KiB
JavaScript
219 lines
6.1 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 { css } from "@emotion/react";
|
|
import { LineChart } from "~/vendor/react-chartkick";
|
|
|
|
import Section from "~/components/core/Section";
|
|
import ScenePage from "~/components/core/ScenePage";
|
|
|
|
const STYLES_CHART_SECTION = css`
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
margin-top: 48px;
|
|
`;
|
|
|
|
const STYLES_LEFT = css`
|
|
min-width: 10%;
|
|
width: 100%;
|
|
`;
|
|
|
|
const STYLES_RIGHT = css`
|
|
width: 288px;
|
|
flex-shrink: 0;
|
|
padding-left: 24px;
|
|
`;
|
|
|
|
const STYLES_FOCUS = css`
|
|
font-size: ${Constants.typescale.lvl1};
|
|
font-family: ${Constants.font.medium};
|
|
overflow-wrap: break-word;
|
|
width: 100%;
|
|
|
|
strong {
|
|
font-family: ${Constants.font.semiBold};
|
|
font-weight: 400;
|
|
}
|
|
`;
|
|
|
|
const STYLES_SUBTEXT = css`
|
|
margin-top: 8px;
|
|
font-size: 12px;
|
|
`;
|
|
|
|
const STYLES_ITEM = css`
|
|
padding: 16px 24px 16px 24px;
|
|
`;
|
|
|
|
const STYLES_OPTION = css`
|
|
margin-left: 24px;
|
|
font-family: ${Constants.font.semiBold};
|
|
font-size: 12px;
|
|
line-height: 0.2px;
|
|
text-transform: uppercase;
|
|
border-radius: 4px;
|
|
transition: 200ms ease all;
|
|
|
|
:hover {
|
|
cursor: pointer;
|
|
color: ${Constants.system.brand};
|
|
}
|
|
`;
|
|
|
|
const STYLES_OPTIONS = css`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding: 24px;
|
|
`;
|
|
|
|
export default class SceneStorageMarket extends React.Component {
|
|
state = {};
|
|
|
|
_handleChange = (e) => {
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
};
|
|
|
|
render() {
|
|
return (
|
|
<ScenePage>
|
|
<System.H1>2,534 FIL</System.H1>
|
|
<System.P>
|
|
Last Storage Order / GB / Month{" "}
|
|
<strong style={{ color: Constants.system.green, fontWeight: 400 }}>
|
|
+143.24 (6.08)%
|
|
</strong>
|
|
</System.P>
|
|
|
|
<div css={STYLES_CHART_SECTION}>
|
|
<div css={STYLES_LEFT}>
|
|
<Section
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
title="Storage market"
|
|
>
|
|
<div css={STYLES_OPTIONS}>
|
|
<span css={STYLES_OPTION}>1 Day</span>
|
|
<span css={STYLES_OPTION}>1 Week</span>
|
|
<span css={STYLES_OPTION}>1 Month</span>
|
|
<span css={STYLES_OPTION}>6 Month</span>
|
|
<span css={STYLES_OPTION}>1 Year</span>
|
|
</div>
|
|
<LineChart
|
|
data={[
|
|
["2017-01-01 00:00:00 UTC", 1],
|
|
["2018-01-01 00:00:00 UTC", 5],
|
|
["2019-01-01 00:00:00 UTC", 25],
|
|
["2020-01-01 00:00:00 UTC", 200],
|
|
[new Date(), 400],
|
|
]}
|
|
library={{
|
|
backgroundColor: "transparent",
|
|
scales: {
|
|
yAxes: [
|
|
{
|
|
display: false,
|
|
},
|
|
],
|
|
},
|
|
}}
|
|
dataset={{ lineTension: 0, pointRadius: 0, borderWidth: 1 }}
|
|
width="100%"
|
|
height="640px"
|
|
colors={[Constants.system.brand]}
|
|
/>
|
|
</Section>
|
|
</div>
|
|
<div css={STYLES_RIGHT}>
|
|
<Section
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
title="Statistics"
|
|
>
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>8,422 FIL/GB/Month</div>
|
|
<div css={STYLES_SUBTEXT}>Market Storage Price</div>
|
|
</div>
|
|
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>4 FIL/GB/Month</div>
|
|
<div css={STYLES_SUBTEXT}>Average Storage Price</div>
|
|
</div>
|
|
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>4.001 FIL/GB/Month</div>
|
|
<div css={STYLES_SUBTEXT}>Storage High Today</div>
|
|
</div>
|
|
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>44 Files</div>
|
|
<div css={STYLES_SUBTEXT}>Daily File Volume</div>
|
|
</div>
|
|
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>24 Files</div>
|
|
<div css={STYLES_SUBTEXT}>Average Daily File Volume</div>
|
|
</div>
|
|
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>444,444 GB</div>
|
|
<div css={STYLES_SUBTEXT}>Monthly GB Volume</div>
|
|
</div>
|
|
|
|
<div css={STYLES_ITEM}>
|
|
<div css={STYLES_FOCUS}>24,000 GB</div>
|
|
<div css={STYLES_SUBTEXT}>Average GB Volume</div>
|
|
</div>
|
|
</Section>
|
|
</div>
|
|
</div>
|
|
|
|
<Section
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
title="Transactions"
|
|
buttons={[
|
|
{
|
|
name: "Make storage deal",
|
|
type: "SIDEBAR",
|
|
value: "SIDEBAR_ADD_FILE_TO_BUCKET",
|
|
},
|
|
{
|
|
name: "Export",
|
|
type: "DOWNLOAD",
|
|
value: "CSV_STORAGE_DEALS",
|
|
},
|
|
]}
|
|
>
|
|
<System.Table
|
|
data={{
|
|
columns: [
|
|
{ key: "file", name: "File", type: "FILE_LINK" },
|
|
{ key: "miner", name: "Miner", width: "100%" },
|
|
{
|
|
key: "deal-cid",
|
|
name: "Deal CID",
|
|
copyable: true,
|
|
tooltip: "Deal CID Explainer",
|
|
width: "244px",
|
|
},
|
|
{ key: "date", name: "Date", width: "144px" },
|
|
{ key: "amount", name: "Amount" },
|
|
],
|
|
rows: [],
|
|
}}
|
|
selectedRowId={this.state.table_storage_market}
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
onChange={this._handleChange}
|
|
name="table_storage_market"
|
|
/>
|
|
</Section>
|
|
</ScenePage>
|
|
);
|
|
}
|
|
}
|