summaryrefslogtreecommitdiff
path: root/app/views/projects/diffs/_text_file.html.haml
blob: a1c3bf74b0a3b9b42253ad8481a91ffbcaeae28a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
- 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.

- text_file_data = @comments_target.any? ? { data: { noteable_id: @comments_target[:noteable_id], noteable_type: @comments_target[:noteable_type], commit_id: @comments_target[:commit_id], note_type: LegacyDiffNote.name } } : {}
%table.text-file.code.js-syntax-highlight{ text_file_data, class: too_big ? 'hide' : '' }

  - last_line = 0
  - diff_file.highlighted_diff_lines.each_with_index do |line, index|
    - line_code = generate_line_code(diff_file.file_path, line)
    - last_line = line.new_pos
    = render "projects/diffs/line", {line: line, diff_file: diff_file, line_code: line_code}

    - unless @diff_notes_disabled
      - diff_notes = @grouped_diff_notes[line_code]
      - if diff_notes
        = render "projects/notes/diff_notes_with_reply", notes: diff_notes

  - if last_line > 0
    = render "projects/diffs/match_line", { line: "",
      line_old: last_line, line_new: last_line, bottom: true, new_file: diff_file.new_file }

- if diff_file.diff.blank? && diff_file.mode_changed?
  .file-mode-changed
    File mode changed