summaryrefslogtreecommitdiff
path: root/app/views/projects/diffs/_text_file.html.haml
blob: 5f3968b67096aca4d5d43ce8acd3ed6452ecfab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
- if too_big
  .suppressed-container
    %a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.

%table.text-file.code.js-syntax-highlight{ data: diff_view_data, class: too_big ? 'hide' : '' }
  = render partial: "projects/diffs/line",
    collection: diff_file.highlighted_diff_lines,
    as: :line,
    locals: { diff_file: diff_file, discussions: @grouped_diff_discussions }

  - if !diff_file.new_file && !diff_file.deleted_file && diff_file.highlighted_diff_lines.any?
    - last_line = diff_file.highlighted_diff_lines.last
    - if last_line.new_pos < total_lines
      %tr.line_holder
        = diff_match_line last_line.old_pos, last_line.new_pos, bottom: true