Feat: 리뷰 이미지에 댓글 볼 수 있는 기능 추가

This commit is contained in:
정현조 2024-09-30 14:54:10 +09:00
parent a7d5a54f7a
commit ce788c3797
2 changed files with 81 additions and 37 deletions

View File

@ -1,17 +1,23 @@
import { useEffect, useState } from 'react';
import { Image, Layer, Stage, Line, Rect } from 'react-konva';
import { Image, Layer, Stage, Line, Rect, Text, Group } from 'react-konva';
import useImage from 'use-image';
import { Label, Shape } from '@/types';
import useCommentListQuery from '@/queries/comments/useCommentListQuery';
import { Button } from '@/components/ui/button';
interface ImageWithLabelsProps {
imagePath: string;
labelData: string;
projectId: number;
imageId: number;
}
export default function ImageWithLabels({ imagePath, labelData }: ImageWithLabelsProps) {
export default function ImageWithLabels({ imagePath, labelData, projectId, imageId }: ImageWithLabelsProps) {
const [image] = useImage(imagePath);
const [labels, setLabels] = useState<Label[]>([]);
const [stageDimensions, setStageDimensions] = useState({ width: window.innerWidth, height: window.innerHeight });
const { data: commentList } = useCommentListQuery(projectId, imageId);
const [showComments, setShowComments] = useState(true);
useEffect(() => {
const fetchLabelData = async () => {
@ -55,41 +61,77 @@ export default function ImageWithLabels({ imagePath, labelData }: ImageWithLabel
return { x: scale, y: scale };
};
return image ? (
<Stage
width={stageDimensions.width}
height={stageDimensions.height}
className="overflow-hidden bg-gray-200"
scale={getScale()}
>
<Layer>{image && <Image image={image} />}</Layer>
<Layer>
{labels.map((label) =>
label.type === 'rectangle' ? (
<Rect
key={label.id}
x={label.coordinates[0][0]}
y={label.coordinates[0][1]}
width={label.coordinates[1][0] - label.coordinates[0][0]}
height={label.coordinates[1][1] - label.coordinates[0][1]}
stroke={label.color}
strokeWidth={2}
listening={false}
/>
) : (
<Line
key={label.id}
points={label.coordinates.flat()}
stroke={label.color}
strokeWidth={2}
closed
listening={false}
/>
)
return (
<div>
<Button
variant="outline"
size="sm"
onClick={() => setShowComments((prev) => !prev)}
className="mb-4"
>
{showComments ? '댓글 숨기기' : '댓글 보기'}
</Button>
<Stage
width={stageDimensions.width}
height={stageDimensions.height}
className="overflow-hidden bg-gray-200"
scale={getScale()}
>
<Layer>{image && <Image image={image} />}</Layer>
<Layer>
{labels.map((label) =>
label.type === 'rectangle' ? (
<Rect
key={label.id}
x={label.coordinates[0][0]}
y={label.coordinates[0][1]}
width={label.coordinates[1][0] - label.coordinates[0][0]}
height={label.coordinates[1][1] - label.coordinates[0][1]}
stroke={label.color}
strokeWidth={2}
listening={false}
/>
) : (
<Line
key={label.id}
points={label.coordinates.flat()}
stroke={label.color}
strokeWidth={2}
closed
listening={false}
/>
)
)}
</Layer>
{showComments && (
<Layer>
{commentList?.map((comment) => (
<Group
key={comment.id}
x={comment.positionX}
y={comment.positionY}
>
<Rect
width={150}
height={50}
fill="white"
cornerRadius={10}
shadowBlur={5}
/>
<Text
x={10}
y={10}
text={comment.content}
fontSize={14}
fill="black"
width={130}
listening={false}
/>
</Group>
))}
</Layer>
)}
</Layer>
</Stage>
) : (
<div></div>
</Stage>
</div>
);
}

View File

@ -95,6 +95,8 @@ export default function ReviewDetail(): JSX.Element {
<ImageWithLabels
imagePath={image.imagePath}
labelData={image.dataPath}
projectId={Number(projectId)}
imageId={image.id}
/>
</div>
))}