Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tatuya Kamada
gitlab-ce
Commits
2916ea82
Commit
2916ea82
authored
Dec 28, 2016
by
Sam Rose
Committed by
Sam Rose
Feb 01, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update pipeline and commit URL and text on CI status change
parent
40a82435
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
56 additions
and
5 deletions
+56
-5
app/assets/javascripts/merge_request_widget.js.es6
app/assets/javascripts/merge_request_widget.js.es6
+21
-1
app/controllers/projects/merge_requests_controller.rb
app/controllers/projects/merge_requests_controller.rb
+2
-1
app/views/projects/merge_requests/widget/_heading.html.haml
app/views/projects/merge_requests/widget/_heading.html.haml
+1
-1
app/views/projects/merge_requests/widget/_show.html.haml
app/views/projects/merge_requests/widget/_show.html.haml
+4
-0
changelogs/unreleased/25811-pipeline-number-and-url-do-not-update-when-new-pipeline-is-triggered.yml
...-and-url-do-not-update-when-new-pipeline-is-triggered.yml
+4
-0
spec/javascripts/merge_request_widget_spec.js
spec/javascripts/merge_request_widget_spec.js
+24
-2
No files found.
app/assets/javascripts/merge_request_widget.js.es6
View file @
2916ea82
...
@@ -154,12 +154,22 @@
...
@@ -154,12 +154,22 @@
return;
return;
}
}
if (data.environments && data.environments.length) _this.renderEnvironments(data.environments);
if (data.environments && data.environments.length) _this.renderEnvironments(data.environments);
if (data.status !== _this.opts.ci_status && (data.status != null)) {
if (data.status !== _this.opts.ci_status ||
data.sha !== _this.opts.ci_sha ||
data.pipeline !== _this.opts.ci_pipeline) {
_this.opts.ci_status = data.status;
_this.opts.ci_status = data.status;
_this.showCIStatus(data.status);
_this.showCIStatus(data.status);
if (data.coverage) {
if (data.coverage) {
_this.showCICoverage(data.coverage);
_this.showCICoverage(data.coverage);
}
}
if (data.pipeline) {
_this.opts.ci_pipeline = data.pipeline;
_this.updatePipelineUrls(data.pipeline);
}
if (data.sha) {
_this.opts.ci_sha = data.sha;
_this.updateCommitUrls(data.sha);
}
if (showNotification) {
if (showNotification) {
status = _this.ciLabelForStatus(data.status);
status = _this.ciLabelForStatus(data.status);
if (status === "preparing") {
if (status === "preparing") {
...
@@ -248,6 +258,16 @@
...
@@ -248,6 +258,16 @@
return $('.js-merge-button,.accept-action .dropdown-toggle').removeClass('btn-danger btn-info btn-create').addClass(css_class);
return $('.js-merge-button,.accept-action .dropdown-toggle').removeClass('btn-danger btn-info btn-create').addClass(css_class);
};
};
MergeRequestWidget.prototype.updatePipelineUrls = function(id) {
const pipelineUrl = this.opts.pipeline_path;
$('.pipeline').text(`#${id}`).attr('href', [pipelineUrl, id].join('/'));
};
MergeRequestWidget.prototype.updateCommitUrls = function(id) {
const commitsUrl = this.opts.commits_path;
$('.js-commit-link').text(`#${id}`).attr('href', [commitsUrl, id].join('/'));
};
return MergeRequestWidget;
return MergeRequestWidget;
})();
})();
})(window.gl || (window.gl = {}));
})(window.gl || (window.gl = {}));
app/controllers/projects/merge_requests_controller.rb
View file @
2916ea82
...
@@ -434,7 +434,8 @@ class Projects::MergeRequestsController < Projects::ApplicationController
...
@@ -434,7 +434,8 @@ class Projects::MergeRequestsController < Projects::ApplicationController
title:
merge_request
.
title
,
title:
merge_request
.
title
,
sha:
(
merge_request
.
diff_head_commit
.
short_id
if
merge_request
.
diff_head_sha
),
sha:
(
merge_request
.
diff_head_commit
.
short_id
if
merge_request
.
diff_head_sha
),
status:
status
,
status:
status
,
coverage:
coverage
coverage:
coverage
,
pipeline:
pipeline
.
try
(
:id
)
}
}
render
json:
response
render
json:
response
...
...
app/views/projects/merge_requests/widget/_heading.html.haml
View file @
2916ea82
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
=
ci_label_for_status
(
status
)
=
ci_label_for_status
(
status
)
for
for
=
succeed
"."
do
=
succeed
"."
do
=
link_to
@pipeline
.
short_sha
,
namespace_project_commit_path
(
@merge_request
.
source_project
.
namespace
,
@merge_request
.
source_project
,
@pipeline
.
sha
),
class:
"monospace"
=
link_to
@pipeline
.
short_sha
,
namespace_project_commit_path
(
@merge_request
.
source_project
.
namespace
,
@merge_request
.
source_project
,
@pipeline
.
sha
),
class:
"monospace
js-commit-link
"
%span
.ci-coverage
%span
.ci-coverage
-
elsif
@merge_request
.
has_ci?
-
elsif
@merge_request
.
has_ci?
...
...
app/views/projects/merge_requests/widget/_show.html.haml
View file @
2916ea82
...
@@ -24,6 +24,10 @@
...
@@ -24,6 +24,10 @@
preparing
:
"
{{status}} build
"
,
preparing
:
"
{{status}} build
"
,
normal
:
"
Build {{status}}
"
normal
:
"
Build {{status}}
"
},
},
ci_sha
:
"
#{
@merge_request
.
head_pipeline
?
@merge_request
.
head_pipeline
.
short_sha
:
''
}
"
,
ci_pipeline
:
#{
@merge_request
.
head_pipeline
.
try
(
:id
).
to_json
}
,
commits_path
:
"
#{
project_commits_path
(
@project
)
}
"
,
pipeline_path
:
"
#{
project_pipelines_path
(
@project
)
}
"
,
pipelines_path
:
"
#{
pipelines_namespace_project_merge_request_path
(
@project
.
namespace
,
@project
,
@merge_request
)
}
"
pipelines_path
:
"
#{
pipelines_namespace_project_merge_request_path
(
@project
.
namespace
,
@project
,
@merge_request
)
}
"
};
};
...
...
changelogs/unreleased/25811-pipeline-number-and-url-do-not-update-when-new-pipeline-is-triggered.yml
0 → 100644
View file @
2916ea82
---
title
:
Update pipeline and commit links when CI status is updated
merge_request
:
8351
author
:
spec/javascripts/merge_request_widget_spec.js
View file @
2916ea82
/* eslint-disable space-before-function-paren, quotes, comma-dangle, dot-notation, quote-props, no-var, max-len */
/* eslint-disable space-before-function-paren, quotes, comma-dangle, dot-notation, quote-props, no-var, max-len */
/*= require merge_request_widget */
/*= require merge_request_widget */
/*= require smart_interval */
/*= require lib/utils/datetime_utility */
/*= require lib/utils/datetime_utility */
(
function
()
{
(
function
()
{
...
@@ -21,7 +22,11 @@
...
@@ -21,7 +22,11 @@
normal
:
"
Build {{status}}
"
normal
:
"
Build {{status}}
"
},
},
gitlab_icon
:
"
gitlab_logo.png
"
,
gitlab_icon
:
"
gitlab_logo.png
"
,
builds_path
:
"
http://sampledomain.local/sampleBuildsPath
"
ci_pipeline
:
80
,
ci_sha
:
"
12a34bc5
"
,
builds_path
:
"
http://sampledomain.local/sampleBuildsPath
"
,
commits_path
:
"
http://sampledomain.local/commits
"
,
pipeline_path
:
"
http://sampledomain.local/pipelines
"
};
};
this
[
"
class
"
]
=
new
window
.
gl
.
MergeRequestWidget
(
this
.
opts
);
this
[
"
class
"
]
=
new
window
.
gl
.
MergeRequestWidget
(
this
.
opts
);
});
});
...
@@ -118,10 +123,11 @@
...
@@ -118,10 +123,11 @@
});
});
});
});
return
describe
(
'
getCIStatus
'
,
function
()
{
describe
(
'
getCIStatus
'
,
function
()
{
beforeEach
(
function
()
{
beforeEach
(
function
()
{
this
.
ciStatusData
=
{
this
.
ciStatusData
=
{
"
title
"
:
"
Sample MR title
"
,
"
title
"
:
"
Sample MR title
"
,
"
pipeline
"
:
80
,
"
sha
"
:
"
12a34bc5
"
,
"
sha
"
:
"
12a34bc5
"
,
"
status
"
:
"
success
"
,
"
status
"
:
"
success
"
,
"
coverage
"
:
98
"
coverage
"
:
98
...
@@ -165,6 +171,22 @@
...
@@ -165,6 +171,22 @@
this
[
"
class
"
].
getCIStatus
(
true
);
this
[
"
class
"
].
getCIStatus
(
true
);
return
expect
(
spy
).
not
.
toHaveBeenCalled
();
return
expect
(
spy
).
not
.
toHaveBeenCalled
();
});
});
it
(
'
should update the pipeline URL when the pipeline changes
'
,
function
()
{
var
spy
;
spy
=
spyOn
(
this
[
"
class
"
],
'
updatePipelineUrls
'
).
and
.
stub
();
this
[
"
class
"
].
getCIStatus
(
false
);
this
.
ciStatusData
.
pipeline
+=
1
;
this
[
"
class
"
].
getCIStatus
(
false
);
return
expect
(
spy
).
toHaveBeenCalled
();
});
it
(
'
should update the commit URL when the sha changes
'
,
function
()
{
var
spy
;
spy
=
spyOn
(
this
[
"
class
"
],
'
updateCommitUrls
'
).
and
.
stub
();
this
[
"
class
"
].
getCIStatus
(
false
);
this
.
ciStatusData
.
sha
=
"
9b50b99a
"
;
this
[
"
class
"
].
getCIStatus
(
false
);
return
expect
(
spy
).
toHaveBeenCalled
();
});
});
});
});
});
}).
call
(
this
);
}).
call
(
this
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment