mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-15 21:45:35 +08:00
262 lines
9.8 KiB
TypeScript
262 lines
9.8 KiB
TypeScript
import {addDelegatedEventListener} from '../utils/dom.ts';
|
|
import {setFileFolding} from './file-fold.ts';
|
|
|
|
const diffLineNumberCellSelector = '#diff-file-boxes .code-diff td.lines-num[data-line-num]';
|
|
const diffAnchorSuffixRegex = /([LR])(\d+)$/;
|
|
const diffHashRangeRegex = /^(diff-[0-9a-f]+)([LR]\d+)(?:-([LR]\d+))?$/i;
|
|
export const diffAutoScrollAttr = 'data-auto-scroll-running';
|
|
|
|
type DiffAnchorSide = 'L' | 'R';
|
|
type DiffAnchorInfo = {anchor: string, fragment: string, side: DiffAnchorSide, line: number};
|
|
type DiffSelectionState = DiffAnchorInfo & {container: HTMLElement};
|
|
type DiffSelectionRange = {fragment: string, startSide: DiffAnchorSide, startLine: number, endSide: DiffAnchorSide, endLine: number};
|
|
|
|
let diffSelectionStart: DiffSelectionState | null = null;
|
|
|
|
function scrollDiffAnchorIntoView(targetElement: HTMLElement, currentHash: string) {
|
|
targetElement.scrollIntoView();
|
|
document.body.setAttribute(diffAutoScrollAttr, 'true');
|
|
window.location.hash = '';
|
|
window.location.hash = currentHash;
|
|
setTimeout(() => document.body.removeAttribute(diffAutoScrollAttr), 0);
|
|
}
|
|
|
|
function isDiffAnchorId(id: string | null): boolean {
|
|
return id !== null && id.startsWith('diff-');
|
|
}
|
|
|
|
function parseDiffAnchor(anchor: string): DiffAnchorInfo | null {
|
|
if (!isDiffAnchorId(anchor)) return null;
|
|
const suffixMatch = diffAnchorSuffixRegex.exec(anchor);
|
|
if (!suffixMatch) return null;
|
|
const line = Number.parseInt(suffixMatch[2]);
|
|
if (Number.isNaN(line)) return null;
|
|
const fragment = anchor.slice(0, -suffixMatch[0].length);
|
|
const side = suffixMatch[1] as DiffAnchorSide;
|
|
return {anchor, fragment, side, line};
|
|
}
|
|
|
|
export function applyDiffLineSelection(container: HTMLElement, range: DiffSelectionRange): boolean {
|
|
// Find the start and end anchor elements
|
|
const startId = `${range.fragment}${range.startSide}${range.startLine}`;
|
|
const endId = `${range.fragment}${range.endSide}${range.endLine}`;
|
|
const startSpan = container.querySelector<HTMLElement>(`#${CSS.escape(startId)}`);
|
|
const endSpan = container.querySelector<HTMLElement>(`#${CSS.escape(endId)}`);
|
|
|
|
if (!startSpan || !endSpan) return false;
|
|
|
|
const startTr = startSpan.closest('tr');
|
|
const endTr = endSpan.closest('tr');
|
|
if (!startTr || !endTr) return false;
|
|
|
|
// Clear previous selection
|
|
for (const tr of document.querySelectorAll('.code-diff tr.active')) {
|
|
tr.classList.remove('active');
|
|
}
|
|
|
|
// gather rows from the actual table that contains the selection to avoid missing hunks
|
|
const codeDiffTable = startSpan.closest<HTMLElement>('.code-diff');
|
|
if (!codeDiffTable || !codeDiffTable.contains(endSpan)) return false;
|
|
const allRows = Array.from(codeDiffTable.querySelectorAll<HTMLElement>('tbody tr'));
|
|
const startIndex = allRows.indexOf(startTr);
|
|
const endIndex = allRows.indexOf(endTr);
|
|
|
|
if (startIndex === -1 || endIndex === -1) return false;
|
|
|
|
// Select all rows between start and end (inclusive)
|
|
const minIndex = Math.min(startIndex, endIndex);
|
|
const maxIndex = Math.max(startIndex, endIndex);
|
|
|
|
for (let i = minIndex; i <= maxIndex; i++) {
|
|
const row = allRows[i];
|
|
// Only select rows that are actual diff lines (not comment rows, expansion buttons, etc.)
|
|
// Skip rows with data-line-type="4" which are code expansion buttons
|
|
if (row.querySelector('td.lines-num') && row.getAttribute('data-line-type') !== '4') {
|
|
row.classList.add('active');
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function buildDiffHash(range: DiffSelectionRange): string {
|
|
const startAnchor = `${range.fragment}${range.startSide}${range.startLine}`;
|
|
if (range.startSide === range.endSide && range.startLine === range.endLine) {
|
|
return startAnchor;
|
|
}
|
|
return `${startAnchor}-${range.endSide}${range.endLine}`;
|
|
}
|
|
|
|
function updateDiffHash(range: DiffSelectionRange) {
|
|
const hashValue = `#${buildDiffHash(range)}`;
|
|
if (window.location.hash === hashValue) return;
|
|
window.history.replaceState(null, '', hashValue);
|
|
}
|
|
|
|
export function parseDiffHashRange(hashValue: string): DiffSelectionRange | null {
|
|
if (!isDiffAnchorId(hashValue)) return null;
|
|
const match = diffHashRangeRegex.exec(hashValue);
|
|
if (!match) return null;
|
|
const startInfo = parseDiffAnchor(`${match[1]}${match[2]}`);
|
|
if (!startInfo) return null;
|
|
let endSide = startInfo.side;
|
|
let endLine = startInfo.line;
|
|
if (match[3]) {
|
|
const endInfo = parseDiffAnchor(`${match[1]}${match[3]}`);
|
|
if (!endInfo) {
|
|
return {fragment: startInfo.fragment, startSide: startInfo.side, startLine: startInfo.line, endSide: startInfo.side, endLine: startInfo.line};
|
|
}
|
|
endSide = endInfo.side;
|
|
endLine = endInfo.line;
|
|
}
|
|
return {
|
|
fragment: startInfo.fragment,
|
|
startSide: startInfo.side,
|
|
startLine: startInfo.line,
|
|
endSide,
|
|
endLine,
|
|
};
|
|
}
|
|
|
|
async function waitNextAnimationFrame() {
|
|
await new Promise((resolve) => requestAnimationFrame(() => resolve(undefined)));
|
|
}
|
|
|
|
export async function highlightDiffSelectionFromHash(): Promise<boolean> {
|
|
const {hash} = window.location;
|
|
if (!hash || !hash.startsWith('#diff-')) return false;
|
|
const hashValue = hash.substring(1);
|
|
const range = parseDiffHashRange(hashValue);
|
|
if (!range) {
|
|
if (document.body.hasAttribute(diffAutoScrollAttr)) return false;
|
|
// eslint-disable-next-line unicorn/prefer-query-selector
|
|
const targetElement = document.getElementById(hashValue);
|
|
if (!targetElement) return false;
|
|
scrollDiffAnchorIntoView(targetElement, hash);
|
|
return true;
|
|
}
|
|
const targetId = `${range.fragment}${range.startSide}${range.startLine}`;
|
|
|
|
// Wait for the target element to be available (in case it needs to be loaded)
|
|
let targetSpan = document.querySelector<HTMLElement>(`#${CSS.escape(targetId)}`);
|
|
if (!targetSpan) {
|
|
// Flush pending DOM mutations (htmx, folding animations, etc.) before giving up
|
|
await waitNextAnimationFrame();
|
|
targetSpan = document.querySelector<HTMLElement>(`#${CSS.escape(targetId)}`);
|
|
if (!targetSpan) {
|
|
// Target not found - it might need to be loaded via "show more files"
|
|
// Return false to let onLocationHashChange handle the loading
|
|
return false;
|
|
}
|
|
}
|
|
|
|
const container = targetSpan.closest<HTMLElement>('.diff-file-box');
|
|
if (!container) return false;
|
|
|
|
// Check if the file is collapsed and expand it if needed
|
|
if (container.getAttribute('data-folded') === 'true') {
|
|
const foldBtn = container.querySelector<HTMLElement>('.fold-file');
|
|
if (foldBtn) {
|
|
// Expand the file and wait for any transition to finish before selecting lines
|
|
await setFileFolding(container, foldBtn, false);
|
|
}
|
|
}
|
|
|
|
if (!applyDiffLineSelection(container, range)) return false;
|
|
updateDiffHash(range);
|
|
diffSelectionStart = {
|
|
anchor: targetId,
|
|
fragment: range.fragment,
|
|
side: range.startSide,
|
|
line: range.startLine,
|
|
container,
|
|
};
|
|
|
|
// Scroll to the first selected line (scroll to the tr element, not the span)
|
|
// The span is an inline element inside td, we need to scroll to the tr for better visibility
|
|
await waitNextAnimationFrame();
|
|
const targetTr = targetSpan.closest('tr');
|
|
if (targetTr) {
|
|
targetTr.scrollIntoView({block: 'center'});
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function handleDiffLineNumberClick(cell: HTMLElement, e: MouseEvent) {
|
|
let span = cell.querySelector<HTMLSpanElement>('span[id^="diff-"]');
|
|
let info = parseDiffAnchor(span?.id ?? '');
|
|
|
|
// If clicked cell has no line number (e.g., clicking on the empty side of a deletion/addition),
|
|
// try to find the line number from the sibling cell on the same row
|
|
if (!info) {
|
|
const row = cell.closest('tr');
|
|
if (!row) return;
|
|
// Find the other line number cell in the same row
|
|
const siblingCell = cell.classList.contains('lines-num-old') ?
|
|
row.querySelector<HTMLElement>('td.lines-num-new') :
|
|
row.querySelector<HTMLElement>('td.lines-num-old');
|
|
if (siblingCell) {
|
|
span = siblingCell.querySelector<HTMLSpanElement>('span[id^="diff-"]');
|
|
info = parseDiffAnchor(span?.id ?? '');
|
|
}
|
|
if (!info) return;
|
|
}
|
|
|
|
const container = cell.closest<HTMLElement>('.diff-file-box');
|
|
if (!container) return;
|
|
|
|
e.preventDefault();
|
|
|
|
// Check if clicking on a single already-selected line without shift key - deselect it
|
|
if (!e.shiftKey) {
|
|
const clickedRow = cell.closest('tr');
|
|
if (clickedRow?.classList.contains('active')) {
|
|
// Check if this is a single-line selection by checking if it's the only selected line
|
|
const selectedRows = container.querySelectorAll('.code-diff tr.active');
|
|
if (selectedRows.length === 1) {
|
|
// This is a single selected line, deselect it
|
|
clickedRow.classList.remove('active');
|
|
diffSelectionStart = null;
|
|
// Remove hash from URL completely
|
|
window.history.replaceState(null, '', window.location.pathname + window.location.search);
|
|
window.getSelection()?.removeAllRanges();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
let rangeStart: DiffAnchorInfo = info;
|
|
if (e.shiftKey && diffSelectionStart &&
|
|
diffSelectionStart.container === container &&
|
|
diffSelectionStart.fragment === info.fragment) {
|
|
rangeStart = diffSelectionStart;
|
|
}
|
|
|
|
const range: DiffSelectionRange = {
|
|
fragment: info.fragment,
|
|
startSide: rangeStart.side,
|
|
startLine: rangeStart.line,
|
|
endSide: info.side,
|
|
endLine: info.line,
|
|
};
|
|
|
|
if (applyDiffLineSelection(container, range)) {
|
|
updateDiffHash(range);
|
|
if (!e.shiftKey || !diffSelectionStart || diffSelectionStart.container !== container || diffSelectionStart.fragment !== info.fragment) {
|
|
diffSelectionStart = {...info, container};
|
|
}
|
|
window.getSelection()?.removeAllRanges();
|
|
}
|
|
}
|
|
|
|
export function initDiffLineSelection() {
|
|
addDelegatedEventListener<HTMLElement, MouseEvent>(document, 'click', diffLineNumberCellSelector, (cell, e) => {
|
|
if (e.defaultPrevented) return;
|
|
handleDiffLineNumberClick(cell, e);
|
|
});
|
|
window.addEventListener('hashchange', () => {
|
|
highlightDiffSelectionFromHash();
|
|
});
|
|
highlightDiffSelectionFromHash();
|
|
}
|