comment ui permissions

This commit is contained in:
Philipinho
2025-07-03 20:52:22 -07:00
parent 129aaaa375
commit 67f8bcfeca
3 changed files with 68 additions and 185 deletions

View File

@ -23,9 +23,14 @@ import { useTranslation } from "react-i18next";
interface CommentListItemProps { interface CommentListItemProps {
comment: IComment; comment: IComment;
pageId: string; pageId: string;
canComment: boolean;
} }
function CommentListItem({ comment, pageId }: CommentListItemProps) { function CommentListItem({
comment,
pageId,
canComment,
}: CommentListItemProps) {
const { t } = useTranslation(); const { t } = useTranslation();
const { hovered, ref } = useHover(); const { hovered, ref } = useHover();
const [isEditing, setIsEditing] = useState(false); const [isEditing, setIsEditing] = useState(false);
@ -39,7 +44,7 @@ function CommentListItem({ comment, pageId }: CommentListItemProps) {
const isCloudEE = useIsCloudEE(); const isCloudEE = useIsCloudEE();
useEffect(() => { useEffect(() => {
setContent(comment.content) setContent(comment.content);
}, [comment]); }, [comment]);
async function handleUpdateComment() { async function handleUpdateComment() {
@ -78,7 +83,9 @@ function CommentListItem({ comment, pageId }: CommentListItemProps) {
} }
function handleCommentClick(comment: IComment) { function handleCommentClick(comment: IComment) {
const el = document.querySelector(`.comment-mark[data-comment-id="${comment.id}"]`); const el = document.querySelector(
`.comment-mark[data-comment-id="${comment.id}"]`,
);
if (el) { if (el) {
el.scrollIntoView({ behavior: "smooth", block: "center" }); el.scrollIntoView({ behavior: "smooth", block: "center" });
el.classList.add("comment-highlight"); el.classList.add("comment-highlight");
@ -111,12 +118,12 @@ function CommentListItem({ comment, pageId }: CommentListItemProps) {
</Text> </Text>
<div style={{ visibility: hovered ? "visible" : "hidden" }}> <div style={{ visibility: hovered ? "visible" : "hidden" }}>
{!comment.parentCommentId && isCloudEE && ( {!comment.parentCommentId && canComment && isCloudEE && (
<ResolveComment <ResolveComment
editor={editor} editor={editor}
commentId={comment.id} commentId={comment.id}
pageId={comment.pageId} pageId={comment.pageId}
resolvedAt={comment.resolvedAt} resolvedAt={comment.resolvedAt}
/> />
)} )}
@ -139,7 +146,10 @@ function CommentListItem({ comment, pageId }: CommentListItemProps) {
<div> <div>
{!comment.parentCommentId && comment?.selection && ( {!comment.parentCommentId && comment?.selection && (
<Box className={classes.textSelection} onClick={() => handleCommentClick(comment)}> <Box
className={classes.textSelection}
onClick={() => handleCommentClick(comment)}
>
<Text size="sm">{comment?.selection}</Text> <Text size="sm">{comment?.selection}</Text>
</Box> </Box>
)} )}

View File

@ -16,6 +16,12 @@ import { extractPageSlugId } from "@/lib";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useQueryEmit } from "@/features/websocket/use-query-emit"; import { useQueryEmit } from "@/features/websocket/use-query-emit";
import { useIsCloudEE } from "@/hooks/use-is-cloud-ee"; import { useIsCloudEE } from "@/hooks/use-is-cloud-ee";
import { useGetSpaceBySlugQuery } from "@/features/space/queries/space-query.ts";
import { useSpaceAbility } from "@/features/space/permissions/use-space-ability.ts";
import {
SpaceCaslAction,
SpaceCaslSubject,
} from "@/features/space/permissions/permissions.type.ts";
function CommentListWithTabs() { function CommentListWithTabs() {
const { t } = useTranslation(); const { t } = useTranslation();
@ -30,6 +36,15 @@ function CommentListWithTabs() {
const [isLoading, setIsLoading] = useState(false); const [isLoading, setIsLoading] = useState(false);
const emit = useQueryEmit(); const emit = useQueryEmit();
const isCloudEE = useIsCloudEE(); const isCloudEE = useIsCloudEE();
const { data: space } = useGetSpaceBySlugQuery(page?.space?.slug);
const spaceRules = space?.membership?.permissions;
const spaceAbility = useSpaceAbility(spaceRules);
const canComment: boolean = spaceAbility.can(
SpaceCaslAction.Manage,
SpaceCaslSubject.Page,
);
// Separate active and resolved comments // Separate active and resolved comments
const { activeComments, resolvedComments } = useMemo(() => { const { activeComments, resolvedComments } = useMemo(() => {
@ -38,14 +53,14 @@ function CommentListWithTabs() {
} }
const parentComments = comments.items.filter( const parentComments = comments.items.filter(
(comment: IComment) => comment.parentCommentId === null (comment: IComment) => comment.parentCommentId === null,
); );
const active = parentComments.filter( const active = parentComments.filter(
(comment: IComment) => !comment.resolvedAt (comment: IComment) => !comment.resolvedAt,
); );
const resolved = parentComments.filter( const resolved = parentComments.filter(
(comment: IComment) => comment.resolvedAt (comment: IComment) => comment.resolvedAt,
); );
return { activeComments: active, resolvedComments: resolved }; return { activeComments: active, resolvedComments: resolved };
@ -88,11 +103,20 @@ function CommentListWithTabs() {
data-comment-id={comment.id} data-comment-id={comment.id}
> >
<div> <div>
<CommentListItem comment={comment} pageId={page?.id} /> <CommentListItem
<MemoizedChildComments comments={comments} parentId={comment.id} pageId={page?.id} /> comment={comment}
pageId={page?.id}
canComment={canComment}
/>
<MemoizedChildComments
comments={comments}
parentId={comment.id}
pageId={page?.id}
canComment={canComment}
/>
</div> </div>
{!comment.resolvedAt && ( {!comment.resolvedAt && canComment && (
<> <>
<Divider my={4} /> <Divider my={4} />
<CommentEditorWithActions <CommentEditorWithActions
@ -115,7 +139,7 @@ function CommentListWithTabs() {
return <div>{t("Error loading comments.")}</div>; return <div>{t("Error loading comments.")}</div>;
} }
const totalComments = (activeComments.length + resolvedComments.length); const totalComments = activeComments.length + resolvedComments.length;
if (totalComments === 0) { if (totalComments === 0) {
return <>{t("No comments yet.")}</>; return <>{t("No comments yet.")}</>;
@ -135,8 +159,8 @@ function CommentListWithTabs() {
return ( return (
<Tabs defaultValue="open" variant="default"> <Tabs defaultValue="open" variant="default">
<Tabs.List justify="center"> <Tabs.List justify="center">
<Tabs.Tab <Tabs.Tab
value="open" value="open"
leftSection={ leftSection={
<Badge size="xs" variant="light" color="blue"> <Badge size="xs" variant="light" color="blue">
{activeComments.length} {activeComments.length}
@ -145,8 +169,8 @@ function CommentListWithTabs() {
> >
{t("Open")} {t("Open")}
</Tabs.Tab> </Tabs.Tab>
<Tabs.Tab <Tabs.Tab
value="resolved" value="resolved"
leftSection={ leftSection={
<Badge size="xs" variant="light" color="green"> <Badge size="xs" variant="light" color="green">
{resolvedComments.length} {resolvedComments.length}
@ -184,8 +208,14 @@ interface ChildCommentsProps {
comments: IPagination<IComment>; comments: IPagination<IComment>;
parentId: string; parentId: string;
pageId: string; pageId: string;
canComment: boolean;
} }
const ChildComments = ({ comments, parentId, pageId }: ChildCommentsProps) => { const ChildComments = ({
comments,
parentId,
pageId,
canComment,
}: ChildCommentsProps) => {
const getChildComments = useCallback( const getChildComments = useCallback(
(parentId: string) => (parentId: string) =>
comments.items.filter( comments.items.filter(
@ -198,11 +228,16 @@ const ChildComments = ({ comments, parentId, pageId }: ChildCommentsProps) => {
<div> <div>
{getChildComments(parentId).map((childComment) => ( {getChildComments(parentId).map((childComment) => (
<div key={childComment.id}> <div key={childComment.id}>
<CommentListItem comment={childComment} pageId={pageId} /> <CommentListItem
comment={childComment}
pageId={pageId}
canComment={canComment}
/>
<MemoizedChildComments <MemoizedChildComments
comments={comments} comments={comments}
parentId={childComment.id} parentId={childComment.id}
pageId={pageId} pageId={pageId}
canComment={canComment}
/> />
</div> </div>
))} ))}
@ -236,4 +271,4 @@ const CommentEditorWithActions = ({ commentId, onSave, isLoading }) => {
); );
}; };
export default CommentListWithTabs; export default CommentListWithTabs;

View File

@ -1,162 +0,0 @@
import React, { useState, useRef, useCallback, memo } from "react";
import { useParams } from "react-router-dom";
import { Divider, Paper } from "@mantine/core";
import CommentListItem from "@/features/comment/components/comment-list-item";
import {
useCommentsQuery,
useCreateCommentMutation,
} from "@/features/comment/queries/comment-query";
import CommentEditor from "@/features/comment/components/comment-editor";
import CommentActions from "@/features/comment/components/comment-actions";
import { useFocusWithin } from "@mantine/hooks";
import { IComment } from "@/features/comment/types/comment.types.ts";
import { usePageQuery } from "@/features/page/queries/page-query.ts";
import { IPagination } from "@/lib/types.ts";
import { extractPageSlugId } from "@/lib";
import { useTranslation } from "react-i18next";
import { useQueryEmit } from "@/features/websocket/use-query-emit";
function CommentList() {
const { t } = useTranslation();
const { pageSlug } = useParams();
const { data: page } = usePageQuery({ pageId: extractPageSlugId(pageSlug) });
const {
data: comments,
isLoading: isCommentsLoading,
isError,
} = useCommentsQuery({ pageId: page?.id, limit: 100 });
const createCommentMutation = useCreateCommentMutation();
const [isLoading, setIsLoading] = useState(false);
const emit = useQueryEmit();
const handleAddReply = useCallback(
async (commentId: string, content: string) => {
try {
setIsLoading(true);
const commentData = {
pageId: page?.id,
parentCommentId: commentId,
content: JSON.stringify(content),
};
await createCommentMutation.mutateAsync(commentData);
emit({
operation: "invalidateComment",
pageId: page?.id,
});
} catch (error) {
console.error("Failed to post comment:", error);
} finally {
setIsLoading(false);
}
},
[createCommentMutation, page?.id],
);
const renderComments = useCallback(
(comment: IComment) => (
<Paper
shadow="sm"
radius="md"
p="sm"
mb="sm"
withBorder
key={comment.id}
data-comment-id={comment.id}
>
<div>
<CommentListItem comment={comment} pageId={page?.id} />
<MemoizedChildComments comments={comments} parentId={comment.id} pageId={page?.id} />
</div>
<Divider my={4} />
<CommentEditorWithActions
commentId={comment.id}
onSave={handleAddReply}
isLoading={isLoading}
/>
</Paper>
),
[comments, handleAddReply, isLoading],
);
if (isCommentsLoading) {
return <></>;
}
if (isError) {
return <div>{t("Error loading comments.")}</div>;
}
if (!comments || comments.items.length === 0) {
return <>{t("No comments yet.")}</>;
}
return (
<>
{comments.items
.filter((comment) => comment.parentCommentId === null)
.map(renderComments)}
</>
);
}
interface ChildCommentsProps {
comments: IPagination<IComment>;
parentId: string;
pageId: string;
}
const ChildComments = ({ comments, parentId, pageId }: ChildCommentsProps) => {
const getChildComments = useCallback(
(parentId: string) =>
comments.items.filter(
(comment: IComment) => comment.parentCommentId === parentId,
),
[comments.items],
);
return (
<div>
{getChildComments(parentId).map((childComment) => (
<div key={childComment.id}>
<CommentListItem comment={childComment} pageId={pageId} />
<MemoizedChildComments
comments={comments}
parentId={childComment.id}
pageId={pageId}
/>
</div>
))}
</div>
);
};
const MemoizedChildComments = memo(ChildComments);
const CommentEditorWithActions = ({ commentId, onSave, isLoading }) => {
const [content, setContent] = useState("");
const { ref, focused } = useFocusWithin();
const commentEditorRef = useRef(null);
const handleSave = useCallback(() => {
onSave(commentId, content);
setContent("");
commentEditorRef.current?.clearContent();
}, [commentId, content, onSave]);
return (
<div ref={ref}>
<CommentEditor
ref={commentEditorRef}
onUpdate={setContent}
onSave={handleSave}
editable={true}
/>
{focused && <CommentActions onSave={handleSave} isLoading={isLoading} />}
</div>
);
};
export default CommentList;