Welcome to mirror list, hosted at ThFree Co, Russian Federation.

diffs_interopability_api.js « diffs « frontend_integration « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: adfb93f27a2414214606e37fe1a7455ab8b603f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * This helper module contains the API expectation of the diff output HTML.
 *
 * This helps simulate what third-party HTML scrapers, such as Sourcegraph,
 * should be looking for.
 */
export const getDiffCodePart = (codeElement) => {
  const el = codeElement.closest('[data-interop-type]');

  return el.dataset.interopType === 'old' ? 'base' : 'head';
};

export const getCodeElementFromLineNumber = (codeView, line, part) => {
  const type = part === 'base' ? 'old' : 'new';

  const el = codeView.querySelector(`[data-interop-${type}-line="${line}"]`);

  return el ? el.querySelector('span.line') : null;
};

export const getLineNumberFromCodeElement = (codeElement) => {
  const el = codeElement.closest('[data-interop-line]');

  return parseInt(el.dataset.interopLine || '', 10);
};