slate/components/sidebars/SidebarAddFileToBucket.js

245 lines
7.5 KiB
JavaScript
Raw Normal View History

import * as React from "react";
import * as Constants from "~/common/constants";
import * as Strings from "~/common/strings";
import * as System from "~/components/system";
2020-10-02 07:24:10 +03:00
import * as Store from "~/common/store";
2020-09-10 06:28:48 +03:00
import * as SVG from "~/common/svg";
import * as Events from "~/common/custom-events";
2020-11-30 08:24:22 +03:00
import { css } from "@emotion/react";
import { DataMeterBar } from "~/components/core/DataMeter";
2020-09-25 09:31:56 +03:00
import { SidebarWarningMessage } from "~/components/core/WarningMessage";
2020-11-11 04:44:21 +03:00
import { FileTypeGroup } from "~/components/core/FileTypeIcon";
const STYLES_FILE_HIDDEN = css`
height: 1px;
width: 1px;
opacity: 0;
visibility: hidden;
position: fixed;
top: -1px;
left: -1px;
`;
2020-09-11 00:03:51 +03:00
const STYLES_FILE_LINE = css`
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
2020-09-16 22:16:38 +03:00
padding: 12px 16px;
background-color: ${Constants.system.white};
border-bottom: 1px solid ${Constants.system.foreground};
2020-09-11 00:03:51 +03:00
`;
const STYLES_FILE_NAME = css`
min-width: 10%;
width: 100%;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-size: 0.9rem;
2020-09-16 22:16:38 +03:00
font-family: ${Constants.font.medium};
2020-09-11 00:03:51 +03:00
`;
2020-10-02 07:24:10 +03:00
const STYLES_LEFT = css`
width: 100%;
min-width: 10%;
display: flex;
align-items: center;
`;
const STYLES_RIGHT = css`
flex-shrink: 0;
display: flex;
align-items: center;
`;
2020-09-11 00:03:51 +03:00
const STYLES_FILE_STATUS = css`
flex-shrink: 0;
2020-09-16 22:16:38 +03:00
margin-right: 16px;
2020-09-11 00:03:51 +03:00
display: flex;
align-items: center;
`;
2020-09-11 00:53:26 +03:00
const STYLES_BAR_CONTAINER = css`
background: ${Constants.system.white};
border-radius: 4px;
padding: 16px;
margin-top: 48px;
`;
const STYLES_PERFORMANCE = css`
font-family: ${Constants.font.code};
font-size: 12px;
display: block;
margin: 0 0 8px 0;
`;
export default class SidebarAddFileToBucket extends React.Component {
_handleUpload = (e) => {
this.props.onUpload({
files: e.target.files,
slate:
this.props.current && this.props.current.slateId
? { id: this.props.current.slateId }
: null,
2020-09-03 09:00:02 +03:00
});
this.props.onCancel();
};
2020-10-02 07:24:10 +03:00
_handleCancel = (e, key) => {
e.preventDefault();
e.stopPropagation();
Events.dispatchCustomEvent({ name: `cancel-${key}` }); //NOTE(martina): so that will cancel if is in the middle of uploading
2020-10-02 07:24:10 +03:00
Store.setCancelled(key); //NOTE(martina): so that will cancel if hasn't started uploading yet
this.props.onAction({ type: "REGISTER_FILE_CANCELLED", value: key }); //NOTE(martina): so that fileLoading registers it
};
render() {
2020-09-13 03:54:26 +03:00
let loaded = 0;
let total = 0;
2020-09-11 00:03:51 +03:00
if (this.props.fileLoading) {
2020-09-13 03:54:26 +03:00
for (let file of Object.values(this.props.fileLoading)) {
if (typeof file.loaded === "number" && typeof file.total === "number") {
total += file.total;
loaded += file.loaded;
2020-09-13 03:54:26 +03:00
}
}
2020-09-11 00:03:51 +03:00
}
return (
<React.Fragment>
2020-09-08 02:28:50 +03:00
<System.P
style={{
fontFamily: Constants.font.semiBold,
fontSize: Constants.typescale.lvl3,
2020-12-11 05:59:17 +03:00
marginBottom: 36,
2020-09-08 02:28:50 +03:00
}}
>
{this.props.fileLoading && Object.keys(this.props.fileLoading).length
? "Upload progress"
: "Upload data"}
2020-08-27 02:24:43 +03:00
</System.P>
2020-12-11 05:59:17 +03:00
2020-08-27 02:24:43 +03:00
<input
css={STYLES_FILE_HIDDEN}
multiple
type="file"
id="file"
onChange={this._handleUpload}
/>
2020-12-11 05:59:17 +03:00
{this.props.fileLoading && Object.keys(this.props.fileLoading).length ? null : (
<React.Fragment>
<FileTypeGroup style={{ margin: "64px 0px" }} />
<System.P>
Click below or drop a file anywhere on the page to upload a file
{this.props.current &&
(this.props.current.slatename ||
(this.props.current.data && this.props.current.data.name)) ? (
<span>
{" "}
to <strong>{Strings.getPresentationSlateName(this.props.current)}</strong>
</span>
) : (
""
)}
.
</System.P>
<SidebarWarningMessage />
<System.ButtonPrimary full type="label" htmlFor="file" style={{ marginTop: 24 }}>
Add file
</System.ButtonPrimary>
<br />
</React.Fragment>
)}
{this.props.fileLoading && Object.keys(this.props.fileLoading).length ? (
2020-09-11 00:53:26 +03:00
<div css={STYLES_BAR_CONTAINER}>
2020-09-11 00:03:51 +03:00
<strong css={STYLES_PERFORMANCE}>
{Strings.bytesToSize(loaded)} / {Strings.bytesToSize(total)}
</strong>
2020-09-16 22:16:38 +03:00
<DataMeterBar bytes={loaded} maximumBytes={total} />
2020-09-11 00:53:26 +03:00
</div>
2020-09-11 00:03:51 +03:00
) : null}
<div style={{ marginTop: 24, borderRadius: 4, overflow: "hidden" }}>
2020-09-11 00:53:26 +03:00
{this.props.fileLoading
2020-10-02 07:24:10 +03:00
? Object.entries(this.props.fileLoading).map((entry) => {
let file = entry[1];
return (
<div css={STYLES_FILE_LINE} key={file.name}>
<span css={STYLES_LEFT}>
<div css={STYLES_FILE_STATUS}>
{file.failed ? (
<SVG.Alert
height="24px"
style={{
color: Constants.system.red,
pointerEvents: "none",
}}
/>
) : file.cancelled ? (
<SVG.Dismiss
height="24px"
style={{
color: Constants.system.gray,
pointerEvents: "none",
}}
/>
) : file.loaded === file.total ? (
<SVG.CheckBox height="24px" />
) : (
<System.LoaderSpinner
style={{
width: "20px",
height: "20px",
margin: "2px",
}}
/>
)}
</div>
<div
css={STYLES_FILE_NAME}
style={
file.failed
? { color: Constants.system.red }
: file.cancelled
? { color: Constants.system.gray }
: null
}
>
{file.name}
</div>
</span>
{file.loaded === file.total || file.failed || file.cancelled ? (
<div css={STYLES_RIGHT} style={{ height: 24, width: 24 }} />
2020-09-11 00:53:26 +03:00
) : (
2020-10-02 07:24:10 +03:00
<span
css={STYLES_RIGHT}
style={{
cursor: "pointer",
}}
onClick={(e) => this._handleCancel(e, entry[0])}
>
<SVG.Dismiss
height="24px"
className="boundary-ignore"
style={{
color: Constants.system.gray,
pointerEvents: "none",
}}
/>
</span>
2020-09-11 00:53:26 +03:00
)}
2020-09-11 00:03:51 +03:00
</div>
2020-10-02 07:24:10 +03:00
);
})
2020-09-11 00:53:26 +03:00
: null}
</div>
</React.Fragment>
);
}
}