slate/components/core/CarouselSidebarSlate.js

529 lines
15 KiB
JavaScript
Raw Normal View History

import * as React from "react";
import * as SVG from "~/common/svg";
import * as Constants from "~/common/constants";
import * as Strings from "~/common/strings";
import * as Actions from "~/common/actions";
import { css } from "@emotion/react";
import { LoaderSpinner } from "~/components/system/components/Loaders";
import { ProcessedText } from "~/components/system/components/Typography";
import { SlatePicker } from "~/components/core/SlatePicker";
2020-10-22 08:24:43 +03:00
import { Input } from "~/components/system/components/Input";
import { Textarea } from "~/components/system/components/Textarea";
import TextareaAutoSize from "~/vendor/react-textarea-autosize";
2020-10-23 21:38:30 +03:00
const STYLES_NO_VISIBLE_SCROLL = css`
overflow-y: scroll;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
::-webkit-scrollbar {
width: 0px;
display: none;
}
::-webkit-scrollbar-track {
background: ${Constants.system.foreground};
}
::-webkit-scrollbar-thumb {
background: ${Constants.system.darkGray};
}
`;
// const STYLES_SIDEBAR_INPUT = css`
// ${STYLES_NO_VISIBLE_SCROLL}
// position: relative;
// padding: 12px;
// scrollbar-width: none;
// -webkit-overflow-scrolling: touch;
// -ms-overflow-style: -ms-autohiding-scrollbar;
// ::-webkit-scrollbar {
// width: 0px;
// display: none;
// }
// `;
// const STYLES_SIDEBAR_TEXTAREA = css`
// ${STYLES_NO_VISIBLE_SCROLL}
// resize: none;
// box-sizing: border-box;
// line-height: 1.255;
// font-size: 16px;
// outline: 0;
// border: 0;
// background: transparent;
// width: 100%;
// white-space: pre-wrap;
// color: ${Constants.system.white};
// font-family: ${Constants.font.text};
// scrollbar-width: none;
// -ms-overflow-style: -ms-autohiding-scrollbar;
// ::-webkit-scrollbar {
// display: none;
2020-10-23 21:38:30 +03:00
// }
// `;
const STYLES_SIDEBAR = css`
width: 420px;
2020-10-22 08:24:43 +03:00
padding: 80px 24px 64px 24px;
flex-shrink: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: flex-start;
position: relative;
${STYLES_NO_VISIBLE_SCROLL}
@supports (
(-webkit-backdrop-filter: blur(75px)) or (backdrop-filter: blur(75px))
) {
-webkit-backdrop-filter: blur(75px);
backdrop-filter: blur(75px);
background-color: rgba(150, 150, 150, 0.2);
}
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_SIDEBAR_SECTION = css`
flex-shrink: 0;
width: 100%;
margin-bottom: 16px;
`;
const STYLES_SIDEBAR_CONTENT = css`
width: 100%;
height: 100%;
overflow-y: scroll;
scrollbar-width: none;
-ms-overflow-style: -ms-autohiding-scrollbar;
margin-bottom: 16px;
border: 1px solid rgba(60, 60, 60, 1);
border-radius: 4px;
::-webkit-scrollbar {
display: none;
}
`;
const STYLES_HEADING = css`
font-family: ${Constants.font.semiBold};
font-size: 20px;
font-weight: 400;
overflow-wrap: break-word;
white-space: pre-wrap;
margin-bottom: 32px;
`;
const STYLES_BODY = css`
font-size: 16px;
line-height: 1.225;
overflow-wrap: break-word;
white-space: pre-wrap;
margin-bottom: 32px;
`;
const STYLES_SIDEBAR_INPUT_LABEL = css`
font-size: 16px;
font-family: ${Constants.font.semiBold};
color: ${Constants.system.darkGray};
margin-bottom: 8px;
`;
const STYLES_SECTION_HEADER = css`
font-family: ${Constants.font.semiBold};
font-size: 1.1rem;
2020-10-22 08:24:43 +03:00
margin-top: 24px;
display: flex;
align-items: center;
`;
const STYLES_ACTIONS = css`
color: ${Constants.system.white};
width: 100%;
border: 1px solid #3c3c3c;
border-radius: 4px;
background-color: transparent;
margin-bottom: 48px;
`;
const STYLES_ACTION = css`
cursor: pointer;
padding: 12px 16px;
border-bottom: 1px solid #3c3c3c;
display: flex;
align-items: center;
:hover {
color: ${Constants.system.brand};
}
:last-child {
border: none;
}
`;
const STYLES_HIDDEN = css`
position: absolute;
opacity: 0;
pointer-events: none;
`;
2020-10-22 08:24:43 +03:00
const STYLES_INPUT = {
marginBottom: 16,
backgroundColor: "transparent",
boxShadow: "0 0 0 1px #3c3c3c inset",
color: Constants.system.white,
height: 48,
};
const STYLES_DISMISS_BOX = css`
position: absolute;
top: 20px;
right: 24px;
color: ${Constants.system.darkGray};
cursor: pointer;
:hover {
color: ${Constants.system.white};
}
`;
export default class CarouselSidebarSlate extends React.Component {
_ref = null;
2020-08-21 10:11:42 +03:00
state = {
title: this.props.data.title ? this.props.data.title : "",
body: this.props.data.body ? this.props.data.body : "",
source: this.props.data.source ? this.props.data.source : "",
author: this.props.data.author ? this.props.data.author : "",
selected: {},
isPublic: false,
copyValue: "",
2020-10-22 08:24:43 +03:00
showConnected: false,
showFile: false,
};
componentDidMount = () => {
let isPublic = false;
let selected = {};
const id = this.props.data.id;
for (let slate of this.props.slates) {
if (slate.data.objects.some((o) => o.id === id)) {
if (slate.data.public) {
isPublic = true;
}
selected[slate.id] = true;
}
}
this.setState({ selected, isPublic });
};
_handleCreateSlate = async () => {
this.props.onClose();
this.props.onAction({
type: "SIDEBAR",
value: "SIDEBAR_CREATE_SLATE",
data: { files: [this.props.data] },
});
2020-08-21 10:11:42 +03:00
};
_handleChange = (e) => {
this.setState({ [e.target.name]: e.target.value });
};
_handleAdd = (slate) => {
if (this.state.selected[slate.id]) {
this.props.onRemoveFromSlate({
id: this.props.data.id,
slate: slate,
data: this.props.data,
});
this.setState({
selected: { ...this.state.selected, [slate.id]: false },
});
} else {
this.props.onAddToSlate({
id: this.props.data.id,
slate: slate,
data: this.props.data,
});
this.setState({
selected: { ...this.state.selected, [slate.id]: slate },
});
}
};
_handleCopy = (copyValue, loading) => {
this.setState({ copyValue, loading }, () => {
this._ref.select();
document.execCommand("copy");
});
setTimeout(() => {
this.setState({ loading: false });
2020-10-22 08:24:43 +03:00
}, 1000);
};
_handleDelete = async (cid) => {
this.setState({ loading: "deleting" });
if (
!window.confirm(
"Are you sure you want to delete this? It will be removed from your slates too."
)
) {
this.setState({ loading: false });
return;
}
2020-10-22 08:24:43 +03:00
const response = await Actions.deleteBucketItems({ cids: [cid] });
if (!response) {
dispatchCustomEvent({
name: "create-alert",
detail: {
alert: {
message: "We're having trouble connecting right now. Please try again later",
},
},
});
this.setState({ loading: false });
return;
}
if (response.error) {
dispatchCustomEvent({
name: "create-alert",
detail: { alert: { decorator: response.decorator } },
});
this.setState({ loading: false });
return;
}
await this.props.onRehydrate();
this.setState({ loading: false });
dispatchCustomEvent({
name: "remote-update-carousel",
detail: {},
});
2020-08-27 07:24:49 +03:00
};
2020-10-22 08:24:43 +03:00
_toggleAccordion = (tab) => {
this.setState({ [tab]: !this.state[tab] });
};
render() {
const elements = [];
const { cid, url } = this.props.data;
console.log(this.props);
if (this.props.data) {
2020-10-05 00:30:28 +03:00
if (this.props.isOwner) {
elements.push(
<React.Fragment key="sidebar-media-object-info">
2020-10-22 08:24:43 +03:00
<Input
full
value={this.state.title}
name="title"
onChange={this._handleChange}
id={`sidebar-label-title`}
style={{
fontSize: Constants.typescale.lvl1,
...STYLES_INPUT,
}}
/>
<Textarea
name="body"
placeholder="Add notes or a description..."
value={this.state.body}
onChange={this._handleChange}
style={STYLES_INPUT}
/>
<Input
full
value={this.state.source}
name="source"
placeholder="Source"
onChange={this._handleChange}
id={`sidebar-label-source`}
style={STYLES_INPUT}
/>
<Input
full
value={this.state.author}
name="author"
placeholder="Author"
onChange={this._handleChange}
id={`sidebar-label-author`}
style={{ ...STYLES_INPUT, marginBottom: 24 }}
/>
</React.Fragment>
);
} else {
const hasTitle = "Title.jpg"; //!Strings.isEmpty(this.props.data.title || this.props.data.name);
const hasBody =
"This is the body of a value. It's a pretty short description of the object"; //!Strings.isEmpty(this.props.data.body);
const hasSource = "https://abcdinamo.com/news/2020-launch-press-release"; //!Strings.isEmpty(this.props.data.source);
const hasAuthor = "ABC Dinamo"; //!Strings.isEmpty(this.props.data.author);
if (hasTitle) {
elements.push(
<div key="sidebar-media-info-title" css={STYLES_SIDEBAR_SECTION}>
<h1 css={STYLES_HEADING}>
{/* <ProcessedText dark text={this.props.data.title} /> */}
<ProcessedText dark text={hasTitle} />
</h1>
</div>
);
}
if (hasBody) {
elements.push(
<div key="sidebar-media-info-body" css={STYLES_SIDEBAR_SECTION}>
<p css={STYLES_BODY}>
{/* <ProcessedText dark text={this.props.data.body} /> */}
<ProcessedText dark text={hasBody} />
</p>
</div>
);
}
if (hasSource) {
elements.push(
<div key="sidebar-media-info-source" css={STYLES_SIDEBAR_SECTION}>
<div css={STYLES_SIDEBAR_INPUT_LABEL} style={{ position: "relative" }}>
Source:
</div>
<p css={STYLES_BODY} style={{ color: Constants.system.darkGray }}>
{/* <ProcessedText dark text={this.props.data.source} /> */}
<ProcessedText dark text={hasSource} />
</p>
</div>
);
}
if (hasAuthor) {
elements.push(
<div key="sidebar-media-info-author" css={STYLES_SIDEBAR_SECTION}>
<div css={STYLES_SIDEBAR_INPUT_LABEL} style={{ position: "relative" }}>
Author:
</div>
<p css={STYLES_BODY} style={{ color: Constants.system.darkGray }}>
{/* <ProcessedText dark text={this.props.data.author} /> */}
<ProcessedText dark text={hasAuthor} />
</p>
</div>
);
}
}
}
if (!elements.length) {
return null;
}
return (
<div css={STYLES_SIDEBAR} style={{ display: this.props.display }}>
<div css={STYLES_DISMISS_BOX} onClick={this.props.onClose}>
2020-10-22 08:24:43 +03:00
<SVG.Dismiss height="24px" />
</div>
{elements}
2020-10-22 08:24:43 +03:00
<div
css={STYLES_SECTION_HEADER}
style={{ cursor: "pointer", marginTop: 44 }}
2020-10-22 08:24:43 +03:00
onClick={() => this._toggleAccordion("showConnected")}
>
<span
style={{
marginRight: 8,
transform: this.state.showConnected ? "none" : "rotate(-90deg)",
transition: "100ms ease transform",
}}
>
<SVG.ChevronDown height="24px" display="block" />
</span>
<span>{this.props.isOwner ? "Connected slates" : "My slates"}</span>
</div>
2020-10-22 08:24:43 +03:00
{this.state.showConnected ? (
<div style={{ width: "100%", margin: "24px 0 44px 0" }}>
2020-10-22 08:24:43 +03:00
<SlatePicker
slates={this.props.slates}
selected={this.state.selected}
onAdd={this._handleAdd}
onCreateSlate={this._handleCreateSlate}
loading={this.props.loading}
dark
2020-10-22 08:24:43 +03:00
selectedColor={Constants.system.white}
/>
</div>
) : null}
<div
css={STYLES_SECTION_HEADER}
style={{ cursor: "pointer" }}
onClick={() => this._toggleAccordion("showFile")}
>
<span
style={{
marginRight: 8,
transform: this.state.showFile ? "none" : "rotate(-90deg)",
transition: "100ms ease transform",
}}
>
2020-10-22 08:24:43 +03:00
<SVG.ChevronDown height="24px" display="block" />
</span>
<span>File</span>
</div>
{this.state.showFile ? (
<div css={STYLES_ACTIONS} style={{ marginTop: 24 }}>
{this.props.isOwner ? (
<div css={STYLES_ACTION} onClick={() => this._handleCopy(cid, "cidCopying")}>
<SVG.CopyAndPaste height="24px" />
<span style={{ marginLeft: 16 }}>
{this.state.loading === "cidCopying" ? "Copied!" : "Copy file CID"}
</span>
</div>
) : null}
2020-10-22 08:24:43 +03:00
<div css={STYLES_ACTION} onClick={() => this._handleCopy(url, "urlCopying")}>
<SVG.DeepLink height="24px" />
<span style={{ marginLeft: 16 }}>
{this.state.loading === "urlCopying" ? "Copied!" : "Copy link"}
</span>
</div>
<div
css={STYLES_ACTION}
// onClick={() => this.props.onObjectSave({ ...this.props.data, ...this.state })}
>
<SVG.Download height="24px" />
<span style={{ marginLeft: 16 }}>
{this.props.saving ? (
<LoaderSpinner style={{ height: 16, width: 16 }} />
) : (
<span>Download</span>
)}
</span>
</div>
{this.props.isOwner ? (
<div css={STYLES_ACTION} onClick={() => this._handleDelete(cid)}>
<SVG.Trash height="24px" />
{this.state.loading === "deleting" ? (
<LoaderSpinner style={{ height: 20, width: 20, marginLeft: 16 }} />
) : (
<span style={{ marginLeft: 16 }}>Delete</span>
)}
</div>
) : null}
</div>
2020-10-22 08:24:43 +03:00
) : null}
<input
css={STYLES_HIDDEN}
ref={(c) => {
this._ref = c;
}}
readOnly
value={this.state.copyValue}
/>
</div>
);
}
}