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

merge_request.js « utils « diffs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a74c9fe7facd9fa71138b7d37d3d24e7354409a6 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import { ZERO_CHANGES_ALT_DISPLAY } from '../constants';

const endpointRE = /^(\/?(.+\/)+(.+)\/-\/merge_requests\/(\d+)).*$/i;
const SHA1RE = /([a-f0-9]{40})/g;

function getVersionInfo({ endpoint } = {}) {
  const dummyRoot = 'https://gitlab.com';
  const endpointUrl = new URL(endpoint, dummyRoot);
  const params = Object.fromEntries(endpointUrl.searchParams.entries());

  const { start_sha: startSha, diff_id: diffId } = params;

  return {
    diffId,
    startSha,
  };
}

export function updateChangesTabCount({
  count,
  badge = document.querySelector('.js-diffs-tab .gl-badge'),
} = {}) {
  if (badge) {
    // The purpose of this function is to assign to this parameter
    /* eslint-disable-next-line no-param-reassign */
    badge.textContent = count || ZERO_CHANGES_ALT_DISPLAY;
  }
}

export function getDerivedMergeRequestInformation({ endpoint } = {}) {
  let mrPath;
  let namespace;
  let project;
  let id;
  let diffId;
  let startSha;
  const matches = endpointRE.exec(endpoint);

  if (matches) {
    [, mrPath, namespace, project, id] = matches;
    ({ diffId, startSha } = getVersionInfo({ endpoint }));

    namespace = namespace.replace(/\/$/, '');
  }

  return {
    mrPath,
    namespace,
    project,
    id,
    diffId,
    startSha,
  };
}

export function extractFileHash({ input = '' } = {}) {
  const matches = input.match(SHA1RE);

  return matches?.[0];
}