1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

boris: highlight announce comments

This commit is contained in:
Fedor Katurov 2023-03-18 16:34:47 +06:00
parent 2ecda12513
commit 6230a769e0
5 changed files with 41 additions and 18 deletions

View file

@ -20,6 +20,7 @@ type IProps = HTMLAttributes<HTMLDivElement> & {
group: ICommentGroup;
isSame?: boolean;
canEdit?: boolean;
highlighted?: boolean;
saveComment: (data: IComment) => Promise<unknown>;
onDelete: (id: IComment['id'], isLocked: boolean) => void;
onShowImageModal: (images: IFile[], index: number) => void;
@ -33,6 +34,7 @@ const Comment: FC<IProps> = memo(
isSame,
isLoading,
className,
highlighted,
canEdit,
onDelete,
onShowImageModal,
@ -41,8 +43,9 @@ const Comment: FC<IProps> = memo(
}) => {
return (
<CommentWrapper
className={classNames(className, {
className={classNames(styles.container, className, {
[NEW_COMMENT_CLASSNAME]: group.hasNew,
[styles.highlighted]: highlighted,
})}
isEmpty={isEmpty}
isLoading={isLoading}
@ -53,23 +56,31 @@ const Comment: FC<IProps> = memo(
<div className={styles.wrap}>
{group.comments.map((comment, index) => {
if (comment.deleted_at) {
return <CommendDeleted id={comment.id} onDelete={onDelete} key={comment.id} />;
return (
<CommendDeleted
id={comment.id}
onDelete={onDelete}
key={comment.id}
/>
);
}
const prefix = Math.abs(group.distancesInDays[index]) > 14 && (
<CommentDistance
firstDate={
comment?.created_at ? parseISO(comment.created_at) : undefined
}
secondDate={
index > 0 && group.comments[index - 1]?.created_at
? parseISO(group.comments[index - 1].created_at!)
: undefined
}
/>
);
return (
<CommentContent
prefix={
Math.abs(group.distancesInDays[index]) > 14 && (
<CommentDistance
firstDate={comment?.created_at ? parseISO(comment.created_at) : undefined}
secondDate={
index > 0 && group.comments[index - 1]?.created_at
? parseISO(group.comments[index - 1].created_at!)
: undefined
}
/>
)
}
prefix={prefix}
saveComment={saveComment}
nodeId={nodeId}
comment={comment}
@ -83,7 +94,7 @@ const Comment: FC<IProps> = memo(
</div>
</CommentWrapper>
);
}
},
);
export { Comment };

View file

@ -1,4 +1,4 @@
@import "src/styles/variables";
@import 'src/styles/variables';
@keyframes appear {
from {
@ -11,3 +11,7 @@
.wrap {
animation: appear 1s;
}
.highlighted {
box-shadow: $color_primary 0 0 0px 2px;
}