_discussion_diff.html.haml 932 Bytes
Newer Older
1
- diff = note.diff
2
.header
3
  - if diff.deleted_file
Riyad Preukschas's avatar
Riyad Preukschas committed
4
    %span= diff.old_path
5
  - else
Riyad Preukschas's avatar
Riyad Preukschas committed
6 7 8
    %span= diff.new_path
    - if diff.a_mode && diff.b_mode && diff.a_mode != diff.b_mode
      %span.file-mode= "#{diff.a_mode}#{diff.b_mode}"
9
  %br/
10
.content
11
  %table
12
    - each_diff_line_near(diff, note.diff_file_index, note.line_code) do |line, type, line_code, line_new, line_old|
13 14 15 16 17 18 19 20 21 22 23
      %tr.line_holder{ id: line_code }
        - if type == "match"
          %td.old_line= "..."
          %td.new_line= "..."
          %td.line_content.matched= line
        - else
          %td.old_line= raw(type == "new" ? " " : line_old)
          %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
Riyad Preukschas's avatar
Riyad Preukschas committed
24
            = render "notes/diff_notes_with_reply", notes: discussion_notes