debian-mirror-gitlab/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue

163 lines
4.4 KiB
Vue
Raw Normal View History

2019-12-21 20:55:43 +05:30
<script>
2020-11-24 15:15:51 +05:30
import { GlTooltipDirective, GlButton, GlLink, GlLoadingIcon } from '@gitlab/ui';
2019-12-21 20:55:43 +05:30
import CiStatus from '~/vue_shared/components/ci_icon.vue';
2020-07-28 23:09:34 +05:30
import { __, sprintf } from '~/locale';
2021-01-29 00:20:46 +05:30
import { UPSTREAM, DOWNSTREAM } from './constants';
2019-12-21 20:55:43 +05:30
export default {
directives: {
GlTooltip: GlTooltipDirective,
},
components: {
CiStatus,
2020-10-24 23:57:45 +05:30
GlButton,
2020-11-24 15:15:51 +05:30
GlLink,
GlLoadingIcon,
2019-12-21 20:55:43 +05:30
},
props: {
2021-01-29 00:20:46 +05:30
columnTitle: {
type: String,
required: true,
},
2019-12-21 20:55:43 +05:30
pipeline: {
type: Object,
required: true,
},
2020-03-13 15:44:24 +05:30
projectId: {
type: Number,
required: true,
},
2021-01-29 00:20:46 +05:30
type: {
2020-03-13 15:44:24 +05:30
type: String,
required: true,
},
2019-12-21 20:55:43 +05:30
},
2020-11-24 15:15:51 +05:30
data() {
return {
expanded: false,
};
},
2019-12-21 20:55:43 +05:30
computed: {
tooltipText() {
2020-07-28 23:09:34 +05:30
return `${this.downstreamTitle} #${this.pipeline.id} - ${this.pipelineStatus.label}
${this.sourceJobInfo}`;
2019-12-21 20:55:43 +05:30
},
buttonId() {
return `js-linked-pipeline-${this.pipeline.id}`;
},
pipelineStatus() {
return this.pipeline.details.status;
},
projectName() {
return this.pipeline.project.name;
},
2020-07-28 23:09:34 +05:30
downstreamTitle() {
return this.childPipeline ? __('child-pipeline') : this.pipeline.project.name;
},
2020-03-13 15:44:24 +05:30
parentPipeline() {
2021-01-29 00:20:46 +05:30
return this.isUpstream && this.isSameProject;
2020-03-13 15:44:24 +05:30
},
childPipeline() {
2021-01-29 00:20:46 +05:30
return this.isDownstream && this.isSameProject;
2020-03-13 15:44:24 +05:30
},
label() {
2020-07-28 23:09:34 +05:30
if (this.parentPipeline) {
return __('Parent');
} else if (this.childPipeline) {
return __('Child');
}
return __('Multi-project');
2020-03-13 15:44:24 +05:30
},
2020-07-28 23:09:34 +05:30
isDownstream() {
2021-01-29 00:20:46 +05:30
return this.type === DOWNSTREAM;
},
isUpstream() {
return this.type === UPSTREAM;
},
isSameProject() {
return this.projectId === this.pipeline.project.id;
2020-03-13 15:44:24 +05:30
},
2020-07-28 23:09:34 +05:30
sourceJobInfo() {
return this.isDownstream
? sprintf(__('Created by %{job}'), { job: this.pipeline.source_job.name })
: '';
2020-03-13 15:44:24 +05:30
},
2020-11-24 15:15:51 +05:30
expandedIcon() {
2021-01-29 00:20:46 +05:30
if (this.isUpstream) {
2020-11-24 15:15:51 +05:30
return this.expanded ? 'angle-right' : 'angle-left';
}
return this.expanded ? 'angle-left' : 'angle-right';
},
expandButtonPosition() {
2021-01-29 00:20:46 +05:30
return this.isUpstream ? 'gl-left-0 gl-border-r-1!' : 'gl-right-0 gl-border-l-1!';
2020-11-24 15:15:51 +05:30
},
2019-12-21 20:55:43 +05:30
},
methods: {
onClickLinkedPipeline() {
this.$root.$emit('bv::hide::tooltip', this.buttonId);
2020-11-24 15:15:51 +05:30
this.expanded = !this.expanded;
2020-03-13 15:44:24 +05:30
this.$emit('pipelineClicked', this.$refs.linkedPipeline);
2020-11-24 15:15:51 +05:30
this.$emit('pipelineExpandToggle', this.pipeline.source_job.name, this.expanded);
2020-03-13 15:44:24 +05:30
},
hideTooltips() {
this.$root.$emit('bv::hide::tooltip');
2019-12-21 20:55:43 +05:30
},
2020-07-28 23:09:34 +05:30
onDownstreamHovered() {
this.$emit('downstreamHovered', this.pipeline.source_job.name);
},
onDownstreamHoverLeave() {
this.$emit('downstreamHovered', '');
},
2019-12-21 20:55:43 +05:30
},
};
</script>
<template>
2020-03-13 15:44:24 +05:30
<li
ref="linkedPipeline"
2020-11-24 15:15:51 +05:30
v-gl-tooltip
2020-03-13 15:44:24 +05:30
class="linked-pipeline build"
2020-11-24 15:15:51 +05:30
:title="tooltipText"
2020-07-28 23:09:34 +05:30
:class="{ 'downstream-pipeline': isDownstream }"
data-qa-selector="child_pipeline"
@mouseover="onDownstreamHovered"
@mouseleave="onDownstreamHoverLeave"
2020-03-13 15:44:24 +05:30
>
2020-11-24 15:15:51 +05:30
<div
class="gl-relative gl-bg-white gl-p-3 gl-border-solid gl-border-gray-100 gl-border-1"
2021-01-29 00:20:46 +05:30
:class="{ 'gl-pl-9': isUpstream }"
2019-12-21 20:55:43 +05:30
>
2020-11-24 15:15:51 +05:30
<div class="gl-display-flex">
<ci-status
v-if="!pipeline.isLoading"
:status="pipelineStatus"
css-classes="gl-top-0 gl-pr-2"
/>
<div v-else class="gl-pr-2"><gl-loading-icon inline /></div>
<div class="gl-display-flex gl-flex-direction-column gl-w-13">
<span class="gl-text-truncate">
{{ downstreamTitle }}
</span>
<div class="gl-text-truncate">
<gl-link class="gl-text-blue-500!" :href="pipeline.path" data-testid="pipelineLink"
>#{{ pipeline.id }}</gl-link
>
</div>
</div>
</div>
2020-07-28 23:09:34 +05:30
<div class="gl-pt-2">
<span class="badge badge-primary" data-testid="downstream-pipeline-label">{{ label }}</span>
2020-03-13 15:44:24 +05:30
</div>
2020-11-24 15:15:51 +05:30
<gl-button
:id="buttonId"
class="gl-absolute gl-top-0 gl-bottom-0 gl-shadow-none! gl-rounded-0!"
:class="`js-pipeline-expand-${pipeline.id} ${expandButtonPosition}`"
:icon="expandedIcon"
data-testid="expandPipelineButton"
data-qa-selector="expand_pipeline_button"
@click="onClickLinkedPipeline"
/>
</div>
2019-12-21 20:55:43 +05:30
</li>
</template>