show diff in submodules
This commit is contained in:
parent
2fba31890e
commit
3d2aaa169e
4 changed files with 21 additions and 11 deletions
|
@ -135,4 +135,19 @@ module DiffHelper
|
|||
'Side-by-side'
|
||||
end
|
||||
end
|
||||
|
||||
def submodule_link(blob, ref)
|
||||
tree, commit = submodule_links(blob, ref)
|
||||
commit_id = if commit.nil?
|
||||
blob.id[0..10]
|
||||
else
|
||||
link_to "#{blob.id[0..10]}", commit
|
||||
end
|
||||
|
||||
[
|
||||
content_tag(:span, link_to(truncate(blob.name, length: 40), tree)),
|
||||
'@',
|
||||
content_tag(:span, commit_id, class: 'monospace'),
|
||||
].join(' ').html_safe
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,8 +2,8 @@ module SubmoduleHelper
|
|||
include Gitlab::ShellAdapter
|
||||
|
||||
# links to files listing for submodule if submodule is a project on this server
|
||||
def submodule_links(submodule_item)
|
||||
url = @repository.submodule_url_for(@ref, submodule_item.path)
|
||||
def submodule_links(submodule_item, ref = nil)
|
||||
url = @repository.submodule_url_for(ref, submodule_item.path)
|
||||
|
||||
return url, nil unless url =~ /([^\/:]+\/[^\/]+\.git)\Z/
|
||||
|
||||
|
|
|
@ -9,6 +9,9 @@
|
|||
.diff-btn-group
|
||||
- if @commit.parent_ids.present?
|
||||
= view_file_btn(@commit.parent_id, diff_file, project)
|
||||
- elsif diff_file.diff.submodule?
|
||||
- submodule_item = project.repository.blob_at(@commit.id, diff_file.file_path)
|
||||
= submodule_link(submodule_item, @commit.id)
|
||||
- else
|
||||
- if diff_file.renamed_file
|
||||
%span= "#{diff_file.old_path} renamed to #{diff_file.new_path}"
|
||||
|
|
|
@ -1,14 +1,6 @@
|
|||
- tree, commit = submodule_links(submodule_item)
|
||||
%tr{ class: "tree-item" }
|
||||
%td.tree-item-file-name
|
||||
%i.fa.fa-archive
|
||||
%span
|
||||
= link_to truncate(submodule_item.name, length: 40), tree
|
||||
@
|
||||
%span.monospace
|
||||
- if commit.nil?
|
||||
#{truncate_sha(submodule_item.id)}
|
||||
- else
|
||||
= link_to "#{truncate_sha(submodule_item.id)}", commit
|
||||
= submodule_link(submodule_item, @ref)
|
||||
%td
|
||||
%td.hidden-xs
|
||||
|
|
Loading…
Reference in a new issue