mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
ab43a44b76
Styling updates for mini review panel GitOrigin-RevId: 1bbf7f1d2e02f5d6f3f50937d2b7b9cdc5a0878f
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { memo } from 'react'
|
|
import { Change, CommentOperation } from '../../../../../types/change'
|
|
import { useThreadsContext } from '../context/threads-context'
|
|
import classnames from 'classnames'
|
|
import { ReviewPanelEntry } from './review-panel-entry'
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
import { ReviewPanelCommentContent } from './review-panel-comment-content'
|
|
|
|
export const ReviewPanelComment = memo<{
|
|
comment: Change<CommentOperation>
|
|
top?: number
|
|
}>(({ comment, top }) => {
|
|
const threads = useThreadsContext()
|
|
|
|
const thread = threads?.[comment.op.t]
|
|
if (!thread || thread.resolved || thread.messages.length === 0) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<ReviewPanelEntry
|
|
className={classnames('review-panel-entry-comment', {
|
|
'review-panel-entry-loaded': !!threads?.[comment.op.t],
|
|
})}
|
|
top={top}
|
|
op={comment.op}
|
|
position={comment.op.p}
|
|
>
|
|
<div className="review-panel-entry-indicator">
|
|
<MaterialIcon type="comment" className="review-panel-entry-icon" />
|
|
</div>
|
|
<ReviewPanelCommentContent comment={comment} isResolved={false} />
|
|
</ReviewPanelEntry>
|
|
)
|
|
})
|
|
ReviewPanelComment.displayName = 'ReviewPanelComment'
|