summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages/shared/utils.js
blob: bd35a47ca4dead62a4f4ee8e9549eab90122b547 (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
import { s__ } from '~/locale';
import { PackageType, TrackingCategories } from './constants';

export const packageTypeToTrackCategory = (type) =>
  // eslint-disable-next-line @gitlab/require-i18n-strings
  `UI::${TrackingCategories[type]}`;

export const beautifyPath = (path) => (path ? path.split('/').join(' / ') : '');

export const getPackageTypeLabel = (packageType) => {
  switch (packageType) {
    case PackageType.CONAN:
      return s__('PackageRegistry|Conan');
    case PackageType.MAVEN:
      return s__('PackageRegistry|Maven');
    case PackageType.NPM:
      return s__('PackageRegistry|npm');
    case PackageType.NUGET:
      return s__('PackageRegistry|NuGet');
    case PackageType.PYPI:
      return s__('PackageRegistry|PyPI');
    case PackageType.RUBYGEMS:
      return s__('PackageRegistry|RubyGems');
    case PackageType.COMPOSER:
      return s__('PackageRegistry|Composer');
    case PackageType.GENERIC:
      return s__('PackageRegistry|Generic');
    default:
      return null;
  }
};

export const getCommitLink = ({ project_path: projectPath, pipeline = {} }, isGroup = false) => {
  if (isGroup) {
    return `/${projectPath}/commit/${pipeline.sha}`;
  }

  return `../commit/${pipeline.sha}`;
};