mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 00:24:33 -05:00
c606f04cce
GitOrigin-RevId: 795d30b56e57970363512170f504ab51bd104c93
108 lines
3.2 KiB
TypeScript
108 lines
3.2 KiB
TypeScript
import { FC, useMemo } from 'react'
|
|
import { MainDocument } from '../../../../../types/project-settings'
|
|
import { Ranges } from '../context/ranges-context'
|
|
import { ReviewPanelComment } from './review-panel-comment'
|
|
import { ReviewPanelChange } from './review-panel-change'
|
|
import {
|
|
isCommentOperation,
|
|
isDeleteChange,
|
|
isInsertChange,
|
|
} from '@/utils/operations'
|
|
import {
|
|
Change,
|
|
CommentOperation,
|
|
DeleteOperation,
|
|
EditOperation,
|
|
} from '../../../../../types/change'
|
|
import { canAggregate } from '../utils/can-aggregate'
|
|
|
|
import MaterialIcon from '@/shared/components/material-icon'
|
|
import useOverviewFileCollapsed from '../hooks/use-overview-file-collapsed'
|
|
import { useThreadsContext } from '../context/threads-context'
|
|
|
|
export const ReviewPanelOverviewFile: FC<{
|
|
doc: MainDocument
|
|
ranges: Ranges
|
|
}> = ({ doc, ranges }) => {
|
|
const { collapsed, toggleCollapsed } = useOverviewFileCollapsed(doc.doc.id)
|
|
const threads = useThreadsContext()
|
|
|
|
const { aggregates, changes } = useMemo(() => {
|
|
const changes: Change<EditOperation>[] = []
|
|
const aggregates: Map<string, Change<DeleteOperation>> = new Map()
|
|
|
|
let precedingChange: Change<EditOperation> | null = null
|
|
for (const change of ranges.changes) {
|
|
if (
|
|
precedingChange &&
|
|
isInsertChange(precedingChange) &&
|
|
isDeleteChange(change) &&
|
|
canAggregate(change, precedingChange)
|
|
) {
|
|
aggregates.set(precedingChange.id, change)
|
|
} else {
|
|
changes.push(change)
|
|
}
|
|
precedingChange = change
|
|
}
|
|
|
|
return { aggregates, changes }
|
|
}, [ranges])
|
|
|
|
const entries = useMemo(() => {
|
|
const unresolvedComments = ranges.comments.filter(comment => {
|
|
const thread = threads?.[comment.op.t]
|
|
return thread && thread.messages.length > 0 && !thread.resolved
|
|
})
|
|
return [...changes, ...unresolvedComments].sort((a, b) => a.op.p - b.op.p)
|
|
}, [changes, ranges.comments, threads])
|
|
|
|
if (entries.length === 0) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<button
|
|
type="button"
|
|
className="review-panel-overview-file-header"
|
|
onClick={toggleCollapsed}
|
|
>
|
|
<MaterialIcon
|
|
type={collapsed ? 'keyboard_arrow_right' : 'keyboard_arrow_down'}
|
|
/>
|
|
{doc.doc.name}
|
|
<div className="review-panel-overview-file-entry-count">
|
|
{entries.length}
|
|
</div>
|
|
</button>
|
|
|
|
{!collapsed && (
|
|
<div className="review-panel-overview-file-entries">
|
|
{entries.map(entry =>
|
|
isCommentOperation(entry.op) ? (
|
|
<ReviewPanelComment
|
|
key={entry.id}
|
|
comment={entry as Change<CommentOperation>}
|
|
docId={doc.doc.id}
|
|
hoverRanges={false}
|
|
/>
|
|
) : (
|
|
<ReviewPanelChange
|
|
key={entry.id}
|
|
change={entry as Change<EditOperation>}
|
|
aggregate={aggregates.get(entry.id)}
|
|
editable={false}
|
|
docId={doc.doc.id}
|
|
hoverRanges={false}
|
|
/>
|
|
)
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="review-panel-overfile-divider" />
|
|
</>
|
|
)
|
|
}
|