108 lines
3.3 KiB
TypeScript
108 lines
3.3 KiB
TypeScript
import { AnimatePresence } from "framer-motion";
|
|
import { observer } from "mobx-react";
|
|
import * as React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useRouteMatch } from "react-router-dom";
|
|
import styled from "styled-components";
|
|
import Empty from "~/components/Empty";
|
|
import Flex from "~/components/Flex";
|
|
import Scrollable from "~/components/Scrollable";
|
|
import useCurrentUser from "~/hooks/useCurrentUser";
|
|
import useFocusedComment from "~/hooks/useFocusedComment";
|
|
import useKeyDown from "~/hooks/useKeyDown";
|
|
import usePolicy from "~/hooks/usePolicy";
|
|
import useStores from "~/hooks/useStores";
|
|
import CommentForm from "./CommentForm";
|
|
import CommentThread from "./CommentThread";
|
|
import Sidebar from "./SidebarLayout";
|
|
|
|
function Comments() {
|
|
const { ui, comments, documents } = useStores();
|
|
const { t } = useTranslation();
|
|
const user = useCurrentUser();
|
|
const match = useRouteMatch<{ documentSlug: string }>();
|
|
const document = documents.getByUrl(match.params.documentSlug);
|
|
const focusedComment = useFocusedComment();
|
|
const can = usePolicy(document?.id);
|
|
|
|
useKeyDown("Escape", () => document && ui.collapseComments(document?.id));
|
|
|
|
if (!document) {
|
|
return null;
|
|
}
|
|
|
|
const threads = comments
|
|
.threadsInDocument(document.id)
|
|
.filter((thread) => !thread.isNew || thread.createdById === user.id);
|
|
const hasComments = threads.length > 0;
|
|
|
|
return (
|
|
<Sidebar
|
|
title={t("Comments")}
|
|
onClose={() => ui.collapseComments(document?.id)}
|
|
scrollable={false}
|
|
>
|
|
<Scrollable
|
|
bottomShadow={!focusedComment}
|
|
id="comments"
|
|
hiddenScrollbars
|
|
topShadow
|
|
>
|
|
<Wrapper $hasComments={hasComments}>
|
|
{hasComments ? (
|
|
threads.map((thread) => (
|
|
<CommentThread
|
|
key={thread.id}
|
|
comment={thread}
|
|
document={document}
|
|
recessed={!!focusedComment && focusedComment.id !== thread.id}
|
|
focused={focusedComment?.id === thread.id}
|
|
/>
|
|
))
|
|
) : (
|
|
<NoComments align="center" justify="center" auto>
|
|
<PositionedEmpty>{t("No comments yet")}</PositionedEmpty>
|
|
</NoComments>
|
|
)}
|
|
</Wrapper>
|
|
</Scrollable>
|
|
<AnimatePresence initial={false}>
|
|
{!focusedComment && can.comment && (
|
|
<NewCommentForm
|
|
documentId={document.id}
|
|
placeholder={`${t("Add a comment")}…`}
|
|
autoFocus={false}
|
|
dir={document.dir}
|
|
animatePresence
|
|
standalone
|
|
/>
|
|
)}
|
|
</AnimatePresence>
|
|
</Sidebar>
|
|
);
|
|
}
|
|
|
|
const PositionedEmpty = styled(Empty)`
|
|
position: absolute;
|
|
top: calc(50vh - 30px);
|
|
transform: translateY(-50%);
|
|
`;
|
|
|
|
const NoComments = styled(Flex)`
|
|
padding-bottom: 65px;
|
|
height: 100%;
|
|
`;
|
|
|
|
const Wrapper = styled.div<{ $hasComments: boolean }>`
|
|
padding-bottom: ${(props) => (props.$hasComments ? "50vh" : "0")};
|
|
height: ${(props) => (props.$hasComments ? "auto" : "100%")};
|
|
`;
|
|
|
|
const NewCommentForm = styled(CommentForm)<{ dir?: "ltr" | "rtl" }>`
|
|
padding: 12px;
|
|
padding-right: ${(props) => (props.dir !== "rtl" ? "18px" : "12px")};
|
|
padding-left: ${(props) => (props.dir === "rtl" ? "18px" : "12px")};
|
|
`;
|
|
|
|
export default observer(Comments);
|