debian-mirror-gitlab/app/assets/javascripts/ci/reports/constants.js

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

25 lines
594 B
JavaScript
Raw Normal View History

2018-11-18 11:00:15 +05:30
export const LOADING = 'LOADING';
export const ERROR = 'ERROR';
export const SUCCESS = 'SUCCESS';
export const STATUS_FAILED = 'failed';
export const STATUS_SUCCESS = 'success';
2018-11-20 20:47:30 +05:30
export const STATUS_NEUTRAL = 'neutral';
2021-10-27 15:23:28 +05:30
export const STATUS_NOT_FOUND = 'not_found';
2018-11-20 20:47:30 +05:30
2018-11-18 11:00:15 +05:30
export const ICON_WARNING = 'warning';
2019-09-04 21:01:54 +05:30
export const status = {
2021-02-22 17:27:13 +05:30
LOADING,
ERROR,
SUCCESS,
2019-09-04 21:01:54 +05:30
};
2020-05-24 23:13:21 +05:30
2021-02-22 17:27:13 +05:30
/**
* Slot names for the ReportSection component, corresponding to the success,
* loading and error statuses.
*/
export const SLOT_SUCCESS = 'success';
export const SLOT_LOADING = 'loading';
export const SLOT_ERROR = 'error';