debian-mirror-gitlab/app/views/shared/_file_highlight.html.haml

23 lines
952 B
Text
Raw Normal View History

2023-03-04 22:38:38 +05:30
-# 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
2023-06-20 00:43:36 +05:30
- line_class = "js-line-links"
- blame_path = project_blame_path(@project, tree_join(@ref, blob.path))
2023-03-04 22:38:38 +05:30
- highlighted_blob = blob.present.highlight
2020-11-24 15:15:51 +05:30
#blob-content.file-content.code.js-syntax-highlight
2022-10-02 17:18:49 +05:30
.line-numbers{ class: "gl-px-0!", data: { blame_path: blame_path } }
2015-04-26 12:48:37 +05:30
- if blob.data.present?
2023-03-04 22:38:38 +05:30
- highlighted_blob.lines.count.times do |index|
2015-04-26 12:48:37 +05:30
- i = index + offset
2023-03-04 22:38:38 +05:30
%a.file-line-num.diff-line-num{ class: line_class, href: "#L#{i}", id: "L#{i}", 'data-line-number' => i }
2022-10-02 17:18:49 +05:30
= i
2023-03-04 22:38:38 +05:30
2021-01-29 00:20:46 +05:30
.blob-content{ data: { blob_id: blob.id, path: blob.path, highlight_line: highlight, qa_selector: 'file_content' } }
2018-12-13 13:39:08 +05:30
%pre.code.highlight
%code
2023-03-04 22:38:38 +05:30
= highlighted_blob