mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-24 06:45:59 +03:00
196 lines
4.6 KiB
JavaScript
196 lines
4.6 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 * as Data from "~/common/data";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import GLRenderer from "~/components/three/GLRenderer";
|
|
import Section from "~/components/core/Section";
|
|
import ScenePage from "~/components/core/ScenePage";
|
|
|
|
const STYLES_ROW = css`
|
|
display: flex;
|
|
margin-top: 24px;
|
|
width: 100%;
|
|
|
|
:first-child {
|
|
margin-top: 0px;
|
|
}
|
|
`;
|
|
|
|
const STYLES_COLUMN = css`
|
|
display: inline-flex;
|
|
padding: 0 12px 0 12px;
|
|
max-width: 25%;
|
|
width: 100%;
|
|
|
|
:first-child {
|
|
padding: 0 12px 0 0;
|
|
}
|
|
|
|
:last-child {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
max-width: 100%;
|
|
}
|
|
`;
|
|
|
|
export default class SceneHome extends React.Component {
|
|
state = {
|
|
data: null,
|
|
transaction: null,
|
|
};
|
|
|
|
_handleChange = (e) => {
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
};
|
|
|
|
render() {
|
|
console.log(this.props.viewer.slates);
|
|
// TODO(jim): Refactor later.
|
|
const slates = {
|
|
columns: [
|
|
{ key: "id", id: "id", name: "ID" },
|
|
{ key: "slatename", name: "Slate Name", width: "228px" },
|
|
{ key: "url", name: "URL", width: "268px" },
|
|
{
|
|
key: "public",
|
|
name: "Public",
|
|
type: "SLATE_PUBLIC_TEXT_TAG",
|
|
width: "188px",
|
|
},
|
|
],
|
|
rows: this.props.viewer.slates.map((each) => {
|
|
return {
|
|
...each,
|
|
url: `https://slate.host/@${this.props.viewer.username}/${
|
|
each.slatename
|
|
}`,
|
|
public: false,
|
|
};
|
|
}),
|
|
};
|
|
|
|
// TODO(jim): Refactor later.
|
|
const slateButtons = [
|
|
{ name: "Create slate", type: "SIDEBAR", value: "SIDEBAR_CREATE_SLATE" },
|
|
];
|
|
|
|
// TODO(jim): Refactor later.
|
|
const data = {
|
|
columns: [
|
|
{ key: "name", name: "Data", type: "FILE_LINK" },
|
|
{
|
|
key: "size",
|
|
name: "Size",
|
|
width: "140px",
|
|
type: "FILE_SIZE",
|
|
},
|
|
{
|
|
key: "date",
|
|
name: "Date uploaded",
|
|
width: "160px",
|
|
type: "FILE_DATE",
|
|
tooltip:
|
|
"This date represents when the file was first uploaded to IPFS.",
|
|
},
|
|
{
|
|
key: "networks",
|
|
name: "Network",
|
|
type: "NETWORK_TYPE",
|
|
width: "188px",
|
|
},
|
|
],
|
|
rows: this.props.viewer.library[0].children.map((each) => {
|
|
return {
|
|
...each,
|
|
button: "Store on Filecoin",
|
|
};
|
|
}),
|
|
};
|
|
|
|
// TODO(jim): Refactor later.
|
|
const dataButtons = [
|
|
{
|
|
name: "View files",
|
|
type: "NAVIGATE",
|
|
value: this.props.viewer.library[0].folderId,
|
|
},
|
|
{
|
|
name: "Upload to IPFS",
|
|
type: "SIDEBAR",
|
|
value: "SIDEBAR_ADD_FILE_TO_BUCKET",
|
|
},
|
|
];
|
|
|
|
// TODO(jim): Refactor later.
|
|
const wallet = {
|
|
columns: [
|
|
{ key: "address", name: "Address" },
|
|
{ key: "balance", name: "Filecoin", width: "228px" },
|
|
{ key: "type", name: "Type", width: "188px", type: "TEXT_TAG" },
|
|
],
|
|
rows: this.props.viewer.addresses,
|
|
};
|
|
|
|
// TODO(jim): Refactor later.
|
|
const walletButtons = [
|
|
{
|
|
name: "View all",
|
|
type: "NAVIGATE",
|
|
value: 2,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ScenePage>
|
|
<GLRenderer width={1200} height={480} />
|
|
<Section
|
|
title="Slates"
|
|
buttons={slateButtons}
|
|
onAction={this.props.onAction}
|
|
>
|
|
<System.Table data={slates} name="slate" />
|
|
</Section>
|
|
|
|
{this.props.viewer.library[0] ? (
|
|
<Section
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
title="Recent data"
|
|
buttons={dataButtons}
|
|
>
|
|
<System.Table
|
|
data={data}
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
name="data"
|
|
/>
|
|
</Section>
|
|
) : null}
|
|
|
|
{this.props.viewer.addresses[0] ? (
|
|
<Section
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
title="Wallet addresses"
|
|
buttons={walletButtons}
|
|
>
|
|
<System.Table
|
|
data={wallet}
|
|
onAction={this.props.onAction}
|
|
onNavigateTo={this.props.onNavigateTo}
|
|
name="transaction"
|
|
/>
|
|
</Section>
|
|
) : null}
|
|
</ScenePage>
|
|
);
|
|
}
|
|
}
|