Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/pipelines/components/graph/utils.js')
-rw-r--r--app/assets/javascripts/pipelines/components/graph/utils.js116
1 files changed, 0 insertions, 116 deletions
diff --git a/app/assets/javascripts/pipelines/components/graph/utils.js b/app/assets/javascripts/pipelines/components/graph/utils.js
deleted file mode 100644
index c888c8a5537..00000000000
--- a/app/assets/javascripts/pipelines/components/graph/utils.js
+++ /dev/null
@@ -1,116 +0,0 @@
-import { isEmpty } from 'lodash';
-import { getIdFromGraphQLId, etagQueryHeaders } from '~/graphql_shared/utils';
-import { reportToSentry } from '../../utils';
-import { listByLayers } from '../parsing_utils';
-import { unwrapStagesWithNeedsAndLookup } from '../unwrapping_utils';
-import { beginPerfMeasure, finishPerfMeasureAndSend } from './perf_utils';
-
-export { toggleQueryPollingByVisibility } from '~/graphql_shared/utils';
-
-const addMulti = (mainPipelineProjectPath, linkedPipeline) => {
- return {
- ...linkedPipeline,
- multiproject: mainPipelineProjectPath !== linkedPipeline.project.fullPath,
- };
-};
-
-const calculatePipelineLayersInfo = (pipeline, componentName, metricsPath) => {
- const shouldCollectMetrics = Boolean(metricsPath);
-
- if (shouldCollectMetrics) {
- beginPerfMeasure();
- }
-
- let layers = null;
-
- try {
- layers = listByLayers(pipeline);
-
- if (shouldCollectMetrics) {
- finishPerfMeasureAndSend(layers.linksData.length, layers.numGroups, metricsPath);
- }
- } catch (err) {
- reportToSentry(componentName, err);
- }
-
- return layers;
-};
-
-const getQueryHeaders = (etagResource) =>
- etagQueryHeaders('verify/ci/pipeline-graph', etagResource);
-
-const serializeGqlErr = (gqlError) => {
- const { locations = [], message = '', path = [] } = gqlError;
-
- // eslint-disable-next-line @gitlab/require-i18n-strings
- return `
- ${message}.
- Locations: ${locations
- .flatMap((loc) => Object.entries(loc))
- .flat(2)
- .join(' ')}.
- Path: ${path.join(', ')}.
- `;
-};
-
-const serializeLoadErrors = (errors) => {
- const { gqlError, graphQLErrors, networkError, message } = errors;
-
- if (!isEmpty(graphQLErrors)) {
- return graphQLErrors.map((err) => serializeGqlErr(err)).join('; ');
- }
-
- if (!isEmpty(gqlError)) {
- return serializeGqlErr(gqlError);
- }
-
- if (!isEmpty(networkError)) {
- return `Network error: ${networkError.message}`; // eslint-disable-line @gitlab/require-i18n-strings
- }
-
- return message;
-};
-
-const transformId = (linkedPipeline) => {
- return { ...linkedPipeline, id: getIdFromGraphQLId(linkedPipeline.id) };
-};
-
-const unwrapPipelineData = (mainPipelineProjectPath, data) => {
- if (!data?.project?.pipeline) {
- return null;
- }
-
- const { pipeline } = data.project;
-
- const {
- upstream,
- downstream,
- stages: { nodes: stages },
- } = pipeline;
-
- const { stages: updatedStages, lookup } = unwrapStagesWithNeedsAndLookup(stages);
-
- return {
- ...pipeline,
- id: getIdFromGraphQLId(pipeline.id),
- stages: updatedStages,
- stagesLookup: lookup,
- upstream: upstream
- ? [upstream].map(addMulti.bind(null, mainPipelineProjectPath)).map(transformId)
- : [],
- downstream: downstream
- ? downstream.nodes.map(addMulti.bind(null, mainPipelineProjectPath)).map(transformId)
- : [],
- };
-};
-
-const validateConfigPaths = (value) => value.graphqlResourceEtag?.length > 0;
-
-export {
- calculatePipelineLayersInfo,
- getQueryHeaders,
- serializeGqlErr,
- serializeLoadErrors,
- unwrapPipelineData,
- validateConfigPaths,
-};