summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci/pipeline_new/utils/format_refs.js
blob: e6d26b32d4721c13397c555a6d3ef9cc6831cd45 (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
import { __ } from '~/locale';
import { BRANCH_REF_TYPE, TAG_REF_TYPE } from '../constants';

function convertToListBoxItems(items) {
  return items.map(({ shortName, fullName }) => ({ text: shortName, value: fullName }));
}

export function formatRefs(refs, type) {
  let fullName;

  return refs.map((ref) => {
    if (type === BRANCH_REF_TYPE) {
      fullName = `refs/heads/${ref}`;
    } else if (type === TAG_REF_TYPE) {
      fullName = `refs/tags/${ref}`;
    }

    return {
      shortName: ref,
      fullName,
    };
  });
}

export const formatListBoxItems = (branches, tags) => {
  const finalResults = [];

  if (branches.length > 0) {
    finalResults.push({
      text: __('Branches'),
      options: convertToListBoxItems(formatRefs(branches, BRANCH_REF_TYPE)),
    });
  }

  if (tags.length > 0) {
    finalResults.push({
      text: __('Tags'),
      options: convertToListBoxItems(formatRefs(tags, TAG_REF_TYPE)),
    });
  }

  return finalResults;
};

export const searchByFullNameInListboxOptions = (fullName, listBox) => {
  const optionsToSearch =
    listBox.length > 1 ? listBox[0].options.concat(listBox[1].options) : listBox[0]?.options;

  const foundOption = optionsToSearch.find(({ value }) => value === fullName);

  return {
    shortName: foundOption.text,
    fullName: foundOption.value,
  };
};