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

16 lines
787 B
Text
Raw Normal View History

2020-11-24 15:15:51 +05:30
#blob-content.file-content.code.js-syntax-highlight
2021-01-29 00:20:46 +05:30
- offset = defined?(first_line_number) ? first_line_number : 1
2015-04-26 12:48:37 +05:30
.line-numbers
- if blob.data.present?
2016-08-24 12:49:21 +05:30
- link = blob_link if defined?(blob_link)
2016-04-02 18:10:28 +05:30
- blob.data.each_line.each_with_index do |_, index|
2015-04-26 12:48:37 +05:30
- i = index + offset
2015-09-11 14:41:01 +05:30
-# We're not using `link_to` because it is too slow once we get to thousands of lines.
2021-04-29 21:17:54 +05:30
%a.file-line-num.diff-line-num{ href: "#{link}#L#{i}", id: "L#{i}", 'data-line-number' => i }
2015-04-26 12:48:37 +05:30
= i
2021-01-29 00:20:46 +05:30
- 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' } }
2018-12-13 13:39:08 +05:30
%pre.code.highlight
%code
= blob.present.highlight