Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_file_highlight.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9dfbad20726660c2760ce32bac3c9bb7d105b395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-# We're not using `link_to` in the line loop because it is too slow once we get to thousands of lines.

- offset = defined?(first_line_number) ? first_line_number : 1
- highlight = defined?(highlight_line) && highlight_line ? highlight_line - offset : nil
- line_class = "js-line-links"
- blame_path = project_blame_path(@project, tree_join(@ref, blob.path))

- highlighted_blob = blob.present.highlight

#blob-content.file-content.code.js-syntax-highlight
  .line-numbers{ class: "gl-px-0!", data: { blame_path: blame_path } }
    - if blob.data.present?
      - highlighted_blob.lines.count.times do |index|
        - i = index + offset

        %a.file-line-num.diff-line-num{ class: line_class, href: "#L#{i}", id: "L#{i}", 'data-line-number' => i }
          = i

  .blob-content{ data: { blob_id: blob.id, path: blob.path, highlight_line: highlight, qa_selector: 'file_content' } }
    %pre.code.highlight
      %code
        = highlighted_blob