2020-08-21 10:07:39 +03:00
|
|
|
import * as React from "react";
|
2020-10-14 02:29:14 +03:00
|
|
|
import * as SVG from "~/common/svg";
|
2020-08-21 10:07:39 +03:00
|
|
|
import * as Constants from "~/common/constants";
|
2020-08-21 10:42:29 +03:00
|
|
|
import * as Strings from "~/common/strings";
|
2020-08-27 09:03:30 +03:00
|
|
|
import * as Actions from "~/common/actions";
|
2020-11-22 00:25:40 +03:00
|
|
|
import * as UserBehaviors from "~/common/user-behaviors";
|
2020-10-25 22:20:33 +03:00
|
|
|
import * as Window from "~/common/window";
|
2020-11-28 07:39:01 +03:00
|
|
|
import * as Events from "~/common/custom-events";
|
2020-08-21 10:07:39 +03:00
|
|
|
|
2020-11-30 08:24:22 +03:00
|
|
|
import { css } from "@emotion/react";
|
2020-08-21 10:07:39 +03:00
|
|
|
import { LoaderSpinner } from "~/components/system/components/Loaders";
|
2020-10-14 02:29:14 +03:00
|
|
|
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";
|
2020-08-21 10:07:39 +03:00
|
|
|
|
2020-11-26 02:19:02 +03:00
|
|
|
import ProcessedText from "~/components/core/ProcessedText";
|
|
|
|
|
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;
|
|
|
|
}
|
2020-11-08 05:32:17 +03:00
|
|
|
|
2020-10-23 21:38:30 +03:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: ${Constants.system.foreground};
|
|
|
|
}
|
2020-11-08 05:32:17 +03:00
|
|
|
|
2020-10-23 21:38:30 +03:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: ${Constants.system.darkGray};
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-08-21 10:07:39 +03:00
|
|
|
const STYLES_SIDEBAR = css`
|
2020-08-21 10:42:29 +03:00
|
|
|
width: 420px;
|
2020-10-22 08:24:43 +03:00
|
|
|
padding: 80px 24px 64px 24px;
|
2020-08-21 10:07:39 +03:00
|
|
|
flex-shrink: 0;
|
2020-10-14 02:29:14 +03:00
|
|
|
height: 100vh;
|
2020-08-21 10:07:39 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2020-10-14 02:29:14 +03:00
|
|
|
position: relative;
|
2020-10-24 22:55:19 +03:00
|
|
|
background-color: rgba(20, 20, 20, 0.8);
|
2020-10-14 02:29:14 +03:00
|
|
|
${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);
|
|
|
|
}
|
2020-08-21 10:07:39 +03:00
|
|
|
|
|
|
|
@media (max-width: ${Constants.sizes.mobile}px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_SIDEBAR_SECTION = css`
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 100%;
|
2020-10-14 02:29:14 +03:00
|
|
|
margin-bottom: 16px;
|
2020-08-21 10:07:39 +03:00
|
|
|
`;
|
|
|
|
|
2020-08-21 10:42:29 +03:00
|
|
|
const STYLES_HEADING = css`
|
2020-10-24 00:28:53 +03:00
|
|
|
font-family: ${Constants.font.semiBold};
|
|
|
|
font-size: 20px;
|
2020-08-21 10:42:29 +03:00
|
|
|
font-weight: 400;
|
2020-08-21 10:57:52 +03:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
white-space: pre-wrap;
|
2020-10-24 00:28:53 +03:00
|
|
|
margin-bottom: 32px;
|
2020-08-21 10:42:29 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_BODY = css`
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.225;
|
2020-08-21 10:57:52 +03:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
white-space: pre-wrap;
|
2020-10-24 00:28:53 +03:00
|
|
|
margin-bottom: 32px;
|
|
|
|
`;
|
|
|
|
|
2020-12-10 02:36:52 +03:00
|
|
|
const STYLES_AUTOSAVE = css`
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 1.225;
|
|
|
|
display: flex;
|
|
|
|
justify-content: baseline;
|
|
|
|
color: ${Constants.system.yellow};
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
|
2020-12-20 23:50:29 +03:00
|
|
|
@keyframes slate-animations-autosave {
|
2020-12-10 02:36:52 +03:00
|
|
|
0% {
|
|
|
|
opacity: 0;
|
2020-12-20 23:50:29 +03:00
|
|
|
transform: translateX(12px);
|
2020-12-10 02:36:52 +03:00
|
|
|
}
|
|
|
|
10% {
|
|
|
|
opacity: 1;
|
2020-12-20 23:50:29 +03:00
|
|
|
transform: translateX(0px);
|
2020-12-10 02:36:52 +03:00
|
|
|
}
|
|
|
|
90% {
|
|
|
|
opacity: 1;
|
2020-12-20 23:50:29 +03:00
|
|
|
transform: translateX(0px);
|
2020-12-10 02:36:52 +03:00
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-12-20 23:50:29 +03:00
|
|
|
animation: slate-animations-autosave 4000ms ease;
|
2020-12-10 02:36:52 +03:00
|
|
|
`;
|
|
|
|
|
2020-10-24 00:28:53 +03:00
|
|
|
const STYLES_SIDEBAR_INPUT_LABEL = css`
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: ${Constants.font.semiBold};
|
|
|
|
color: ${Constants.system.darkGray};
|
|
|
|
margin-bottom: 8px;
|
2020-08-21 10:42:29 +03:00
|
|
|
`;
|
|
|
|
|
2020-10-14 02:29:14 +03:00
|
|
|
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;
|
2020-10-14 02:29:14 +03:00
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_ACTIONS = css`
|
|
|
|
color: ${Constants.system.white};
|
|
|
|
width: 100%;
|
2020-10-24 00:28:53 +03:00
|
|
|
border: 1px solid #3c3c3c;
|
2020-10-14 02:29:14 +03:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: transparent;
|
|
|
|
margin-bottom: 48px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_ACTION = css`
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 12px 16px;
|
2020-10-24 00:28:53 +03:00
|
|
|
border-bottom: 1px solid #3c3c3c;
|
2020-10-14 02:29:14 +03:00
|
|
|
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,
|
|
|
|
};
|
|
|
|
|
2020-10-24 00:28:53 +03:00
|
|
|
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 {
|
2020-10-14 02:29:14 +03:00
|
|
|
_ref = null;
|
|
|
|
|
2020-08-21 10:11:42 +03:00
|
|
|
state = {
|
2020-12-20 23:50:29 +03:00
|
|
|
title: Strings.isEmpty(this.props.data.title) ? "" : this.props.data.title,
|
|
|
|
body: Strings.isEmpty(this.props.data.body) ? "" : this.props.data.body,
|
|
|
|
source: Strings.isEmpty(this.props.data.source) ? "" : this.props.data.source,
|
|
|
|
author: Strings.isEmpty(this.props.data.author) ? "" : this.props.data.author,
|
2020-10-14 02:29:14 +03:00
|
|
|
selected: {},
|
|
|
|
isPublic: false,
|
|
|
|
copyValue: "",
|
2020-10-22 08:24:43 +03:00
|
|
|
showConnected: false,
|
2020-11-13 01:36:20 +03:00
|
|
|
showFile: true,
|
2020-10-24 09:36:52 +03:00
|
|
|
unsavedChanges: false,
|
2020-12-03 08:28:29 +03:00
|
|
|
loading: false,
|
2020-12-20 23:50:29 +03:00
|
|
|
subject: "",
|
2020-10-14 02:29:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
componentDidMount = () => {
|
2020-12-10 02:36:52 +03:00
|
|
|
this.setState({ unsavedChanges: true });
|
2020-10-25 01:04:14 +03:00
|
|
|
if (this.props.isOwner && !this.props.external) {
|
2020-12-20 23:50:29 +03:00
|
|
|
this.debounceInstance = Window.debounce(() => this._handleSave(), 3000);
|
2020-10-24 09:36:52 +03:00
|
|
|
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;
|
2020-10-14 02:29:14 +03:00
|
|
|
}
|
|
|
|
}
|
2020-10-24 09:36:52 +03:00
|
|
|
this.setState({ selected, isPublic });
|
2020-10-14 02:29:14 +03:00
|
|
|
}
|
2020-10-24 09:36:52 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleClose = () => {
|
|
|
|
if (this.state.unsavedChanges) {
|
|
|
|
this._handleSave();
|
|
|
|
}
|
|
|
|
this.props.onClose();
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleSave = () => {
|
|
|
|
let data = {
|
|
|
|
title: this.state.title,
|
|
|
|
body: this.state.body,
|
|
|
|
source: this.state.source,
|
|
|
|
author: this.state.author,
|
|
|
|
};
|
2020-11-13 01:36:20 +03:00
|
|
|
this.props.onSave(data, this.props.index);
|
2020-10-24 09:36:52 +03:00
|
|
|
this.setState({ unsavedChanges: false });
|
2020-10-14 02:29:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
_handleCreateSlate = async () => {
|
2020-10-24 09:36:52 +03:00
|
|
|
if (this.props.external) return;
|
2020-10-14 02:29:14 +03:00
|
|
|
this.props.onClose();
|
|
|
|
this.props.onAction({
|
|
|
|
type: "SIDEBAR",
|
|
|
|
value: "SIDEBAR_CREATE_SLATE",
|
2020-10-24 09:36:52 +03:00
|
|
|
data: { files: [this.props.data], fromSlate: true },
|
2020-10-14 02:29:14 +03:00
|
|
|
});
|
2020-08-21 10:11:42 +03:00
|
|
|
};
|
2020-08-21 10:07:39 +03:00
|
|
|
|
|
|
|
_handleChange = (e) => {
|
2020-10-24 09:36:52 +03:00
|
|
|
this.debounceInstance();
|
2020-12-20 23:50:29 +03:00
|
|
|
this.setState({
|
|
|
|
[e.target.name]: e.target.value,
|
|
|
|
unsavedChanges: true,
|
|
|
|
subject: e.target.name == "body" ? "Description" : this._handleCapitalization(e.target.name),
|
|
|
|
});
|
2020-08-21 10:07:39 +03:00
|
|
|
};
|
|
|
|
|
2020-12-20 23:50:29 +03:00
|
|
|
_handleCapitalization(str) {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1);
|
|
|
|
}
|
|
|
|
|
2020-10-25 22:20:33 +03:00
|
|
|
_handleDownload = () => {
|
2020-11-22 00:25:40 +03:00
|
|
|
UserBehaviors.download(this.props.data);
|
2020-10-25 22:20:33 +03:00
|
|
|
};
|
|
|
|
|
2020-10-14 02:29:14 +03:00
|
|
|
_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);
|
2020-10-14 02:29:14 +03:00
|
|
|
};
|
|
|
|
|
2020-10-25 01:04:14 +03:00
|
|
|
_handleSaveCopy = async (data) => {
|
2020-12-22 04:20:24 +03:00
|
|
|
this.setState({ loading: "savingCopy" });
|
2020-11-22 00:25:40 +03:00
|
|
|
await UserBehaviors.addToDataFromSlate({ files: [data] });
|
2020-10-25 01:04:14 +03:00
|
|
|
this.setState({ loading: false });
|
|
|
|
};
|
|
|
|
|
2020-12-15 04:43:16 +03:00
|
|
|
_handleDelete = (cid) => {
|
2020-10-24 09:36:52 +03:00
|
|
|
if (this.props.external || !this.props.isOwner) return;
|
2020-12-15 04:43:16 +03:00
|
|
|
|
2020-10-14 02:29:14 +03:00
|
|
|
if (
|
|
|
|
!window.confirm(
|
2020-11-22 00:25:40 +03:00
|
|
|
"Are you sure you want to delete this? It will be removed from all your slates too."
|
2020-10-14 02:29:14 +03:00
|
|
|
)
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
2020-11-25 12:17:37 +03:00
|
|
|
|
2020-12-15 04:43:16 +03:00
|
|
|
let slates = this.props.viewer.slates;
|
|
|
|
let slateId = this.props.current.id;
|
|
|
|
for (let slate of slates) {
|
|
|
|
if (slate.id === slateId) {
|
|
|
|
slate.data.objects = slate.data.objects.filter((obj) => obj.cid !== cid);
|
|
|
|
this.props.onUpdateViewer({ slates });
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 12:17:37 +03:00
|
|
|
// NOTE(jim): Accepts ID as well if CID can't be found.
|
|
|
|
// Since our IDS are unique.
|
2020-12-15 04:43:16 +03:00
|
|
|
UserBehaviors.deleteFiles(cid, this.props.data.id);
|
2020-08-27 07:24:49 +03:00
|
|
|
};
|
|
|
|
|
2020-10-22 08:24:43 +03:00
|
|
|
_toggleAccordion = (tab) => {
|
|
|
|
this.setState({ [tab]: !this.state[tab] });
|
|
|
|
};
|
|
|
|
|
2020-11-24 09:31:52 +03:00
|
|
|
_handleAdd = async (slate) => {
|
2020-12-15 04:43:16 +03:00
|
|
|
this.setState({
|
|
|
|
selected: { ...this.state.selected, [slate.id]: !this.state.selected[slate.id] },
|
|
|
|
});
|
2020-11-24 09:31:52 +03:00
|
|
|
if (this.state.selected[slate.id]) {
|
|
|
|
await UserBehaviors.removeFromSlate({ slate, ids: [this.props.data.id] });
|
|
|
|
} else {
|
|
|
|
await UserBehaviors.addToSlate({
|
|
|
|
slate,
|
|
|
|
files: [this.props.data],
|
|
|
|
fromSlate: this.props.fromSlate,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-08-21 10:07:39 +03:00
|
|
|
render() {
|
2020-12-18 02:30:46 +03:00
|
|
|
let isUnityGame = false;
|
|
|
|
if (this.props.data.type === "application/unity") {
|
|
|
|
isUnityGame = true;
|
|
|
|
}
|
2020-08-21 10:07:39 +03:00
|
|
|
const elements = [];
|
2020-10-14 02:29:14 +03:00
|
|
|
const { cid, url } = this.props.data;
|
2020-08-21 10:42:29 +03:00
|
|
|
if (this.props.data) {
|
2020-12-18 02:30:46 +03:00
|
|
|
if (this.props.isOwner && !isUnityGame) {
|
2020-08-21 10:42:29 +03:00
|
|
|
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`}
|
2020-12-10 02:36:52 +03:00
|
|
|
style={{ ...STYLES_INPUT, marginBottom: 12 }}
|
2020-10-22 08:24:43 +03:00
|
|
|
/>
|
2020-12-10 02:36:52 +03:00
|
|
|
{this.state.unsavedChanges == false && (
|
|
|
|
<div css={STYLES_AUTOSAVE}>
|
|
|
|
<SVG.Check height="14px" style={{ marginRight: 4 }} />
|
2020-12-20 23:50:29 +03:00
|
|
|
{this.state.subject} saved
|
2020-12-10 02:36:52 +03:00
|
|
|
</div>
|
|
|
|
)}
|
2020-08-21 10:42:29 +03:00
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
} else {
|
2020-10-24 09:36:52 +03:00
|
|
|
const hasTitle = !Strings.isEmpty(this.props.data.title || this.props.data.name);
|
|
|
|
const hasBody = !Strings.isEmpty(this.props.data.body);
|
|
|
|
const hasSource = !Strings.isEmpty(this.props.data.source);
|
|
|
|
const hasAuthor = !Strings.isEmpty(this.props.data.author);
|
2020-08-21 11:03:15 +03:00
|
|
|
|
2020-08-21 10:42:29 +03:00
|
|
|
if (hasTitle) {
|
|
|
|
elements.push(
|
|
|
|
<div key="sidebar-media-info-title" css={STYLES_SIDEBAR_SECTION}>
|
2020-08-27 09:03:30 +03:00
|
|
|
<h1 css={STYLES_HEADING}>
|
2020-10-24 09:36:52 +03:00
|
|
|
<ProcessedText dark text={this.props.data.title || this.props.data.name} />
|
2020-08-27 09:03:30 +03:00
|
|
|
</h1>
|
2020-08-21 10:42:29 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-10-24 00:28:53 +03:00
|
|
|
if (hasBody) {
|
2020-08-21 10:42:29 +03:00
|
|
|
elements.push(
|
2020-10-24 00:28:53 +03:00
|
|
|
<div key="sidebar-media-info-body" css={STYLES_SIDEBAR_SECTION}>
|
2020-08-27 09:03:30 +03:00
|
|
|
<p css={STYLES_BODY}>
|
2020-10-24 09:36:52 +03:00
|
|
|
<ProcessedText dark text={this.props.data.body} />
|
2020-08-27 09:03:30 +03:00
|
|
|
</p>
|
2020-08-21 10:42:29 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasSource) {
|
|
|
|
elements.push(
|
|
|
|
<div key="sidebar-media-info-source" css={STYLES_SIDEBAR_SECTION}>
|
2020-10-14 02:29:14 +03:00
|
|
|
<div css={STYLES_SIDEBAR_INPUT_LABEL} style={{ position: "relative" }}>
|
2020-10-24 00:28:53 +03:00
|
|
|
Source:
|
2020-08-21 10:42:29 +03:00
|
|
|
</div>
|
2020-10-24 00:28:53 +03:00
|
|
|
<p css={STYLES_BODY} style={{ color: Constants.system.darkGray }}>
|
2020-10-24 09:36:52 +03:00
|
|
|
<ProcessedText dark text={this.props.data.source} />
|
2020-08-27 09:03:30 +03:00
|
|
|
</p>
|
2020-08-21 10:42:29 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasAuthor) {
|
|
|
|
elements.push(
|
|
|
|
<div key="sidebar-media-info-author" css={STYLES_SIDEBAR_SECTION}>
|
2020-10-14 02:29:14 +03:00
|
|
|
<div css={STYLES_SIDEBAR_INPUT_LABEL} style={{ position: "relative" }}>
|
2020-10-24 00:28:53 +03:00
|
|
|
Author:
|
2020-08-21 10:42:29 +03:00
|
|
|
</div>
|
2020-10-24 00:28:53 +03:00
|
|
|
<p css={STYLES_BODY} style={{ color: Constants.system.darkGray }}>
|
2020-10-24 09:36:52 +03:00
|
|
|
<ProcessedText dark text={this.props.data.author} />
|
2020-08-27 09:03:30 +03:00
|
|
|
</p>
|
2020-08-21 10:42:29 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-08-21 10:07:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!elements.length) {
|
|
|
|
return null;
|
|
|
|
}
|
2020-10-14 02:29:14 +03:00
|
|
|
return (
|
2020-10-24 00:28:53 +03:00
|
|
|
<div css={STYLES_SIDEBAR} style={{ display: this.props.display }}>
|
2020-10-24 09:36:52 +03:00
|
|
|
<div css={STYLES_DISMISS_BOX} onClick={this._handleClose}>
|
2020-10-22 08:24:43 +03:00
|
|
|
<SVG.Dismiss height="24px" />
|
|
|
|
</div>
|
2020-10-14 02:29:14 +03:00
|
|
|
{elements}
|
2020-10-24 09:36:52 +03:00
|
|
|
{this.props.external ? null : (
|
2021-01-21 08:41:46 +03:00
|
|
|
<div style={{ marginTop: 32 }}>
|
|
|
|
{this.props.activityView ? (
|
|
|
|
<div css={STYLES_ACTIONS} style={{ marginTop: 24 }}>
|
|
|
|
<div
|
|
|
|
css={STYLES_ACTION}
|
|
|
|
onClick={() =>
|
|
|
|
this.props.onAction({
|
|
|
|
type: "NAVIGATE",
|
|
|
|
value: "NAV_SLATE",
|
|
|
|
data: this.props.data.slate,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<SVG.Slate height="24px" />
|
|
|
|
<span style={{ marginLeft: 16 }}>Go to slate</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
) : null}
|
2020-10-24 09:36:52 +03:00
|
|
|
<div
|
|
|
|
css={STYLES_SECTION_HEADER}
|
2021-01-21 08:41:46 +03:00
|
|
|
style={{ cursor: "pointer", marginTop: 24 }}
|
2020-10-24 09:36:52 +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>
|
|
|
|
{this.state.showConnected ? (
|
|
|
|
<div style={{ width: "100%", margin: "24px 0 44px 0" }}>
|
|
|
|
<SlatePicker
|
|
|
|
slates={this.props.slates}
|
|
|
|
onCreateSlate={this._handleCreateSlate}
|
|
|
|
dark
|
2020-11-22 00:25:40 +03:00
|
|
|
fromSlate
|
|
|
|
files={[this.props.data]}
|
2020-10-24 09:36:52 +03:00
|
|
|
selectedColor={Constants.system.white}
|
2020-11-24 09:31:52 +03:00
|
|
|
selected={this.state.selected}
|
|
|
|
onAdd={this._handleAdd}
|
2020-10-24 09:36:52 +03:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
) : null}
|
2021-01-21 08:41:46 +03:00
|
|
|
</div>
|
2020-10-24 09:36:52 +03:00
|
|
|
)}
|
2020-10-22 08:24:43 +03:00
|
|
|
<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-14 02:29:14 +03:00
|
|
|
>
|
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 }}>
|
2020-10-24 00:28:53 +03:00
|
|
|
{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-11-28 04:19:30 +03:00
|
|
|
<div css={STYLES_ACTION} onClick={() => this._handleCopy(url, "gatewayUrlCopying")}>
|
2020-11-13 01:36:20 +03:00
|
|
|
<SVG.Data height="24px" />
|
|
|
|
<span style={{ marginLeft: 16 }}>
|
2020-12-20 06:25:28 +03:00
|
|
|
{this.state.loading === "gatewayUrlCopying" ? "Copied!" : "Copy file link"}
|
2020-11-13 01:36:20 +03:00
|
|
|
</span>
|
|
|
|
</div>
|
2020-10-25 01:04:14 +03:00
|
|
|
{this.props.isOwner || this.props.external ? null : (
|
|
|
|
<div css={STYLES_ACTION} onClick={() => this._handleSaveCopy(this.props.data)}>
|
|
|
|
<SVG.Save height="24px" />
|
|
|
|
<span style={{ marginLeft: 16 }}>
|
|
|
|
{this.state.loading === "savingCopy" ? (
|
|
|
|
<LoaderSpinner style={{ height: 16, width: 16 }} />
|
|
|
|
) : (
|
|
|
|
<span>Save copy</span>
|
|
|
|
)}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
)}
|
2020-10-24 09:36:52 +03:00
|
|
|
{this.props.external ? null : (
|
2020-10-25 22:20:33 +03:00
|
|
|
<div css={STYLES_ACTION} onClick={this._handleDownload}>
|
2020-10-24 09:36:52 +03:00
|
|
|
<SVG.Download height="24px" />
|
|
|
|
<span style={{ marginLeft: 16 }}>
|
2020-12-22 04:20:24 +03:00
|
|
|
<span>Download</span>
|
2020-10-24 09:36:52 +03:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{this.props.isOwner && !this.props.isRepost ? (
|
2020-10-24 00:28:53 +03:00
|
|
|
<div css={STYLES_ACTION} onClick={() => this._handleDelete(cid)}>
|
|
|
|
<SVG.Trash height="24px" />
|
2020-12-22 04:20:24 +03:00
|
|
|
<span style={{ marginLeft: 16 }}>Delete</span>
|
2020-10-24 00:28:53 +03:00
|
|
|
</div>
|
|
|
|
) : null}
|
2020-10-14 02:29:14 +03:00
|
|
|
</div>
|
2020-10-22 08:24:43 +03:00
|
|
|
) : null}
|
|
|
|
<input
|
|
|
|
css={STYLES_HIDDEN}
|
|
|
|
ref={(c) => {
|
|
|
|
this._ref = c;
|
|
|
|
}}
|
|
|
|
readOnly
|
|
|
|
value={this.state.copyValue}
|
|
|
|
/>
|
2020-10-14 02:29:14 +03:00
|
|
|
</div>
|
|
|
|
);
|
2020-08-21 10:07:39 +03:00
|
|
|
}
|
|
|
|
}
|