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

126 lines
3.3 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
2016-01-30 11:54:19 +00:00
marked_old_line = Gitlab::Diff::InlineDiffMarker.new(old_line).mark(old_diffs)
marked_new_line = Gitlab::Diff::InlineDiffMarker.new(new_line).mark(new_diffs)
[marked_old_line, marked_new_line]
end
2015-11-17 15:08:58 +00:00
def diff_view
params[:view] == 'parallel' ? 'parallel' : 'inline'
end
2016-03-03 17:38:44 +00:00
def diff_hard_limit_enabled?
params[:force_show_diff].present?
end
2016-03-03 17:38:44 +00:00
def diff_options
options = { ignore_whitespace_change: params[:w] == '1' }
if diff_hard_limit_enabled?
2016-03-03 17:38:44 +00:00
options.merge!(Commit.max_diff_options)
end
2016-03-03 17:38:44 +00:00
options
end
def safe_diff_files(diffs, diff_refs)
2016-03-03 17:38:44 +00:00
diffs.decorate! { |diff| Gitlab::Diff::File.new(diff, diff_refs) }
end
2016-01-20 13:59:14 +00:00
def generate_line_code(file_path, line)
Gitlab::Diff::LineCode.generate(file_path, line.new_pos, line.old_pos)
end
def unfold_bottom_class(bottom)
(bottom) ? '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
def line_comments
@line_comments ||= @line_notes.select(&:active?).sort_by(&:created_at).group_by(&:line_code)
2014-09-12 16:43:44 +00:00
end
2014-09-12 17:51:44 +00:00
def organize_comments(type_left, type_right, line_code_left, line_code_right)
comments_left = comments_right = nil
unless type_left.nil? && type_right == 'new'
comments_left = line_comments[line_code_left]
end
unless type_left.nil? && type_right.nil?
comments_right = line_comments[line_code_right]
end
[comments_left, comments_right]
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
def commit_for_diff(diff)
if diff.deleted_file
@base_commit || @commit.parent || @commit
else
@commit
end
end
def diff_file_html_data(project, diff_commit, diff_file)
{
blob_diff_path: namespace_project_blob_diff_path(project.namespace, project,
tree_join(diff_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
end