summaryrefslogtreecommitdiff
path: root/app/views/shared/_file_highlight.html.haml
blob: f8ac3832a77f6119bee0cac482469ef028558ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#blob-content.file-content.code.js-syntax-highlight
  -  offset = defined?(first_line_number) ? first_line_number : 1
  .line-numbers
    - if blob.data.present?
      - link = blob_link if defined?(blob_link)
      - blob.data.each_line.each_with_index do |_, index|
        - i = index + offset
        -# We're not using `link_to` because it is too slow once we get to thousands of lines.
        %a.file-line-num.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
          = i
  - highlight = defined?(highlight_line) && highlight_line ? highlight_line - offset : nil
  .blob-content{ data: { blob_id: blob.id, path: blob.path, highlight_line: highlight, qa_selector: 'file_content' } }
    %pre.code.highlight
      %code
        = blob.present.highlight