debian-mirror-gitlab/app/assets/javascripts/pipeline_editor/constants.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

126 lines
4.9 KiB
JavaScript
Raw Normal View History

2022-05-07 20:08:51 +05:30
import { s__ } from '~/locale';
2021-04-29 21:17:54 +05:30
// Values for CI_CONFIG_STATUS_* comes from lint graphQL
2021-02-22 17:27:13 +05:30
export const CI_CONFIG_STATUS_INVALID = 'INVALID';
2021-04-29 21:17:54 +05:30
export const CI_CONFIG_STATUS_VALID = 'VALID';
// Values for EDITOR_APP_STATUS_* are frontend specifics and
// represent the global state of the pipeline editor app.
export const EDITOR_APP_STATUS_EMPTY = 'EMPTY';
export const EDITOR_APP_STATUS_INVALID = CI_CONFIG_STATUS_INVALID;
2022-03-02 08:16:31 +05:30
export const EDITOR_APP_STATUS_LINT_UNAVAILABLE = 'LINT_DOWN';
2021-04-29 21:17:54 +05:30
export const EDITOR_APP_STATUS_LOADING = 'LOADING';
export const EDITOR_APP_STATUS_VALID = CI_CONFIG_STATUS_VALID;
2021-03-11 19:13:27 +05:30
2021-12-11 22:18:48 +05:30
export const EDITOR_APP_VALID_STATUSES = [
EDITOR_APP_STATUS_EMPTY,
EDITOR_APP_STATUS_INVALID,
2022-03-02 08:16:31 +05:30
EDITOR_APP_STATUS_LINT_UNAVAILABLE,
2021-12-11 22:18:48 +05:30
EDITOR_APP_STATUS_LOADING,
EDITOR_APP_STATUS_VALID,
];
2021-03-11 19:13:27 +05:30
export const COMMIT_FAILURE = 'COMMIT_FAILURE';
export const COMMIT_SUCCESS = 'COMMIT_SUCCESS';
2022-04-04 11:22:00 +05:30
export const COMMIT_SUCCESS_WITH_REDIRECT = 'COMMIT_SUCCESS_WITH_REDIRECT';
2021-03-11 19:13:27 +05:30
export const DEFAULT_FAILURE = 'DEFAULT_FAILURE';
2021-06-08 01:23:25 +05:30
export const DEFAULT_SUCCESS = 'DEFAULT_SUCCESS';
2021-03-11 19:13:27 +05:30
export const LOAD_FAILURE_UNKNOWN = 'LOAD_FAILURE_UNKNOWN';
2021-12-11 22:18:48 +05:30
export const PIPELINE_FAILURE = 'PIPELINE_FAILURE';
2021-03-11 19:13:27 +05:30
export const CREATE_TAB = 'CREATE_TAB';
export const LINT_TAB = 'LINT_TAB';
export const MERGED_TAB = 'MERGED_TAB';
2022-07-23 23:45:48 +05:30
export const VALIDATE_TAB = 'VALIDATE_TAB';
2021-03-11 19:13:27 +05:30
export const VISUALIZE_TAB = 'VISUALIZE_TAB';
2021-12-11 22:18:48 +05:30
export const TABS_INDEX = {
[CREATE_TAB]: '0',
[VISUALIZE_TAB]: '1',
[LINT_TAB]: '2',
2022-07-23 23:45:48 +05:30
[VALIDATE_TAB]: '3',
[MERGED_TAB]: '4',
2021-12-11 22:18:48 +05:30
};
export const TAB_QUERY_PARAM = 'tab';
2021-04-17 20:07:23 +05:30
export const COMMIT_ACTION_CREATE = 'CREATE';
export const COMMIT_ACTION_UPDATE = 'UPDATE';
2021-06-08 01:23:25 +05:30
export const BRANCH_PAGINATION_LIMIT = 20;
export const BRANCH_SEARCH_DEBOUNCE = '500';
2022-05-07 20:08:51 +05:30
export const SOURCE_EDITOR_DEBOUNCE = 500;
2021-09-04 01:27:46 +05:30
2022-07-16 23:28:13 +05:30
export const FILE_TREE_DISPLAY_KEY = 'pipeline_editor_file_tree_display';
export const FILE_TREE_POPOVER_DISMISSED_KEY = 'pipeline_editor_file_tree_popover_dismissed';
export const FILE_TREE_TIP_DISMISSED_KEY = 'pipeline_editor_file_tree_tip_dismissed';
2021-09-04 01:27:46 +05:30
export const STARTER_TEMPLATE_NAME = 'Getting-Started';
2021-09-30 23:02:18 +05:30
2022-07-23 23:45:48 +05:30
export const CI_EXAMPLES_LINK = 'CI_EXAMPLES_LINK';
export const CI_HELP_LINK = 'CI_HELP_LINK';
export const CI_NEEDS_LINK = 'CI_NEEDS_LINK';
export const CI_RUNNERS_LINK = 'CI_RUNNERS_LINK';
export const CI_YAML_LINK = 'CI_YAML_LINK';
2021-09-30 23:02:18 +05:30
export const pipelineEditorTrackingOptions = {
label: 'pipeline_editor',
actions: {
2022-07-23 23:45:48 +05:30
browseTemplates: 'browse_templates',
closeHelpDrawer: 'close_help_drawer',
helpDrawerLinks: {
[CI_EXAMPLES_LINK]: 'visit_help_drawer_link_ci_examples',
[CI_HELP_LINK]: 'visit_help_drawer_link_ci_help',
[CI_NEEDS_LINK]: 'visit_help_drawer_link_needs',
[CI_RUNNERS_LINK]: 'visit_help_drawer_link_runners',
[CI_YAML_LINK]: 'visit_help_drawer_link_yaml',
},
openHelpDrawer: 'open_help_drawer',
2021-09-30 23:02:18 +05:30
},
};
export const TEMPLATE_REPOSITORY_URL =
'https://gitlab.com/gitlab-org/gitlab-foss/tree/master/lib/gitlab/ci/templates';
2021-11-11 11:23:49 +05:30
export const COMMIT_SHA_POLL_INTERVAL = 1000;
2022-05-07 20:08:51 +05:30
export const RUNNERS_AVAILABILITY_SECTION_EXPERIMENT_NAME = 'runners_availability_section';
export const RUNNERS_SETTINGS_LINK_CLICKED_EVENT = 'runners_settings_link_clicked';
export const RUNNERS_DOCUMENTATION_LINK_CLICKED_EVENT = 'runners_documentation_link_clicked';
export const RUNNERS_SETTINGS_BUTTON_CLICKED_EVENT = 'runners_settings_button_clicked';
export const I18N = {
title: s__('Pipelines|Get started with GitLab CI/CD'),
runners: {
title: s__('Pipelines|Runners are available to run your jobs now'),
subtitle: s__(
'Pipelines|GitLab Runner is an application that works with GitLab CI/CD to run jobs in a pipeline. There are active runners available to run your jobs right now. If you prefer, you can %{settingsLinkStart}configure your runners%{settingsLinkEnd} or %{docsLinkStart}learn more%{docsLinkEnd} about runners.',
),
},
noRunners: {
title: s__('Pipelines|No runners detected'),
subtitle: s__(
'Pipelines|A GitLab Runner is an application that works with GitLab CI/CD to run jobs in a pipeline. Install GitLab Runner and register your own runners to get started with CI/CD.',
),
cta: s__('Pipelines|Install GitLab Runner'),
},
learnBasics: {
title: s__('Pipelines|Learn the basics of pipelines and .yml files'),
subtitle: s__(
'Pipelines|Use a sample %{codeStart}.gitlab-ci.yml%{codeEnd} template file to explore how CI/CD works.',
),
gettingStarted: {
title: s__('Pipelines|"Hello world" with GitLab CI'),
description: s__(
'Pipelines|Get familiar with GitLab CI syntax by setting up a simple pipeline running a "Hello world" script to see how it runs, explore how CI/CD works.',
),
cta: s__('Pipelines|Try test template'),
},
},
templates: {
title: s__('Pipelines|Ready to set up CI/CD for your project?'),
subtitle: s__(
"Pipelines|Use a template based on your project's language or framework to get started with GitLab CI/CD.",
),
},
};