debian-mirror-gitlab/app/assets/javascripts/reports/store/utils.js

61 lines
1.6 KiB
JavaScript
Raw Normal View History

2019-07-31 22:56:46 +05:30
import { sprintf, n__, s__, __ } from '~/locale';
2018-11-18 11:00:15 +05:30
import {
STATUS_FAILED,
STATUS_SUCCESS,
ICON_WARNING,
ICON_SUCCESS,
ICON_NOTFOUND,
} from '../constants';
const textBuilder = results => {
2020-03-09 13:42:32 +05:30
const { failed, errored, resolved, total } = results;
2018-11-18 11:00:15 +05:30
2020-03-09 13:42:32 +05:30
const failedOrErrored = (failed || 0) + (errored || 0);
const failedString = failedOrErrored
? n__('%d failed/error test result', '%d failed/error test results', failedOrErrored)
2018-11-18 11:00:15 +05:30
: null;
const resolvedString = resolved
? n__('%d fixed test result', '%d fixed test results', resolved)
: null;
const totalString = total ? n__('out of %d total test', 'out of %d total tests', total) : null;
let resultsString = s__('Reports|no changed test results');
2020-03-09 13:42:32 +05:30
if (failedOrErrored) {
2018-11-18 11:00:15 +05:30
if (resolved) {
resultsString = sprintf(s__('Reports|%{failedString} and %{resolvedString}'), {
failedString,
resolvedString,
});
} else {
resultsString = failedString;
}
} else if (resolved) {
resultsString = resolvedString;
}
return `${resultsString} ${totalString}`;
};
export const summaryTextBuilder = (name = '', results = {}) => {
const resultsString = textBuilder(results);
2019-07-31 22:56:46 +05:30
return sprintf(__('%{name} contained %{resultsString}'), { name, resultsString });
2018-11-18 11:00:15 +05:30
};
export const reportTextBuilder = (name = '', results = {}) => {
const resultsString = textBuilder(results);
2019-07-31 22:56:46 +05:30
return sprintf(__('%{name} found %{resultsString}'), { name, resultsString });
2018-11-18 11:00:15 +05:30
};
export const statusIcon = status => {
if (status === STATUS_FAILED) {
return ICON_WARNING;
}
if (status === STATUS_SUCCESS) {
return ICON_SUCCESS;
}
return ICON_NOTFOUND;
};