2020-06-19 06:57:57 +03:00
|
|
|
import * as React from "react";
|
2020-09-08 00:45:58 +03:00
|
|
|
import * as SVG from "~/common/svg";
|
2020-04-09 00:29:13 +03:00
|
|
|
|
2020-11-04 20:55:48 +03:00
|
|
|
import { css } from "@emotion/core";
|
2020-09-19 22:36:58 +03:00
|
|
|
import { ButtonPrimary } from "~/components/system/components/Buttons";
|
2020-11-11 04:44:21 +03:00
|
|
|
import { FileTypeGroup } from "~/components/core/FileTypeIcon";
|
2020-04-09 00:29:13 +03:00
|
|
|
|
2020-06-19 06:57:57 +03:00
|
|
|
import ScenePage from "~/components/core/ScenePage";
|
2020-08-12 11:22:28 +03:00
|
|
|
import DataView from "~/components/core/DataView";
|
2020-11-04 07:02:19 +03:00
|
|
|
import DataMeter from "~/components/core/DataMeterDetailed";
|
2020-08-22 07:25:34 +03:00
|
|
|
import ScenePageHeader from "~/components/core/ScenePageHeader";
|
2020-09-14 08:22:19 +03:00
|
|
|
import EmptyState from "~/components/core/EmptyState";
|
2020-09-08 00:45:58 +03:00
|
|
|
|
2020-07-24 19:35:00 +03:00
|
|
|
const POLLING_INTERVAL = 10000;
|
|
|
|
|
2020-04-09 00:29:13 +03:00
|
|
|
export default class SceneFilesFolder extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<ScenePage>
|
2020-09-08 00:45:58 +03:00
|
|
|
<ScenePageHeader
|
|
|
|
title="Data"
|
|
|
|
actions={
|
|
|
|
<ButtonPrimary
|
|
|
|
onClick={() => {
|
|
|
|
this.props.onAction({
|
|
|
|
type: "SIDEBAR",
|
|
|
|
value: "SIDEBAR_ADD_FILE_TO_BUCKET",
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
2020-09-13 03:00:58 +03:00
|
|
|
Upload data
|
2020-09-08 00:45:58 +03:00
|
|
|
</ButtonPrimary>
|
|
|
|
}
|
2020-08-12 11:22:28 +03:00
|
|
|
/>
|
2020-09-25 08:32:56 +03:00
|
|
|
|
2020-10-22 08:06:06 +03:00
|
|
|
<DataMeter stats={this.props.viewer.stats} style={{ marginTop: 40 }} />
|
|
|
|
{this.props.viewer.library[0].children && this.props.viewer.library[0].children.length ? (
|
2020-09-19 22:36:58 +03:00
|
|
|
<DataView
|
2020-09-23 23:52:00 +03:00
|
|
|
onAction={this.props.onAction}
|
2020-09-19 22:36:58 +03:00
|
|
|
viewer={this.props.viewer}
|
|
|
|
items={this.props.viewer.library[0].children}
|
|
|
|
/>
|
2020-09-14 08:22:19 +03:00
|
|
|
) : (
|
|
|
|
<EmptyState>
|
2020-11-11 04:44:21 +03:00
|
|
|
<FileTypeGroup />
|
2020-10-22 08:06:06 +03:00
|
|
|
<div style={{ marginTop: 24 }}>Drag and drop files into Slate to upload</div>
|
2020-09-14 08:22:19 +03:00
|
|
|
</EmptyState>
|
|
|
|
)}
|
2020-04-09 00:29:13 +03:00
|
|
|
</ScenePage>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|