mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
142 lines
3.6 KiB
TypeScript
142 lines
3.6 KiB
TypeScript
|
import {
|
||
|
createContext,
|
||
|
FC,
|
||
|
useContext,
|
||
|
useEffect,
|
||
|
useMemo,
|
||
|
useState,
|
||
|
} from 'react'
|
||
|
import useScopeValue from '@/shared/hooks/use-scope-value'
|
||
|
import { DocumentContainer } from '@/features/ide-react/editor/document-container'
|
||
|
import {
|
||
|
Change,
|
||
|
CommentOperation,
|
||
|
EditOperation,
|
||
|
} from '../../../../../types/change'
|
||
|
import RangesTracker from '@overleaf/ranges-tracker'
|
||
|
import { rejectChanges } from '@/features/source-editor/extensions/track-changes'
|
||
|
import { useCodeMirrorViewContext } from '@/features/source-editor/components/codemirror-editor'
|
||
|
|
||
|
export type Ranges = {
|
||
|
docId: string
|
||
|
total: number
|
||
|
changes: Change<EditOperation>[]
|
||
|
comments: Change<CommentOperation>[]
|
||
|
}
|
||
|
|
||
|
export const RangesContext = createContext<Ranges | undefined>(undefined)
|
||
|
|
||
|
type RangesActions = {
|
||
|
acceptChanges: (...ids: string[]) => void
|
||
|
rejectChanges: (...ids: string[]) => void
|
||
|
}
|
||
|
|
||
|
const buildRanges = (currentDoc: DocumentContainer | null) => {
|
||
|
if (currentDoc?.ranges) {
|
||
|
return {
|
||
|
...currentDoc.ranges,
|
||
|
docId: currentDoc.doc_id,
|
||
|
total:
|
||
|
currentDoc.ranges.changes.length + currentDoc.ranges.comments.length,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const RangesActionsContext = createContext<RangesActions | undefined>(undefined)
|
||
|
|
||
|
export const RangesProvider: FC = ({ children }) => {
|
||
|
const view = useCodeMirrorViewContext()
|
||
|
|
||
|
const [currentDoc] = useScopeValue<DocumentContainer | null>(
|
||
|
'editor.sharejs_doc'
|
||
|
)
|
||
|
|
||
|
const [ranges, setRanges] = useState<Ranges | undefined>(() =>
|
||
|
buildRanges(currentDoc)
|
||
|
)
|
||
|
|
||
|
// rebuild the ranges when the current doc changes
|
||
|
useEffect(() => {
|
||
|
setRanges(buildRanges(currentDoc))
|
||
|
}, [currentDoc])
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (currentDoc) {
|
||
|
const listener = () => {
|
||
|
setRanges(buildRanges(currentDoc))
|
||
|
}
|
||
|
|
||
|
// currentDoc.on('ranges:clear.cm6', listener)
|
||
|
currentDoc.on('ranges:redraw.cm6', listener)
|
||
|
currentDoc.on('ranges:dirty.cm6', listener)
|
||
|
|
||
|
return () => {
|
||
|
// currentDoc.off('ranges:clear.cm6')
|
||
|
currentDoc.off('ranges:redraw.cm6')
|
||
|
currentDoc.off('ranges:dirty.cm6')
|
||
|
}
|
||
|
}
|
||
|
}, [currentDoc])
|
||
|
|
||
|
// TODO: move this into DocumentContainer?
|
||
|
useEffect(() => {
|
||
|
if (currentDoc) {
|
||
|
const regenerateTrackChangesId = (doc: DocumentContainer) => {
|
||
|
if (doc.ranges) {
|
||
|
const inflight = doc.ranges.getIdSeed()
|
||
|
const pending = RangesTracker.generateIdSeed()
|
||
|
doc.ranges.setIdSeed(pending)
|
||
|
doc.setTrackChangesIdSeeds({ pending, inflight })
|
||
|
}
|
||
|
}
|
||
|
|
||
|
currentDoc.on('flipped_pending_to_inflight', () =>
|
||
|
regenerateTrackChangesId(currentDoc)
|
||
|
)
|
||
|
|
||
|
regenerateTrackChangesId(currentDoc)
|
||
|
|
||
|
return () => {
|
||
|
currentDoc.off('flipped_pending_to_inflight')
|
||
|
}
|
||
|
}
|
||
|
}, [currentDoc])
|
||
|
|
||
|
const actions = useMemo(
|
||
|
() => ({
|
||
|
acceptChanges(...ids: string[]) {
|
||
|
if (currentDoc?.ranges) {
|
||
|
currentDoc.ranges.removeChangeIds(ids)
|
||
|
setRanges(buildRanges(currentDoc))
|
||
|
}
|
||
|
},
|
||
|
rejectChanges(...ids: string[]) {
|
||
|
if (currentDoc?.ranges) {
|
||
|
view.dispatch(rejectChanges(view.state, currentDoc.ranges, ids))
|
||
|
}
|
||
|
},
|
||
|
}),
|
||
|
[currentDoc, view]
|
||
|
)
|
||
|
|
||
|
return (
|
||
|
<RangesActionsContext.Provider value={actions}>
|
||
|
<RangesContext.Provider value={ranges}>{children}</RangesContext.Provider>
|
||
|
</RangesActionsContext.Provider>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export const useRangesContext = () => {
|
||
|
return useContext(RangesContext)
|
||
|
}
|
||
|
|
||
|
export const useRangesActionsContext = () => {
|
||
|
const context = useContext(RangesActionsContext)
|
||
|
if (!context) {
|
||
|
throw new Error(
|
||
|
'useRangesActionsContext is only available inside RangesProvider'
|
||
|
)
|
||
|
}
|
||
|
return context
|
||
|
}
|