_text_file.html.haml 1.1 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1
- too_big = diff_file.diff_lines.count > Commit::DIFF_SAFE_LINES
2
- if too_big
3 4
  .suppressed-container
    %a.show-suppressed-diff.js-show-suppressed-diff Changes suppressed. Click to show.
5

6
%table.text-file.code.js-syntax-highlight{ class: too_big ? 'hide' : '' }
7

S
skv 已提交
8
  - last_line = 0
J
Jacob Vosmaer 已提交
9
  - raw_diff_lines = diff_file.diff_lines.to_a
10
  - diff_file.highlighted_diff_lines.each_with_index do |line, index|
11
    - line_code = generate_line_code(diff_file.file_path, line)
D
Douwe Maan 已提交
12 13
    - last_line = line.new_pos
    = render "projects/diffs/line", {line: line, diff_file: diff_file, line_code: line_code}
14

15
    - if @reply_allowed
16
      - comments = @line_notes.select { |n| n.line_code == line_code && n.active? }.sort_by(&:created_at)
17
      - unless comments.empty?
D
Douwe Maan 已提交
18
        = render "projects/notes/diff_notes_with_reply", notes: comments, line: raw_diff_lines[index].text
19

S
skv 已提交
20
  - if last_line > 0
21 22
    = render "projects/diffs/match_line", { line: "",
      line_old: last_line, line_new: last_line, bottom: true, new_file: diff_file.new_file }
S
skv 已提交
23

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