debian-mirror-gitlab/app/assets/javascripts/clusters/agents/constants.js

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

71 lines
2.1 KiB
JavaScript
Raw Normal View History

2022-01-26 12:08:38 +05:30
import { s__ } from '~/locale';
2022-10-11 01:57:18 +05:30
import { helpPagePath } from '~/helpers/help_page_helper';
2022-01-26 12:08:38 +05:30
2021-11-18 22:05:49 +05:30
export const MAX_LIST_COUNT = 25;
2022-01-26 12:08:38 +05:30
export const EVENTS_STORED_DAYS = 7;
export const EVENT_DETAILS = {
token_created: {
eventTypeIcon: 'token',
title: s__('ClusterAgents|%{tokenName} created'),
body: s__('ClusterAgents|Token created by %{userName}'),
},
token_revoked: {
eventTypeIcon: 'token',
title: s__('ClusterAgents|%{tokenName} revoked'),
body: s__('ClusterAgents|Token revoked by %{userName}'),
},
agent_connected: {
eventTypeIcon: 'connected',
title: s__('ClusterAgents|%{titleIcon}Connected'),
body: s__('ClusterAgents|Agent %{strongStart}connected%{strongEnd}'),
titleIcon: {
name: 'status-success',
2023-04-23 21:23:45 +05:30
class: 'gl-text-green-500',
2022-01-26 12:08:38 +05:30
},
},
agent_disconnected: {
eventTypeIcon: 'connected',
title: s__('ClusterAgents|%{titleIcon}Not connected'),
body: s__('ClusterAgents|Agent %{strongStart}disconnected%{strongEnd}'),
titleIcon: {
name: 'severity-critical',
2023-04-23 21:23:45 +05:30
class: 'gl-text-red-800',
2022-01-26 12:08:38 +05:30
},
},
};
export const DEFAULT_ICON = 'token';
2022-04-04 11:22:00 +05:30
export const TOKEN_STATUS_ACTIVE = 'ACTIVE';
2022-05-07 20:08:51 +05:30
export const CREATE_TOKEN_MODAL = 'create-token';
export const EVENT_LABEL_MODAL = 'agent_token_creation_modal';
export const EVENT_ACTIONS_OPEN = 'open_modal';
export const EVENT_ACTIONS_CLICK = 'click_button';
export const TOKEN_NAME_LIMIT = 255;
2022-07-16 23:28:13 +05:30
export const REVOKE_TOKEN_MODAL_ID = 'revoke-token-%{tokenName}';
2022-10-11 01:57:18 +05:30
export const INTEGRATION_STATUS_VALID_TOKEN = {
icon: 'status-success',
2023-04-23 21:23:45 +05:30
iconClass: 'gl-text-green-500',
2022-10-11 01:57:18 +05:30
text: s__('ClusterAgents|Valid access token'),
};
export const INTEGRATION_STATUS_NO_TOKEN = {
icon: 'status-alert',
2023-04-23 21:23:45 +05:30
iconClass: 'gl-text-red-500',
2022-10-11 01:57:18 +05:30
text: s__('ClusterAgents|No agent access token'),
};
export const INTEGRATION_STATUS_RESTRICTED_CI_CD = {
icon: 'information',
iconClass: 'text-info',
text: s__('ClusterAgents|CI/CD workflow with restricted access'),
helpUrl: helpPagePath('user/clusters/agent/ci_cd_workflow', {
anchor: 'restrict-project-and-group-access-by-using-impersonation',
}),
featureName: 'clusterAgentsCiImpersonation',
};