summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipelines/components/graph/linked_pipelines_column_legacy.vue
blob: 39baeb6e1c35ea5f4adf657be27bd27a98e1ed47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<script>
import { reportToSentry } from '../../utils';
import { UPSTREAM } from './constants';
import LinkedPipeline from './linked_pipeline.vue';

export default {
  components: {
    LinkedPipeline,
  },
  props: {
    columnTitle: {
      type: String,
      required: true,
    },
    linkedPipelines: {
      type: Array,
      required: true,
    },
    type: {
      type: String,
      required: true,
    },
    projectId: {
      type: Number,
      required: true,
    },
  },
  computed: {
    columnClass() {
      const positionValues = {
        right: 'gl-ml-11',
        left: 'gl-mr-7',
      };
      return `graph-position-${this.graphPosition} ${positionValues[this.graphPosition]}`;
    },
    graphPosition() {
      return this.isUpstream ? 'left' : 'right';
    },
    isExpanded() {
      return this.pipeline?.isExpanded || false;
    },
    isUpstream() {
      return this.type === UPSTREAM;
    },
  },
  errorCaptured(err, _vm, info) {
    reportToSentry('linked_pipelines_column_legacy', `error: ${err}, info: ${info}`);
  },
  methods: {
    onPipelineClick(downstreamNode, pipeline, index) {
      this.$emit('linkedPipelineClick', pipeline, index, downstreamNode);
    },
    onDownstreamHovered(jobName) {
      this.$emit('downstreamHovered', jobName);
    },
    onPipelineExpandToggle(jobName, expanded) {
      // Highlighting only applies to downstream pipelines
      if (this.isUpstream) {
        return;
      }

      this.$emit('pipelineExpandToggle', jobName, expanded);
    },
  },
};
</script>

<template>
  <div :class="columnClass" class="stage-column linked-pipelines-column">
    <div class="stage-name linked-pipelines-column-title">{{ columnTitle }}</div>
    <div v-if="isUpstream" class="cross-project-triangle"></div>
    <ul>
      <li v-for="(pipeline, index) in linkedPipelines" :key="pipeline.id">
        <linked-pipeline
          :class="{
            active: pipeline.isExpanded,
            'left-connector': pipeline.isExpanded && graphPosition === 'left',
          }"
          :pipeline="pipeline"
          :column-title="columnTitle"
          :project-id="projectId"
          :type="type"
          :expanded="isExpanded"
          @pipelineClicked="onPipelineClick($event, pipeline, index)"
          @downstreamHovered="onDownstreamHovered"
          @pipelineExpandToggle="onPipelineExpandToggle"
        />
      </li>
    </ul>
  </div>
</template>