summaryrefslogtreecommitdiff
path: root/app/views/projects/diffs/_text_file.html.haml
blob: ab5463ba89d791e65acb4ca135c3fe8da4bb19d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- 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' : '' }
  - last_line = 0
  - diff_file.highlighted_diff_lines.each do |line|
    - last_line = line.new_pos
    = render "projects/diffs/line", line: line, diff_file: diff_file

    - unless @diff_notes_disabled
      - line_code = diff_file.line_code(line)
      - discussion = @grouped_diff_discussions[line_code] if line_code
      - if discussion
        = render "discussions/diff_discussion", discussion: discussion

  - if !diff_file.new_file && last_line > 0
    = diff_match_line last_line, last_line, bottom: true