2020-09-11 06:57:17 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Strings from "~/common/strings";
|
|
|
|
import * as Constants from "~/common/constants";
|
2020-09-25 09:31:56 +03:00
|
|
|
import * as SVG from "~/common/svg";
|
2020-09-11 06:57:17 +03:00
|
|
|
|
|
|
|
import { error } from "~/common/messages";
|
2020-11-04 20:55:48 +03:00
|
|
|
import { css } from "@emotion/core";
|
2020-09-25 06:16:10 +03:00
|
|
|
import { LoaderSpinner } from "~/components/system/components/Loaders";
|
2020-09-11 06:57:17 +03:00
|
|
|
|
2020-09-25 06:16:10 +03:00
|
|
|
const STYLES_ALERT = `
|
2020-09-11 06:57:17 +03:00
|
|
|
box-sizing: border-box;
|
2020-09-13 01:08:36 +03:00
|
|
|
z-index: ${Constants.zindex.alert};
|
2020-09-11 06:57:17 +03:00
|
|
|
position: fixed;
|
|
|
|
top: 56px;
|
2020-10-10 04:32:26 +03:00
|
|
|
width: 100%;
|
2020-09-11 06:57:17 +03:00
|
|
|
color: ${Constants.system.white};
|
2020-09-25 06:16:10 +03:00
|
|
|
min-height: 48px;
|
2020-09-11 06:57:17 +03:00
|
|
|
padding: 12px 48px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
2020-10-01 03:41:53 +03:00
|
|
|
transition: top 0.25s;
|
2020-09-25 09:31:56 +03:00
|
|
|
|
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
2020-09-29 07:39:05 +03:00
|
|
|
width: 100%;
|
2020-10-10 04:32:26 +03:00
|
|
|
padding: 12px 24px 12px 24px;
|
2020-09-29 07:39:05 +03:00
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
2020-10-01 03:41:53 +03:00
|
|
|
width: 100%;
|
2020-09-25 09:31:56 +03:00
|
|
|
}
|
2020-09-11 06:57:17 +03:00
|
|
|
`;
|
|
|
|
|
2020-09-25 06:16:10 +03:00
|
|
|
const STYLES_WARNING = css`
|
|
|
|
${STYLES_ALERT}
|
|
|
|
background-color: ${Constants.system.red};
|
|
|
|
|
2020-10-18 22:57:39 +03:00
|
|
|
@supports ((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) {
|
2020-09-25 06:16:10 +03:00
|
|
|
-webkit-backdrop-filter: blur(25px);
|
|
|
|
backdrop-filter: blur(25px);
|
|
|
|
background-color: rgba(255, 212, 201, 0.75);
|
|
|
|
color: ${Constants.system.red};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_INFO = css`
|
|
|
|
${STYLES_ALERT}
|
2020-09-25 09:31:56 +03:00
|
|
|
background-color: ${Constants.system.brand};
|
|
|
|
|
2020-10-18 22:57:39 +03:00
|
|
|
@supports ((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) {
|
2020-09-25 06:16:10 +03:00
|
|
|
-webkit-backdrop-filter: blur(25px);
|
|
|
|
backdrop-filter: blur(25px);
|
|
|
|
background-color: rgba(212, 233, 250, 0.75);
|
|
|
|
color: ${Constants.system.brand};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-09-25 09:31:56 +03:00
|
|
|
const STYLES_MESSAGE = css`
|
|
|
|
${STYLES_ALERT}
|
|
|
|
background-color: ${Constants.system.foreground};
|
2020-09-27 07:43:25 +03:00
|
|
|
color: ${Constants.system.grayBlack};
|
2020-09-25 09:31:56 +03:00
|
|
|
|
2020-10-18 22:57:39 +03:00
|
|
|
@supports ((-webkit-backdrop-filter: blur(25px)) or (backdrop-filter: blur(25px))) {
|
2020-09-25 09:31:56 +03:00
|
|
|
-webkit-backdrop-filter: blur(25px);
|
|
|
|
backdrop-filter: blur(25px);
|
|
|
|
background-color: rgba(244, 244, 244, 0.75);
|
2020-09-27 07:43:25 +03:00
|
|
|
color: ${Constants.system.grayBlack};
|
2020-09-25 09:31:56 +03:00
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-09-27 00:15:37 +03:00
|
|
|
const STYLES_TEXT = css`
|
2020-10-10 04:32:26 +03:00
|
|
|
max-width: ${Constants.sizes.mobile}px;
|
|
|
|
width: 100%;
|
2020-09-27 00:15:37 +03:00
|
|
|
`;
|
|
|
|
|
2020-09-25 06:16:10 +03:00
|
|
|
const STYLES_MESSAGE_BOX = css`
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
`;
|
|
|
|
|
2020-09-11 06:57:17 +03:00
|
|
|
export class Alert extends React.Component {
|
|
|
|
state = {
|
2020-09-13 01:08:36 +03:00
|
|
|
message: null,
|
|
|
|
status: null,
|
2020-09-11 06:57:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount = () => {
|
|
|
|
window.addEventListener("create-alert", this._handleCreate);
|
2020-09-12 01:25:33 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
componentWillUnmount = () => {
|
|
|
|
window.removeEventListener("create-alert", this._handleCreate);
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleCreate = (e) => {
|
2020-09-13 01:08:36 +03:00
|
|
|
if (e.detail.alert) {
|
|
|
|
if (e.detail.alert.decorator && error[e.detail.alert.decorator]) {
|
|
|
|
this.setState({
|
|
|
|
message: error[e.detail.alert.decorator],
|
|
|
|
status: e.detail.alert.status || null,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.setState({
|
2020-10-18 22:57:39 +03:00
|
|
|
message: e.detail.alert.message || "Whoops something went wrong! Please try again.",
|
2020-09-13 01:08:36 +03:00
|
|
|
status: e.detail.alert.status || null,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
window.setTimeout(this._handleDelete, 5000);
|
2020-09-12 01:25:33 +03:00
|
|
|
}
|
2020-09-11 06:57:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleDelete = (e) => {
|
2020-09-13 01:08:36 +03:00
|
|
|
if (this.state.message) {
|
|
|
|
this.setState({ message: null, status: null });
|
2020-09-11 06:57:17 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2020-09-13 01:08:36 +03:00
|
|
|
if (!this.state.message) {
|
2020-10-18 22:57:39 +03:00
|
|
|
if (!this.props.fileLoading || !Object.keys(this.props.fileLoading).length) {
|
2020-09-25 09:31:56 +03:00
|
|
|
if (this.props.noWarning) {
|
|
|
|
return null;
|
|
|
|
}
|
2020-09-25 10:08:08 +03:00
|
|
|
|
2020-09-25 09:31:56 +03:00
|
|
|
return (
|
2020-10-01 03:41:53 +03:00
|
|
|
<div css={STYLES_MESSAGE} style={this.props.style}>
|
2020-09-25 10:08:08 +03:00
|
|
|
<div css={STYLES_MESSAGE_BOX} style={{ fontSize: 14 }}>
|
2020-10-18 22:57:39 +03:00
|
|
|
Please don't upload sensitive information to Slate yet. Private storage is coming
|
|
|
|
soon.
|
2020-09-25 09:31:56 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2020-09-25 06:16:10 +03:00
|
|
|
}
|
2020-10-02 07:24:10 +03:00
|
|
|
let total = Object.values(this.props.fileLoading).filter((upload) => {
|
|
|
|
return !upload.cancelled;
|
|
|
|
}).length;
|
2020-09-27 00:15:37 +03:00
|
|
|
let uploaded =
|
|
|
|
Object.values(this.props.fileLoading).filter((upload) => {
|
|
|
|
return upload.loaded === upload.total;
|
|
|
|
}).length || 0;
|
2020-09-25 06:16:10 +03:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
css={STYLES_INFO}
|
2020-10-01 03:41:53 +03:00
|
|
|
style={{ cursor: "pointer", ...this.props.style }}
|
2020-09-25 06:16:10 +03:00
|
|
|
onClick={() =>
|
|
|
|
this.props.onAction({
|
|
|
|
type: "SIDEBAR",
|
|
|
|
value: "SIDEBAR_ADD_FILE_TO_BUCKET",
|
|
|
|
})
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<div css={STYLES_MESSAGE_BOX}>
|
2020-10-23 21:38:30 +03:00
|
|
|
<div style={{ height: 16, width: 16, marginRight: 16 }}>
|
|
|
|
<LoaderSpinner style={{ height: 16, width: 16 }} />
|
|
|
|
</div>
|
2020-09-27 00:15:37 +03:00
|
|
|
<span css={STYLES_TEXT}>
|
|
|
|
{uploaded} / {total} file
|
|
|
|
{total === 1 ? "" : "s"} uploading{" "}
|
|
|
|
</span>
|
2020-09-25 06:16:10 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2020-09-11 06:57:17 +03:00
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div
|
2020-09-25 06:16:10 +03:00
|
|
|
css={this.state.status === "INFO" ? STYLES_INFO : STYLES_WARNING}
|
|
|
|
style={this.props.style}
|
2020-09-11 06:57:17 +03:00
|
|
|
>
|
2020-09-13 01:08:36 +03:00
|
|
|
{this.state.message}
|
2020-09-11 06:57:17 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|