summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-15 06:08:54 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-15 06:08:54 +0000
commita552864a355f31c496e476ad4e57585aeab95a12 (patch)
tree4f64140ae93033e7b8e7ee683666d506eca41b68 /app
parent4998f4e2d82409aaebb4a0fb6f85ad130819da57 (diff)
downloadgitlab-ce-a552864a355f31c496e476ad4e57585aeab95a12.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/issuable_form.js17
-rw-r--r--app/assets/javascripts/pipelines/components/graph/graph_component.vue34
-rw-r--r--app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue49
-rw-r--r--app/assets/javascripts/pipelines/components/graph/linked_pipelines_column.vue14
-rw-r--r--app/assets/stylesheets/pages/pipelines.scss4
5 files changed, 97 insertions, 21 deletions
diff --git a/app/assets/javascripts/issuable_form.js b/app/assets/javascripts/issuable_form.js
index 1d0807dc15d..cf780556c8d 100644
--- a/app/assets/javascripts/issuable_form.js
+++ b/app/assets/javascripts/issuable_form.js
@@ -8,19 +8,23 @@ import AutoWidthDropdownSelect from './issuable/auto_width_dropdown_select';
import { parsePikadayDate, pikadayToString } from './lib/utils/datetime_utility';
import { queryToObject, objectToQuery } from './lib/utils/url_utility';
+const MR_SOURCE_BRANCH = 'merge_request[source_branch]';
+const MR_TARGET_BRANCH = 'merge_request[target_branch]';
+
function organizeQuery(obj, isFallbackKey = false) {
- const sourceBranch = 'merge_request[source_branch]';
- const targetBranch = 'merge_request[target_branch]';
+ if (!obj[MR_SOURCE_BRANCH] && !obj[MR_TARGET_BRANCH]) {
+ return obj;
+ }
if (isFallbackKey) {
return {
- [sourceBranch]: obj[sourceBranch],
+ [MR_SOURCE_BRANCH]: obj[MR_SOURCE_BRANCH],
};
}
return {
- [sourceBranch]: obj[sourceBranch],
- [targetBranch]: obj[targetBranch],
+ [MR_SOURCE_BRANCH]: obj[MR_SOURCE_BRANCH],
+ [MR_TARGET_BRANCH]: obj[MR_TARGET_BRANCH],
};
}
@@ -87,7 +91,8 @@ export default class IssuableForm {
}
initAutosave() {
- const searchTerm = format(document.location.search);
+ const { search } = document.location;
+ const searchTerm = format(search);
const fallbackKey = getFallbackKey();
this.autosave = new Autosave(
diff --git a/app/assets/javascripts/pipelines/components/graph/graph_component.vue b/app/assets/javascripts/pipelines/components/graph/graph_component.vue
index 429122c8083..4dc6e51d2fc 100644
--- a/app/assets/javascripts/pipelines/components/graph/graph_component.vue
+++ b/app/assets/javascripts/pipelines/components/graph/graph_component.vue
@@ -43,7 +43,7 @@ export default {
downstream: 'downstream',
data() {
return {
- triggeredTopIndex: 1,
+ downstreamMarginTop: null,
};
},
computed: {
@@ -77,26 +77,34 @@ export default {
expandedTriggered() {
return this.pipeline.triggered && this.pipeline.triggered.find(el => el.isExpanded);
},
-
- /**
- * Calculates the margin top of the clicked downstream pipeline by
- * adding the height of each linked pipeline and the margin
- */
- marginTop() {
- return `${this.triggeredTopIndex * 52}px`;
- },
pipelineTypeUpstream() {
return this.type !== this.$options.downstream && this.expandedTriggeredBy;
},
pipelineTypeDownstream() {
return this.type !== this.$options.upstream && this.expandedTriggered;
},
+ pipelineProjectId() {
+ return this.pipeline.project.id;
+ },
},
methods: {
- handleClickedDownstream(pipeline, clickedIndex) {
- this.triggeredTopIndex = clickedIndex;
+ handleClickedDownstream(pipeline, clickedIndex, downstreamNode) {
+ /**
+ * Calculates the margin top of the clicked downstream pipeline by
+ * subtracting the clicked downstream pipelines offsetTop by it's parent's
+ * offsetTop and then subtracting either 15 (if child) or 30 (if not a child)
+ * due to the height of node and stage name margin bottom.
+ */
+ this.downstreamMarginTop = this.calculateMarginTop(
+ downstreamNode,
+ downstreamNode.classList.contains('child-pipeline') ? 15 : 30,
+ );
+
this.$emit('onClickTriggered', this.pipeline, pipeline);
},
+ calculateMarginTop(downstreamNode, pixelDiff) {
+ return `${downstreamNode.offsetTop - downstreamNode.offsetParent.offsetTop - pixelDiff}px`;
+ },
hasOnlyOneJob(stage) {
return stage.groups.length === 1;
},
@@ -139,6 +147,7 @@ export default {
v-if="hasTriggeredBy"
:linked-pipelines="triggeredByPipelines"
:column-title="__('Upstream')"
+ :project-id="pipelineProjectId"
graph-position="left"
@linkedPipelineClick="
linkedPipeline => $emit('onClickTriggeredBy', pipeline, linkedPipeline)
@@ -174,6 +183,7 @@ export default {
v-if="hasTriggered"
:linked-pipelines="triggeredPipelines"
:column-title="__('Downstream')"
+ :project-id="pipelineProjectId"
graph-position="right"
@linkedPipelineClick="handleClickedDownstream"
/>
@@ -186,7 +196,7 @@ export default {
:is-loading="false"
:pipeline="expandedTriggered"
:is-linked-pipeline="true"
- :style="{ 'margin-top': marginTop }"
+ :style="{ 'margin-top': downstreamMarginTop }"
:mediator="mediator"
@onClickTriggered="
(parentPipeline, pipeline) => clickTriggeredPipeline(parentPipeline, pipeline)
diff --git a/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue b/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue
index 82335e71403..d929398b6dc 100644
--- a/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue
+++ b/app/assets/javascripts/pipelines/components/graph/linked_pipeline.vue
@@ -1,6 +1,7 @@
<script>
import { GlLoadingIcon, GlTooltipDirective, GlButton } from '@gitlab/ui';
import CiStatus from '~/vue_shared/components/ci_icon.vue';
+import { __ } from '~/locale';
export default {
directives: {
@@ -16,6 +17,14 @@ export default {
type: Object,
required: true,
},
+ projectId: {
+ type: Number,
+ required: true,
+ },
+ columnTitle: {
+ type: String,
+ required: true,
+ },
},
computed: {
tooltipText() {
@@ -30,18 +39,45 @@ export default {
projectName() {
return this.pipeline.project.name;
},
+ parentPipeline() {
+ // Refactor string match when BE returns Upstream/Downstream indicators
+ return this.projectId === this.pipeline.project.id && this.columnTitle === __('Upstream');
+ },
+ childPipeline() {
+ // Refactor string match when BE returns Upstream/Downstream indicators
+ return this.projectId === this.pipeline.project.id && this.columnTitle === __('Downstream');
+ },
+ label() {
+ return this.parentPipeline ? __('Parent') : __('Child');
+ },
+ childTooltipText() {
+ return __('This pipeline was triggered by a parent pipeline');
+ },
+ parentTooltipText() {
+ return __('This pipeline triggered a child pipeline');
+ },
+ labelToolTipText() {
+ return this.label === __('Parent') ? this.parentTooltipText : this.childTooltipText;
+ },
},
methods: {
onClickLinkedPipeline() {
this.$root.$emit('bv::hide::tooltip', this.buttonId);
- this.$emit('pipelineClicked');
+ this.$emit('pipelineClicked', this.$refs.linkedPipeline);
+ },
+ hideTooltips() {
+ this.$root.$emit('bv::hide::tooltip');
},
},
};
</script>
<template>
- <li class="linked-pipeline build">
+ <li
+ ref="linkedPipeline"
+ class="linked-pipeline build"
+ :class="{ 'child-pipeline': childPipeline }"
+ >
<gl-button
:id="buttonId"
v-gl-tooltip
@@ -59,6 +95,15 @@ export default {
class="js-linked-pipeline-status"
/>
<span class="str-truncated align-bottom"> {{ projectName }} &#8226; #{{ pipeline.id }} </span>
+ <div v-if="parentPipeline || childPipeline" class="parent-child-label-container">
+ <span
+ v-gl-tooltip.bottom
+ :title="labelToolTipText"
+ class="badge badge-primary"
+ @mouseover="hideTooltips"
+ >{{ label }}</span
+ >
+ </div>
</gl-button>
</li>
</template>
diff --git a/app/assets/javascripts/pipelines/components/graph/linked_pipelines_column.vue b/app/assets/javascripts/pipelines/components/graph/linked_pipelines_column.vue
index 998519f9df1..e3429184c05 100644
--- a/app/assets/javascripts/pipelines/components/graph/linked_pipelines_column.vue
+++ b/app/assets/javascripts/pipelines/components/graph/linked_pipelines_column.vue
@@ -19,6 +19,10 @@ export default {
type: String,
required: true,
},
+ projectId: {
+ type: Number,
+ required: true,
+ },
},
computed: {
columnClass() {
@@ -28,10 +32,16 @@ export default {
};
return `graph-position-${this.graphPosition} ${positionValues[this.graphPosition]}`;
},
+ // Refactor string match when BE returns Upstream/Downstream indicators
isUpstream() {
return this.columnTitle === __('Upstream');
},
},
+ methods: {
+ onPipelineClick(downstreamNode, pipeline, index) {
+ this.$emit('linkedPipelineClick', pipeline, index, downstreamNode);
+ },
+ },
};
</script>
@@ -48,7 +58,9 @@ export default {
'left-connector': pipeline.isExpanded && graphPosition === 'left',
}"
:pipeline="pipeline"
- @pipelineClicked="$emit('linkedPipelineClick', pipeline, index)"
+ :column-title="columnTitle"
+ :project-id="projectId"
+ @pipelineClicked="onPipelineClick($event, pipeline, index)"
/>
</ul>
</div>
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss
index 72657a64794..82bef91230e 100644
--- a/app/assets/stylesheets/pages/pipelines.scss
+++ b/app/assets/stylesheets/pages/pipelines.scss
@@ -1093,3 +1093,7 @@ button.mini-pipeline-graph-dropdown-toggle {
.progress-bar.bg-primary {
background-color: $blue-500 !important;
}
+
+.parent-child-label-container {
+ padding-top: $gl-padding-4;
+}