Commit 22e7c35a authored by Lee Tickett's avatar Lee Tickett Committed by Heinrich Lee Yu

Fix Merge Request Note Label URLs

parent f236ed9a
...@@ -344,6 +344,10 @@ class Issue < ApplicationRecord ...@@ -344,6 +344,10 @@ class Issue < ApplicationRecord
previous_changes['updated_at']&.first || updated_at previous_changes['updated_at']&.first || updated_at
end end
def banzai_render_context(field)
super.merge(label_url_method: :project_issues_url)
end
def design_collection def design_collection
@design_collection ||= ::DesignManagement::DesignCollection.new(self) @design_collection ||= ::DesignManagement::DesignCollection.new(self)
end end
......
...@@ -1579,6 +1579,10 @@ class MergeRequest < ApplicationRecord ...@@ -1579,6 +1579,10 @@ class MergeRequest < ApplicationRecord
deployments.visible.includes(:environment).order(id: :desc).limit(10) deployments.visible.includes(:environment).order(id: :desc).limit(10)
end end
def banzai_render_context(field)
super.merge(label_url_method: :project_merge_requests_url)
end
private private
def with_rebase_lock def with_rebase_lock
......
...@@ -521,7 +521,7 @@ class Note < ApplicationRecord ...@@ -521,7 +521,7 @@ class Note < ApplicationRecord
end end
def banzai_render_context(field) def banzai_render_context(field)
super.merge(noteable: noteable, system_note: system?) super.merge(noteable: noteable, system_note: system?, label_url_method: noteable_label_url_method)
end end
def retrieve_upload(_identifier, paths) def retrieve_upload(_identifier, paths)
...@@ -604,6 +604,10 @@ class Note < ApplicationRecord ...@@ -604,6 +604,10 @@ class Note < ApplicationRecord
errors.add(:base, _('Maximum number of comments exceeded')) if noteable.notes.count >= Noteable::MAX_NOTES_LIMIT errors.add(:base, _('Maximum number of comments exceeded')) if noteable.notes.count >= Noteable::MAX_NOTES_LIMIT
end end
def noteable_label_url_method
for_merge_request? ? :project_merge_requests_url : :project_issues_url
end
end end
Note.prepend_if_ee('EE::Note') Note.prepend_if_ee('EE::Note')
---
title: Fix merge request note label URLs
merge_request: 30428
author: Lee Tickett
type: fixed
...@@ -71,13 +71,16 @@ module Banzai ...@@ -71,13 +71,16 @@ module Banzai
end end
def url_for_object(label, parent) def url_for_object(label, parent)
h = Gitlab::Routing.url_helpers label_url_method =
if context[:label_url_method]
context[:label_url_method]
elsif parent.is_a?(Project)
:project_issues_url
end
if parent.is_a?(Project) return unless label_url_method
h.project_issues_url(parent, label_name: label.name, only_path: context[:only_path])
elsif context[:label_url_method] Gitlab::Routing.url_helpers.public_send(label_url_method, parent, label_name: label.name, only_path: context[:only_path]) # rubocop:disable GitlabSecurity/PublicSend
h.public_send(context[:label_url_method], parent, label_name: label.name, only_path: context[:only_path]) # rubocop:disable GitlabSecurity/PublicSend
end
end end
def object_link_text(object, matches) def object_link_text(object, matches)
......
...@@ -47,14 +47,34 @@ describe Banzai::Filter::LabelReferenceFilter do ...@@ -47,14 +47,34 @@ describe Banzai::Filter::LabelReferenceFilter do
expect(link.attr('data-label')).to eq label.id.to_s expect(link.attr('data-label')).to eq label.id.to_s
end end
it 'supports an :only_path context' do it 'includes protocol when :only_path not present' do
doc = reference_filter("Label #{reference}")
link = doc.css('a').first.attr('href')
expect(link).to match %r(https?://)
end
it 'does not include protocol when :only_path true' do
doc = reference_filter("Label #{reference}", only_path: true) doc = reference_filter("Label #{reference}", only_path: true)
link = doc.css('a').first.attr('href') link = doc.css('a').first.attr('href')
expect(link).not_to match %r(https?://) expect(link).not_to match %r(https?://)
end
it 'links to issue list when :label_url_method is not present' do
doc = reference_filter("Label #{reference}", only_path: true)
link = doc.css('a').first.attr('href')
expect(link).to eq urls.project_issues_path(project, label_name: label.name) expect(link).to eq urls.project_issues_path(project, label_name: label.name)
end end
it 'links to merge request list when `label_url_method: :project_merge_requests_url`' do
doc = reference_filter("Label #{reference}", { only_path: true, label_url_method: "project_merge_requests_url" })
link = doc.css('a').first.attr('href')
expect(link).to eq urls.project_merge_requests_path(project, label_name: label.name)
end
context 'project that does not exist referenced' do context 'project that does not exist referenced' do
let(:result) { reference_filter('aaa/bbb~ccc') } let(:result) { reference_filter('aaa/bbb~ccc') }
......
...@@ -1085,4 +1085,15 @@ describe Issue do ...@@ -1085,4 +1085,15 @@ describe Issue do
expect(subject).not_to include(labeled_issue) expect(subject).not_to include(labeled_issue)
end end
end end
describe 'banzai_render_context' do
let(:project) { build(:project_empty_repo) }
let(:issue) { build :issue, project: project }
subject(:context) { issue.banzai_render_context(:title) }
it 'sets the label_url_method in the context' do
expect(context[:label_url_method]).to eq(:project_issues_url)
end
end
end end
...@@ -3926,4 +3926,15 @@ describe MergeRequest do ...@@ -3926,4 +3926,15 @@ describe MergeRequest do
expect(count).to eq(0) expect(count).to eq(0)
end end
end end
describe 'banzai_render_context' do
let(:project) { build(:project_empty_repo) }
let(:merge_request) { build :merge_request, target_project: project, source_project: project }
subject(:context) { merge_request.banzai_render_context(:title) }
it 'sets the label_url_method in the context' do
expect(context[:label_url_method]).to eq(:project_merge_requests_url)
end
end
end end
...@@ -1353,4 +1353,28 @@ describe Note do ...@@ -1353,4 +1353,28 @@ describe Note do
end end
end end
end end
describe 'banzai_render_context' do
let(:project) { build(:project_empty_repo) }
context 'when noteable is a merge request' do
let(:noteable) { build :merge_request, target_project: project, source_project: project }
subject(:context) { noteable.banzai_render_context(:title) }
it 'sets the label_url_method in the context' do
expect(context[:label_url_method]).to eq(:project_merge_requests_url)
end
end
context 'when noteable is an issue' do
let(:noteable) { build :issue, project: project }
subject(:context) { noteable.banzai_render_context(:title) }
it 'sets the label_url_method in the context' do
expect(context[:label_url_method]).to eq(:project_issues_url)
end
end
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment