gitlab-org--gitlab-foss/app/helpers/diff_helper.rb

161 lines
4.4 KiB
Ruby
Raw Normal View History

module DiffHelper
def mark_inline_diffs(old_line, new_line)
old_diffs, new_diffs = Gitlab::Diff::InlineDiff.new(old_line, new_line).inline_diffs
marked_old_line = Gitlab::Diff::InlineDiffMarker.new(old_line).mark(old_diffs, mode: :deletion)
marked_new_line = Gitlab::Diff::InlineDiffMarker.new(new_line).mark(new_diffs, mode: :addition)
[marked_old_line, marked_new_line]
end
2016-07-06 17:35:55 +00:00
def expand_all_diffs?
@expand_all_diffs || params[:expand_all_diffs].present?
2016-07-06 12:04:52 +00:00
end
2015-11-17 15:08:58 +00:00
def diff_view
diff_views = %w(inline parallel)
if diff_views.include?(cookies[:diff_view])
cookies[:diff_view]
else
diff_views.first
end
2015-11-17 15:08:58 +00:00
end
2016-03-03 17:38:44 +00:00
def diff_options
default_options = Commit.max_diff_options
if action_name == 'diff_for_path'
default_options[:paths] = params.values_at(:old_path, :new_path)
end
default_options.merge(ignore_whitespace_change: hide_whitespace?)
end
def safe_diff_files(diffs, diff_refs: nil, repository: nil)
diffs.decorate! { |diff| Gitlab::Diff::File.new(diff, diff_refs: diff_refs, repository: repository) }
2016-01-20 13:59:14 +00:00
end
def unfold_bottom_class(bottom)
bottom ? 'js-unfold js-unfold-bottom' : ''
end
def unfold_class(unfold)
unfold ? 'unfold js-unfold' : ''
end
def diff_line_content(line, line_type = nil)
if line.blank?
"  ".html_safe
else
2016-04-14 14:10:36 +00:00
line[0] = ' ' if %w[new old].include?(line_type)
line
end
end
2014-09-12 16:43:44 +00:00
2016-05-10 22:41:46 +00:00
def organize_comments(left, right)
notes_left = notes_right = nil
2014-09-12 17:51:44 +00:00
2016-05-10 22:41:46 +00:00
unless left[:type].nil? && right[:type] == 'new'
notes_left = @grouped_diff_notes[left[:line_code]]
2014-09-12 17:51:44 +00:00
end
2016-05-10 22:41:46 +00:00
unless left[:type].nil? && right[:type].nil?
notes_right = @grouped_diff_notes[right[:line_code]]
2014-09-12 17:51:44 +00:00
end
2016-05-10 22:41:46 +00:00
[notes_left, notes_right]
2014-09-12 17:51:44 +00:00
end
def inline_diff_btn
diff_btn('Inline', 'inline', diff_view == 'inline')
end
def parallel_diff_btn
diff_btn('Side-by-side', 'parallel', diff_view == 'parallel')
end
2015-01-19 13:07:37 +00:00
def submodule_link(blob, ref, repository = @repository)
tree, commit = submodule_links(blob, ref, repository)
2015-01-19 13:07:37 +00:00
commit_id = if commit.nil?
Commit.truncate_sha(blob.id)
2015-01-19 13:07:37 +00:00
else
link_to Commit.truncate_sha(blob.id), commit
2015-01-19 13:07:37 +00:00
end
[
content_tag(:span, link_to(truncate(blob.name, length: 40), tree)),
'@',
content_tag(:span, commit_id, class: 'monospace'),
].join(' ').html_safe
end
2016-05-10 22:41:46 +00:00
def commit_for_diff(diff_file)
return diff_file.content_commit if diff_file.content_commit
2016-05-10 22:41:46 +00:00
if diff_file.deleted_file
@base_commit || @commit.parent || @commit
else
@commit
end
end
2016-06-20 16:54:53 +00:00
def diff_file_html_data(project, diff_file)
commit = commit_for_diff(diff_file)
{
blob_diff_path: namespace_project_blob_diff_path(project.namespace, project,
2016-06-20 16:54:53 +00:00
tree_join(commit.id, diff_file.file_path))
}
end
def editable_diff?(diff)
!diff.deleted_file && @merge_request && @merge_request.source_project
end
private
def diff_btn(title, name, selected)
params_copy = params.dup
params_copy[:view] = name
# Always use HTML to handle case where JSON diff rendered this button
params_copy.delete(:format)
2016-02-19 22:20:39 +00:00
link_to url_for(params_copy), id: "#{name}-diff-btn", class: (selected ? 'btn active' : 'btn'), data: { view_type: name } do
title
end
end
2016-04-18 21:51:30 +00:00
def commit_diff_whitespace_link(project, commit, options)
2016-04-12 17:49:34 +00:00
url = namespace_project_commit_path(project.namespace, project, commit.id, params_with_whitespace)
2016-04-18 21:51:30 +00:00
toggle_whitespace_link(url, options)
2016-04-12 17:49:34 +00:00
end
2016-04-18 21:51:30 +00:00
def diff_merge_request_whitespace_link(project, merge_request, options)
2016-04-12 17:49:34 +00:00
url = diffs_namespace_project_merge_request_path(project.namespace, project, merge_request, params_with_whitespace)
2016-04-18 21:51:30 +00:00
toggle_whitespace_link(url, options)
2016-04-12 17:49:34 +00:00
end
def diff_compare_whitespace_link(project, from, to, options)
url = namespace_project_compare_path(project.namespace, project, from, to, params_with_whitespace)
toggle_whitespace_link(url, options)
end
2016-04-12 17:49:34 +00:00
private
2016-04-04 17:01:59 +00:00
def hide_whitespace?
params[:w] == '1'
end
def params_with_whitespace
2016-04-04 17:01:59 +00:00
hide_whitespace? ? request.query_parameters.except(:w) : request.query_parameters.merge(w: 1)
end
2016-04-18 21:51:30 +00:00
def toggle_whitespace_link(url, options)
options[:class] ||= ''
options[:class] << ' btn btn-default'
link_to "#{hide_whitespace? ? 'Show' : 'Hide'} whitespace changes", url, class: options[:class]
end
end