mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
11f8905be4
GitOrigin-RevId: 610a254ea77c194969033d0791ecf1129e02c4bf
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import displayNameForUser from '../../../ide/history/util/displayNameForUser'
|
|
import moment from 'moment/moment'
|
|
import ColorManager from '../../../ide/colors/ColorManager'
|
|
import { DocDiffChunk, Highlight } from '../services/types/doc'
|
|
|
|
export function highlightsFromDiffResponse(chunks: DocDiffChunk[]) {
|
|
let pos = 0
|
|
const highlights: Highlight[] = []
|
|
let doc = ''
|
|
|
|
for (const entry of chunks) {
|
|
const content = entry.u || entry.i || entry.d || ''
|
|
doc += content
|
|
const from = pos
|
|
const to = doc.length
|
|
pos = to
|
|
const range = { from, to }
|
|
|
|
const isInsertion = typeof entry.i === 'string'
|
|
const isDeletion = typeof entry.d === 'string'
|
|
|
|
if (isInsertion || isDeletion) {
|
|
const meta = entry.meta
|
|
if (!meta) {
|
|
throw new Error('No meta found')
|
|
}
|
|
const user = meta.users?.[0]
|
|
const name = displayNameForUser(user)
|
|
const date = moment(meta.end_ts).format('Do MMM YYYY, h:mm a')
|
|
if (isInsertion) {
|
|
highlights.push({
|
|
type: 'addition',
|
|
// There doesn't seem to be a convenient way to make this translatable
|
|
label: `Added by ${name} on ${date}`,
|
|
range,
|
|
hue: ColorManager.getHueForUserId(user.id),
|
|
})
|
|
} else if (isDeletion) {
|
|
highlights.push({
|
|
type: 'deletion',
|
|
// There doesn't seem to be a convenient way to make this translatable
|
|
label: `Deleted by ${name} on ${date}`,
|
|
range,
|
|
hue: ColorManager.getHueForUserId(user.id),
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
return { doc, highlights }
|
|
}
|