2020-10-24 23:57:45 +05:30
import { s _ _ } from '~/locale' ;
2021-11-18 22:05:49 +05:30
import { stateToComponentMap as classStateMap , stateKey } from './stores/state_maps' ;
2020-10-24 23:57:45 +05:30
2020-07-28 23:09:34 +05:30
export const SUCCESS = 'success' ;
2019-07-07 11:18:12 +05:30
export const WARNING = 'warning' ;
export const DANGER = 'danger' ;
2020-10-24 23:57:45 +05:30
export const INFO = 'info' ;
2021-09-04 01:27:46 +05:30
export const CONFIRM = 'confirm' ;
2019-09-04 21:01:54 +05:30
export const MWPS _MERGE _STRATEGY = 'merge_when_pipeline_succeeds' ;
2019-12-04 20:38:33 +05:30
export const MTWPS _MERGE _STRATEGY = 'add_to_merge_train_when_pipeline_succeeds' ;
2019-09-04 21:01:54 +05:30
export const MT _MERGE _STRATEGY = 'merge_train' ;
2021-11-11 11:23:49 +05:30
export const PIPELINE _FAILED _STATE = 'failed' ;
2019-12-04 20:38:33 +05:30
export const AUTO _MERGE _STRATEGIES = [ MWPS _MERGE _STRATEGY , MTWPS _MERGE _STRATEGY , MT _MERGE _STRATEGY ] ;
2020-10-24 23:57:45 +05:30
// SP - "Suggest Pipelines"
export const SP _TRACK _LABEL = 'no_pipeline_noticed' ;
export const SP _LINK _TRACK _EVENT = 'click_link' ;
export const SP _SHOW _TRACK _EVENT = 'click_button' ;
export const SP _LINK _TRACK _VALUE = 30 ;
export const SP _SHOW _TRACK _VALUE = 10 ;
export const SP _HELP _CONTENT = s _ _ (
` mrWidget|Use %{linkStart}CI pipelines to test your code%{linkEnd} by simply adding a GitLab CI configuration file to your project. It only takes a minute to make your code more secure and robust. ` ,
) ;
export const SP _HELP _URL = 'https://about.gitlab.com/blog/2019/07/12/guide-to-ci-cd-pipelines/' ;
export const SP _ICON _NAME = 'status_notfound' ;
2021-06-08 01:23:25 +05:30
export const MERGE _ACTIVE _STATUS _PHRASES = [
{
message : s _ _ ( 'mrWidget|Merging! Drum roll, please…' ) ,
emoji : 'drum' ,
} ,
{
message : s _ _ ( "mrWidget|Merging! We're almost there…" ) ,
emoji : 'sparkles' ,
} ,
{
message : s _ _ ( 'mrWidget|Merging! Changes will land soon…' ) ,
emoji : 'airplane_arriving' ,
} ,
{
message : s _ _ ( 'mrWidget|Merging! Changes are being shipped…' ) ,
emoji : 'ship' ,
} ,
{
message : s _ _ ( "mrWidget|Merging! Everything's good…" ) ,
emoji : 'relieved' ,
} ,
{
message : s _ _ ( 'mrWidget|Merging! This is going to be great…' ) ,
emoji : 'heart_eyes' ,
} ,
] ;
2021-11-18 22:05:49 +05:30
const STATE _MACHINE = {
states : {
IDLE : 'IDLE' ,
MERGING : 'MERGING' ,
AUTO _MERGE : 'AUTO_MERGE' ,
} ,
transitions : {
MERGE : 'start-merge' ,
AUTO _MERGE : 'start-auto-merge' ,
MERGE _FAILURE : 'merge-failed' ,
MERGED : 'merge-done' ,
} ,
} ;
const { states , transitions } = STATE _MACHINE ;
STATE _MACHINE . definition = {
initial : states . IDLE ,
states : {
[ states . IDLE ] : {
on : {
[ transitions . MERGE ] : states . MERGING ,
[ transitions . AUTO _MERGE ] : states . AUTO _MERGE ,
} ,
} ,
[ states . MERGING ] : {
on : {
[ transitions . MERGED ] : states . IDLE ,
[ transitions . MERGE _FAILURE ] : states . IDLE ,
} ,
} ,
[ states . AUTO _MERGE ] : {
on : {
[ transitions . MERGED ] : states . IDLE ,
[ transitions . MERGE _FAILURE ] : states . IDLE ,
} ,
} ,
} ,
} ;
export const stateToTransitionMap = {
[ stateKey . merging ] : transitions . MERGE ,
[ stateKey . merged ] : transitions . MERGED ,
[ stateKey . autoMergeEnabled ] : transitions . AUTO _MERGE ,
} ;
export const stateToComponentMap = {
[ states . MERGING ] : classStateMap [ stateKey . merging ] ,
[ states . AUTO _MERGE ] : classStateMap [ stateKey . autoMergeEnabled ] ,
} ;
export const EXTENSION _ICONS = {
failed : 'failed' ,
warning : 'warning' ,
success : 'success' ,
neutral : 'neutral' ,
error : 'error' ,
notice : 'notice' ,
severityCritical : 'severityCritical' ,
severityHigh : 'severityHigh' ,
severityMedium : 'severityMedium' ,
severityLow : 'severityLow' ,
severityInfo : 'severityInfo' ,
severityUnknown : 'severityUnknown' ,
} ;
export const EXTENSION _ICON _NAMES = {
failed : 'status-failed' ,
warning : 'status-alert' ,
success : 'status-success' ,
neutral : 'status-neutral' ,
error : 'status-alert' ,
notice : 'status-alert' ,
severityCritical : 'severity-critical' ,
severityHigh : 'severity-high' ,
severityMedium : 'severity-medium' ,
severityLow : 'severity-low' ,
severityInfo : 'severity-info' ,
severityUnknown : 'severity-unknown' ,
} ;
export const EXTENSION _ICON _CLASS = {
failed : 'gl-text-red-500' ,
warning : 'gl-text-orange-500' ,
success : 'gl-text-green-500' ,
neutral : 'gl-text-gray-400' ,
error : 'gl-text-red-500' ,
notice : 'gl-text-gray-500' ,
severityCritical : 'gl-text-red-800' ,
severityHigh : 'gl-text-red-600' ,
severityMedium : 'gl-text-orange-400' ,
severityLow : 'gl-text-orange-300' ,
severityInfo : 'gl-text-blue-400' ,
severityUnknown : 'gl-text-gray-400' ,
} ;
export { STATE _MACHINE } ;