2016-02-05 11:20:29 -05:00
|
|
|
- snippet_blob = chunk_snippet(snippet_blob, @search_term)
|
|
|
|
- snippet = snippet_blob[:snippet_object]
|
|
|
|
- snippet_chunks = snippet_blob[:snippet_chunks]
|
|
|
|
|
2014-08-29 15:22:45 -04:00
|
|
|
.search-result-row
|
|
|
|
%span
|
2016-02-05 11:20:29 -05:00
|
|
|
= snippet.title
|
2014-08-29 15:22:45 -04:00
|
|
|
by
|
2016-02-05 11:20:29 -05:00
|
|
|
= link_to user_snippets_path(snippet.author) do
|
2018-02-09 05:43:12 -05:00
|
|
|
= image_tag avatar_icon_for_user(snippet.author), class: "avatar avatar-inline s16", alt: ''
|
2016-02-05 11:20:29 -05:00
|
|
|
= snippet.author_name
|
2017-01-13 11:07:21 -05:00
|
|
|
%span.light= time_ago_with_tooltip(snippet.created_at)
|
2014-08-29 15:22:45 -04:00
|
|
|
%h4.snippet-title
|
2016-02-05 11:20:29 -05:00
|
|
|
- snippet_path = reliable_snippet_path(snippet)
|
2017-02-14 09:08:20 -05:00
|
|
|
.file-holder
|
|
|
|
.js-file-title.file-title
|
|
|
|
= link_to snippet_path do
|
2014-10-01 18:21:29 -04:00
|
|
|
%i.fa.fa-file
|
2016-02-05 11:20:29 -05:00
|
|
|
%strong= snippet.file_name
|
2017-02-14 09:08:20 -05:00
|
|
|
- if markup?(snippet.file_name)
|
|
|
|
.file-content.wiki
|
|
|
|
- snippet_chunks.each do |chunk|
|
|
|
|
- unless chunk[:data].empty?
|
2018-09-04 09:42:23 -04:00
|
|
|
= markup(snippet.file_name, chunk[:data], legacy_render_context(params))
|
2017-02-14 09:08:20 -05:00
|
|
|
- else
|
|
|
|
.file-content.code
|
|
|
|
.nothing-here-block Empty file
|
|
|
|
- else
|
|
|
|
.file-content.code.js-syntax-highlight
|
|
|
|
.line-numbers
|
2016-02-05 11:20:29 -05:00
|
|
|
- snippet_chunks.each do |chunk|
|
|
|
|
- unless chunk[:data].empty?
|
2017-02-14 09:08:20 -05:00
|
|
|
- Gitlab::Git::Util.count_lines(chunk[:data]).times do |index|
|
|
|
|
- offset = defined?(chunk[:start_line]) ? chunk[:start_line] : 1
|
|
|
|
- i = index + offset
|
|
|
|
= link_to snippet_path+"#L#{i}", id: "L#{i}", rel: "#L#{i}", class: "diff-line-num" do
|
|
|
|
%i.fa.fa-link
|
|
|
|
= i
|
|
|
|
.blob-content
|
|
|
|
- snippet_chunks.each do |chunk|
|
|
|
|
- unless chunk[:data].empty?
|
2018-09-11 00:37:44 -04:00
|
|
|
= highlight(snippet.file_name, chunk[:data])
|
2014-08-29 15:22:45 -04:00
|
|
|
- else
|
|
|
|
.file-content.code
|
|
|
|
.nothing-here-block Empty file
|