* stash * wip * cleanup * Remove collaborativeEditing toggle, it will always be on in next release. Flip separateEdit -> seamlessEdit * Clarify language, hide toggle when collaborative editing is disabled * Flip boolean to match, easier to reason about
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import * as React from "react";
|
|
import { StaticContext } from "react-router";
|
|
import { RouteComponentProps } from "react-router-dom";
|
|
import useCurrentTeam from "~/hooks/useCurrentTeam";
|
|
import useLastVisitedPath from "~/hooks/useLastVisitedPath";
|
|
import useStores from "~/hooks/useStores";
|
|
import DataLoader from "./components/DataLoader";
|
|
import Document from "./components/Document";
|
|
import SocketPresence from "./components/SocketPresence";
|
|
|
|
type Params = {
|
|
documentSlug: string;
|
|
revisionId?: string;
|
|
shareId?: string;
|
|
};
|
|
|
|
type LocationState = {
|
|
title?: string;
|
|
restore?: boolean;
|
|
revisionId?: string;
|
|
};
|
|
|
|
type Props = RouteComponentProps<Params, StaticContext, LocationState>;
|
|
|
|
export default function DocumentScene(props: Props) {
|
|
const { ui } = useStores();
|
|
const team = useCurrentTeam();
|
|
const { documentSlug, revisionId } = props.match.params;
|
|
const currentPath = props.location.pathname;
|
|
const [, setLastVisitedPath] = useLastVisitedPath();
|
|
|
|
React.useEffect(() => {
|
|
setLastVisitedPath(currentPath);
|
|
}, [currentPath, setLastVisitedPath]);
|
|
|
|
React.useEffect(() => {
|
|
return () => ui.clearActiveDocument();
|
|
}, [ui]);
|
|
|
|
// the urlId portion of the url does not include the slugified title
|
|
// we only want to force a re-mount of the document component when the
|
|
// document changes, not when the title does so only this portion is used
|
|
// for the key.
|
|
const urlParts = documentSlug ? documentSlug.split("-") : [];
|
|
const urlId = urlParts.length ? urlParts[urlParts.length - 1] : undefined;
|
|
const key = [urlId, revisionId].join("/");
|
|
|
|
return (
|
|
<DataLoader
|
|
key={key}
|
|
match={props.match}
|
|
history={props.history}
|
|
location={props.location}
|
|
>
|
|
{({ document, isEditing, ...rest }) => {
|
|
const isActive =
|
|
!document.isArchived && !document.isDeleted && !revisionId;
|
|
|
|
// TODO: Remove once multiplayer is 100% rollout, SocketPresence will
|
|
// no longer be required
|
|
if (isActive && !team.collaborativeEditing) {
|
|
return (
|
|
<SocketPresence documentId={document.id} isEditing={isEditing}>
|
|
<Document document={document} {...rest} />
|
|
</SocketPresence>
|
|
);
|
|
}
|
|
|
|
return <Document document={document} {...rest} />;
|
|
}}
|
|
</DataLoader>
|
|
);
|
|
}
|