slate/scenes/SceneSlate.js
2021-04-17 17:36:28 -07:00

493 lines
14 KiB
JavaScript

import * as React from "react";
import * as System from "~/components/system";
import * as Actions from "~/common/actions";
import * as Window from "~/common/window";
import * as Constants from "~/common/constants";
import * as SVG from "~/common/svg";
import * as Strings from "~/common/strings";
import * as UserBehaviors from "~/common/user-behaviors";
import * as Events from "~/common/custom-events";
import { LoaderSpinner } from "~/components/system/components/Loaders";
import { css } from "@emotion/react";
import { SlateLayout } from "~/components/core/SlateLayout";
import { SlateLayoutMobile } from "~/components/core/SlateLayoutMobile";
import { FileTypeGroup } from "~/components/core/FileTypeIcon";
import { ButtonPrimary, ButtonSecondary } from "~/components/system/components/Buttons";
import { GlobalCarousel } from "~/components/system/components/GlobalCarousel";
import ProcessedText from "~/components/core/ProcessedText";
import ScenePage from "~/components/core/ScenePage";
import ScenePageHeader from "~/components/core/ScenePageHeader";
import SquareButtonGray from "~/components/core/SquareButtonGray";
import EmptyState from "~/components/core/EmptyState";
const STYLES_LOADER = css`
display: flex;
align-items: center;
justify-content: center;
height: 90vh;
width: 100%;
`;
const STYLES_COPY_INPUT = css`
pointer-events: none;
position: absolute;
opacity: 0;
`;
const STYLES_USERNAME = css`
cursor: pointer;
:hover {
color: ${Constants.system.brand};
}
`;
const STYLES_MOBILE_HIDDEN = css`
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_MOBILE_ONLY = css`
@media (min-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
export default class SceneSlate extends React.Component {
state = {
loading: true,
notFound: false,
accessDenied: false,
};
componentDidMount = async () => {
await this.fetchSlate();
};
componentDidUpdate = async (prevProps) => {
if (!this.props.data?.objects && !this.state.notFound) {
await this.fetchSlate();
} else if (this.props.page !== prevProps.page) {
this.openCarouselToItem();
}
};
fetchSlate = async () => {
const { user: username, slate: slatename } = this.props.page;
if (!this.props.data && (!username || !slatename)) {
this.setState({ notFound: true });
return;
}
//NOTE(martina): look for the slate in the user's slates
let slate;
if (this.props.data?.id) {
for (let s of this.props.viewer.slates) {
if (this.props.data.id && this.props.data.id === s.id) {
slate = s;
break;
}
}
} else if (slatename && username === this.props.viewer.username) {
for (let s of this.props.viewer.slates) {
if (username && slatename === s.slatename) {
slate = s;
break;
}
}
if (!slate) {
Events.dispatchMessage({ message: "We're having trouble fetching that slate right now." });
this.setState({ notFound: true });
return;
}
}
if (slate) {
window.history.replaceState(
{ ...window.history.state, data: slate },
"Slate",
`/${this.props.viewer.username}/${slate.slatename}`
);
}
if (!slate) {
let query;
if (username && slatename) {
query = { username, slatename };
} else if (this.props.data && this.props.data.id) {
query = { id: this.props.data.id };
}
let response;
if (query) {
response = await Actions.getSerializedSlate(query);
}
if (response?.decorator == "SLATE_PRIVATE_ACCESS_DENIED") {
this.setState({ accessDenied: true, loading: false });
return;
}
if (Events.hasError(response)) {
this.setState({ notFound: true, loading: false });
return;
}
slate = response.slate;
window.history.replaceState(
{ ...window.history.state, data: slate },
"Slate",
`/${slate.user.username}/${slate.slatename}`
);
}
this.props.onUpdateData(slate, () => {
this.setState({ loading: false });
this.openCarouselToItem();
});
};
openCarouselToItem = () => {
if (!this.props.data?.objects?.length) {
return;
}
let objects = this.props.data.objects;
const { cid, fileId, index } = this.props.page;
if (Strings.isEmpty(cid) && Strings.isEmpty(fileId) && typeof index === "undefined") {
return;
}
let foundIndex = -1;
if (index) {
foundIndex = index;
} else if (cid) {
foundIndex = objects.findIndex((object) => object.cid === cid);
} else if (fileId) {
foundIndex = objects.findIndex((object) => object.id === fileId);
}
if (typeof foundIndex !== "undefined" && foundIndex !== -1) {
Events.dispatchCustomEvent({
name: "slate-global-open-carousel",
detail: { index: foundIndex },
});
}
};
render() {
console.log(this.props.data);
if (this.state.notFound || this.state.accessDenied) {
return (
<ScenePage>
<EmptyState>
<SVG.Layers height="24px" style={{ marginBottom: 24 }} />
<div>
{this.state.accessDenied
? "You do not have access to that slate"
: "We were unable to locate that slate"}
</div>
</EmptyState>
</ScenePage>
);
}
if (this.state.loading) {
return (
<ScenePage>
<div css={STYLES_LOADER}>
<LoaderSpinner />
</div>
</ScenePage>
);
} else if (this.props.data?.id) {
return <SlatePage {...this.props} key={this.props.data.id} current={this.props.data} />;
}
return null;
}
}
class SlatePage extends React.Component {
_copy = null;
_timeout = null;
_remoteLock = false;
state = {
...(this.props.current, this.props.viewer),
editing: false,
isSubscribed: this.props.viewer.subscriptions.some((subscription) => {
return subscription.id === this.props.current.id;
}),
};
componentDidMount() {
const {
page: { cid },
} = this.props;
/* NOTE(daniel): If user was redirected to this page, the cid of the slate object will exist in the page props.
We'll use the cid to open the global carousel */
if (Strings.isEmpty(cid)) {
return;
}
const index = this.props.current.objects.findIndex((object) => object.cid === cid);
if (index !== -1) {
Events.dispatchCustomEvent({
name: "slate-global-open-carousel",
detail: { index },
});
} else {
Events.dispatchCustomEvent({
name: "create-alert",
detail: {
alert: {
message:
"The requested file could not be found. It may have been removed from the slate or deleted",
},
},
});
}
}
componentDidUpdate(prevProps) {
if (this.props.viewer.subscriptions !== prevProps.viewer.subscriptions) {
this.setState({
isSubscribed: this.props.viewer.subscriptions.some((subscription) => {
return subscription.id === this.props.current.id;
}),
});
}
}
_handleSubscribe = () => {
this.setState({ isSubscribed: !this.state.isSubscribed }, () => {
Actions.createSubscription({
slateId: this.props.current.id,
});
});
};
_handleSaveLayout = async (layouts, autoSave) => {
const response = await Actions.updateSlateLayout({
id: this.props.current.id,
layouts,
});
if (!autoSave) {
Events.hasError(response);
}
};
_handleSavePreview = async (preview) => {
let updateObject = { id: this.props.current.id, data: { preview } };
let slates = this.props.viewer.slates;
let slateId = this.props.current.id;
for (let slate of slates) {
if (slate.id === slateId) {
slate.data.preview = preview;
break;
}
}
this.props.onUpdateViewer({ slates });
const response = await Actions.updateSlate(updateObject);
Events.hasError(response);
};
_handleSelect = (index) =>
Events.dispatchCustomEvent({
name: "slate-global-open-carousel",
detail: { index },
});
_handleAdd = async () => {
await this.props.onAction({
type: "SIDEBAR",
value: "SIDEBAR_ADD_FILE_TO_BUCKET",
data: this.props.current,
});
};
_handleShowSettings = () => {
return this.props.onAction({
type: "SIDEBAR",
value: "SIDEBAR_SINGLE_SLATE_SETTINGS",
data: this.props.current,
});
};
_handleCopy = (e, value) => {
e.stopPropagation();
e.preventDefault();
this.setState({ copyValue: value, copying: true }, () => {
this._copy.select();
document.execCommand("copy");
});
setTimeout(() => {
this.setState({ copying: false });
}, 1000);
};
_handleDownload = () => {
const slateName = this.props.current.data.name;
const slateFiles = this.props.current.objects;
UserBehaviors.compressAndDownloadFiles({
files: slateFiles,
name: `${slateName}.zip`,
resourceURI: this.props.resources.download,
});
};
render() {
console.log(this.props.current);
console.log(this.props.data);
const { user, data } = this.props.current;
const { body = "", preview } = data;
let objects = this.props.current.objects;
let layouts = this.props.current.data.layouts;
const isPublic = this.props.current.isPublic;
const isOwner = this.props.current.ownerId === this.props.viewer.id;
const tags = data.tags;
let actions = isOwner ? (
<span>
<SquareButtonGray onClick={this._handleDownload} style={{ marginRight: 16 }}>
<SVG.Download height="16px" />
</SquareButtonGray>
<SquareButtonGray onClick={this._handleAdd} style={{ marginRight: 16 }}>
<SVG.Plus height="16px" />
</SquareButtonGray>
<SquareButtonGray onClick={this._handleShowSettings}>
<SVG.Settings height="16px" />
</SquareButtonGray>
</span>
) : (
<div style={{ display: `flex` }}>
<SquareButtonGray onClick={this._handleDownload} style={{ marginRight: 16 }}>
<SVG.Download height="16px" />
</SquareButtonGray>
<div onClick={this._handleSubscribe}>
{this.state.isSubscribed ? (
<ButtonSecondary>Unsubscribe</ButtonSecondary>
) : (
<ButtonPrimary>Subscribe</ButtonPrimary>
)}
</div>
</div>
);
return (
<ScenePage>
<ScenePageHeader
wide
title={
user && !isOwner ? (
<span>
<span
onClick={() =>
this.props.onAction({
type: "NAVIGATE",
value: this.props.sceneId,
scene: "PROFILE",
data: user,
})
}
css={STYLES_USERNAME}
>
{user.username}
</span>{" "}
/ {data.name}
{isOwner && !isPublic && (
<SVG.SecurityLock
height="24px"
style={{ marginLeft: 16, color: Constants.system.darkGray }}
/>
)}
</span>
) : (
<span>
{data.name}
{isOwner && !isPublic && (
<SVG.SecurityLock
height="24px"
style={{ marginLeft: 16, color: Constants.system.darkGray }}
/>
)}
</span>
)
}
actions={<span css={STYLES_MOBILE_HIDDEN}>{actions}</span>}
tags={tags}
>
{body}
</ScenePageHeader>
<span css={STYLES_MOBILE_ONLY}>{actions}</span>
{objects && objects.length ? (
<>
<GlobalCarousel
carouselType="SLATE"
onUpdateViewer={this.props.onUpdateViewer}
viewer={this.props.viewer}
objects={objects}
current={this.props.current}
onAction={this.props.onAction}
isMobile={this.props.isMobile}
isOwner={isOwner}
external={this.props.external}
/>
{this.props.isMobile ? (
<SlateLayoutMobile
isOwner={isOwner}
items={objects}
fileNames={layouts && layouts.ver === "2.0" ? layouts.fileNames : false}
onSelect={this._handleSelect}
/>
) : (
<div style={{ marginTop: isOwner ? 24 : 48 }}>
<SlateLayout
key={this.props.current.id}
current={this.props.current}
onUpdateViewer={this.props.onUpdateViewer}
viewer={this.props.viewer}
slateId={this.props.current.id}
layout={layouts && layouts.ver === "2.0" ? layouts.layout || [] : null}
onSaveLayout={this._handleSaveLayout}
isOwner={isOwner}
fileNames={layouts && layouts.ver === "2.0" ? layouts.fileNames : false}
preview={preview}
onSavePreview={this._handleSavePreview}
items={objects}
resources={this.props.resources}
onSelect={this._handleSelect}
defaultLayout={layouts && layouts.ver === "2.0" ? layouts.defaultLayout : true}
onAction={this.props.onAction}
/>
</div>
)}
</>
) : isOwner ? (
<div>
<EmptyState>
<FileTypeGroup />
<div style={{ marginTop: 24 }}>Drag and drop files to add them to this slate</div>
</EmptyState>
</div>
) : (
<div>
<EmptyState>There's nothing here :)</EmptyState>
</div>
)}
<input
ref={(c) => {
this._copy = c;
}}
readOnly
value={this.state.copyValue}
css={STYLES_COPY_INPUT}
/>
</ScenePage>
);
}
}