Commit bfd44948 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'show_diff' into 'master'

Show note diff if diff exists
parents 4e002a71 17bb7007
- diff = note.diff - diff = note.diff
.diff-file - if diff
.diff-header .diff-file
- if diff.deleted_file .diff-header
%span= diff.old_path - if diff.deleted_file
- else %span= diff.old_path
%span= diff.new_path - else
- if diff.a_mode && diff.b_mode && diff.a_mode != diff.b_mode %span= diff.new_path
%span.file-mode= "#{diff.a_mode}#{diff.b_mode}" - if diff.a_mode && diff.b_mode && diff.a_mode != diff.b_mode
%br/ %span.file-mode= "#{diff.a_mode}#{diff.b_mode}"
.diff-content %br/
%table .diff-content
- each_diff_line_near(diff, note.diff_file_index, note.line_code) do |line, type, line_code, line_new, line_old| %table
%tr.line_holder{ id: line_code } - each_diff_line_near(diff, note.diff_file_index, note.line_code) do |line, type, line_code, line_new, line_old|
- if type == "match" %tr.line_holder{ id: line_code }
%td.old_line= "..." - if type == "match"
%td.new_line= "..." %td.old_line= "..."
%td.line_content.matched= line %td.new_line= "..."
- else %td.line_content.matched= line
%td.old_line= raw(type == "new" ? " " : line_old) - else
%td.new_line= raw(type == "old" ? " " : line_new) %td.old_line= raw(type == "new" ? " " : line_old)
%td.line_content{class: "noteable_line #{type} #{line_code}", "line_code" => line_code}= raw "#{line}  " %td.new_line= raw(type == "old" ? " " : line_new)
%td.line_content{class: "noteable_line #{type} #{line_code}", "line_code" => line_code}= raw "#{line}  "
- if line_code == note.line_code - if line_code == note.line_code
= render "projects/notes/diff_notes_with_reply", notes: discussion_notes = render "projects/notes/diff_notes_with_reply", notes: discussion_notes
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