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 _SHOW _TRACK _EVENT = 'click_button' ;
export const SP _SHOW _TRACK _VALUE = 10 ;
export const SP _HELP _CONTENT = s _ _ (
2021-12-11 22:18:48 +05:30
` mrWidget|GitLab %{linkStart}CI/CD can automatically build, test, and deploy your application.%{linkEnd} It only takes a few minutes to get started, and we can help you create a pipeline configuration file. ` ,
2020-10-24 23:57:45 +05:30
) ;
2021-12-11 22:18:48 +05:30
export const SP _HELP _URL = 'https://docs.gitlab.com/ee/ci/quick_start/' ;
2020-10-24 23:57:45 +05:30
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' ,
} ,
2022-01-26 12:08:38 +05:30
{
message : s _ _ ( 'mrWidget|Merging! Lift-off in 5… 4… 3…' ) ,
emoji : 'rocket' ,
} ,
{
message : s _ _ ( 'mrWidget|Merging! The changes are leaving the station…' ) ,
emoji : 'bullettrain_front' ,
} ,
{
message : s _ _ ( 'mrWidget|Merging! Take a deep breath and relax…' ) ,
emoji : 'sunglasses' ,
} ,
2021-06-08 01:23:25 +05:30
] ;
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' ,
} ;
2022-01-26 12:08:38 +05:30
export const EXTENSION _SUMMARY _FAILED _CLASS = 'gl-text-red-500' ;
export const EXTENSION _SUMMARY _NEUTRAL _CLASS = 'gl-text-gray-700' ;
2021-11-18 22:05:49 +05:30
export { STATE _MACHINE } ;