debian-mirror-gitlab/app/assets/javascripts/packages/list/constants.js

95 lines
2.5 KiB
JavaScript
Raw Normal View History

2020-10-24 23:57:45 +05:30
import { __, s__ } from '~/locale';
import { PackageType } from '../shared/constants';
export const FETCH_PACKAGES_LIST_ERROR_MESSAGE = __(
'Something went wrong while fetching the packages list.',
);
export const FETCH_PACKAGE_ERROR_MESSAGE = __('Something went wrong while fetching the package.');
export const DELETE_PACKAGE_SUCCESS_MESSAGE = __('Package deleted successfully');
export const DEFAULT_PAGE = 1;
export const DEFAULT_PAGE_SIZE = 20;
export const GROUP_PAGE_TYPE = 'groups';
export const LIST_KEY_NAME = 'name';
export const LIST_KEY_PROJECT = 'project_path';
export const LIST_KEY_VERSION = 'version';
2021-01-03 14:25:43 +05:30
export const LIST_KEY_PACKAGE_TYPE = 'type';
2020-10-24 23:57:45 +05:30
export const LIST_KEY_CREATED_AT = 'created_at';
export const LIST_KEY_ACTIONS = 'actions';
export const LIST_LABEL_NAME = __('Name');
export const LIST_LABEL_PROJECT = __('Project');
export const LIST_LABEL_VERSION = __('Version');
export const LIST_LABEL_PACKAGE_TYPE = __('Type');
2021-01-03 14:25:43 +05:30
export const LIST_LABEL_CREATED_AT = __('Published');
2020-10-24 23:57:45 +05:30
export const LIST_LABEL_ACTIONS = '';
export const ASCENDING_ODER = 'asc';
export const DESCENDING_ORDER = 'desc';
// The following is not translated because it is used to build a JavaScript exception error message
export const MISSING_DELETE_PATH_ERROR = 'Missing delete_api_path link';
2021-01-03 14:25:43 +05:30
export const SORT_FIELDS = [
2020-10-24 23:57:45 +05:30
{
orderBy: LIST_KEY_NAME,
2021-01-03 14:25:43 +05:30
label: LIST_LABEL_NAME,
2020-10-24 23:57:45 +05:30
},
{
orderBy: LIST_KEY_PROJECT,
2021-01-03 14:25:43 +05:30
label: LIST_LABEL_PROJECT,
2020-10-24 23:57:45 +05:30
},
{
orderBy: LIST_KEY_VERSION,
2021-01-03 14:25:43 +05:30
label: LIST_LABEL_VERSION,
2020-10-24 23:57:45 +05:30
},
{
2021-01-03 14:25:43 +05:30
orderBy: LIST_KEY_PACKAGE_TYPE,
2020-10-24 23:57:45 +05:30
label: LIST_LABEL_PACKAGE_TYPE,
},
{
orderBy: LIST_KEY_CREATED_AT,
2021-01-03 14:25:43 +05:30
label: LIST_LABEL_CREATED_AT,
2020-10-24 23:57:45 +05:30
},
];
export const PACKAGE_REGISTRY_TABS = [
{
title: __('All'),
type: null,
},
{
title: s__('PackageRegistry|Composer'),
type: PackageType.COMPOSER,
},
{
title: s__('PackageRegistry|Conan'),
type: PackageType.CONAN,
},
{
title: s__('PackageRegistry|Maven'),
type: PackageType.MAVEN,
},
{
title: s__('PackageRegistry|NPM'),
type: PackageType.NPM,
},
{
title: s__('PackageRegistry|NuGet'),
type: PackageType.NUGET,
},
{
2021-01-03 14:25:43 +05:30
title: s__('PackageRegistry|PyPI'),
2020-10-24 23:57:45 +05:30
type: PackageType.PYPI,
},
];
2021-01-03 14:25:43 +05:30
export const LIST_TITLE_TEXT = s__('PackageRegistry|Package Registry');
export const LIST_INTRO_TEXT = s__(
'PackageRegistry|Publish and share packages for a variety of common package managers. %{docLinkStart}More information%{docLinkEnd}',
);