gitlab-org--gitlab-foss/app/views/projects/diffs/_line.html.haml

28 lines
1.1 KiB
Plaintext
Raw Normal View History

- plain = local_assigns.fetch(:plain, false)
- line_code = diff_file.line_code(line)
- position = diff_file.position(line)
2016-01-28 17:10:36 +00:00
- type = line.type
2016-04-14 14:10:36 +00:00
%tr.line_holder{ id: line_code, class: type }
2016-01-28 17:10:36 +00:00
- case type
- when 'match'
2016-04-14 14:10:36 +00:00
= render "projects/diffs/match_line", { line: line.text,
line_old: line.old_pos, line_new: line.new_pos, bottom: false, new_file: diff_file.new_file }
2016-01-28 17:10:36 +00:00
- when 'nonewline'
%td.old_line.diff-line-num
%td.new_line.diff-line-num
%td.line_content.match= line.text
- else
%td.old_line.diff-line-num{ class: type, data: { linenumber: line.old_pos } }
- link_text = type == "new" ? " " : line.old_pos
- if plain
2016-01-28 17:10:36 +00:00
= link_text
- else
%a{href: "##{line_code}", data: { linenumber: link_text }}
2016-04-14 14:10:36 +00:00
%td.new_line.diff-line-num{ class: type, data: { linenumber: line.new_pos } }
- link_text = type == "old" ? " " : line.new_pos
- if plain
2016-01-28 17:10:36 +00:00
= link_text
- else
%a{href: "##{line_code}", data: { linenumber: link_text }}
%td.line_content.noteable_line{ class: type, data: (diff_view_line_data(line_code, position, type) unless plain) }= diff_line_content(line.text, type)