Files
overleaf-cep/services/web/frontend/js/features/source-editor/utils/position.ts
Alf Eaton d3668bddec Clamp minimum valid doc position to 0 (#27461)
GitOrigin-RevId: d531e2b5351b41217ccc8385f8f317cce91a840b
2025-07-30 08:06:09 +00:00

24 lines
465 B
TypeScript

import { Text } from '@codemirror/state'
export const findValidPosition = (
doc: Text,
lineNumber: number, // 1-indexed
columnNumber = 0 // 0-indexed
): number => {
if (lineNumber < 1) {
return 0
}
const lines = doc.lines
if (lineNumber > lines) {
// end of the doc
return doc.length
}
const line = doc.line(lineNumber)
// requested line and column, or the end of the line
return Math.min(line.from + columnNumber, line.to)
}