debian-mirror-gitlab/app/helpers/snippets_helper.rb

98 lines
2.7 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module SnippetsHelper
2019-07-07 11:18:12 +05:30
def snippets_upload_path(snippet, user)
return unless user
if snippet&.persisted?
upload_path('personal_snippet', id: snippet.id)
else
upload_path('user', id: user.id)
end
end
2019-12-26 22:10:19 +05:30
def download_raw_snippet_button(snippet)
link_to(icon('download'),
2020-01-01 13:55:28 +05:30
gitlab_raw_snippet_path(snippet, inline: false),
2019-12-26 22:10:19 +05:30
target: '_blank',
rel: 'noopener noreferrer',
class: "btn btn-sm has-tooltip",
title: 'Download',
data: { container: 'body' })
end
2017-08-17 22:00:37 +05:30
# Return the path of a snippets index for a user or for a project
#
# @returns String, path to snippet index
def subject_snippets_path(subject = nil, opts = nil)
if subject.is_a?(Project)
2017-09-10 17:25:29 +05:30
project_snippets_path(subject, opts)
2017-08-17 22:00:37 +05:30
else # assume subject === User
dashboard_snippets_path(opts)
end
end
2016-04-02 18:10:28 +05:30
# Get an array of line numbers surrounding a matching
# line, bounded by min/max.
#
# @returns Array of line numbers
def bounded_line_numbers(line, min, max, surrounding_lines)
lower = line - surrounding_lines > min ? line - surrounding_lines : min
upper = line + surrounding_lines < max ? line + surrounding_lines : max
(lower..upper).to_a
end
2019-12-26 22:10:19 +05:30
def snippet_embed_tag(snippet)
2020-01-01 13:55:28 +05:30
content_tag(:script, nil, src: gitlab_snippet_url(snippet, format: :js))
end
def snippet_embed_input(snippet)
content_tag(:input,
nil,
type: :text,
readonly: true,
class: 'js-snippet-url-area snippet-embed-input form-control',
data: { url: gitlab_snippet_url(snippet) },
value: snippet_embed_tag(snippet),
autocomplete: 'off')
2019-12-26 22:10:19 +05:30
end
def snippet_badge(snippet)
return unless attrs = snippet_badge_attributes(snippet)
css_class, text = attrs
2020-03-13 15:44:24 +05:30
tag.span(class: %w[badge badge-gray]) do
2019-12-26 22:10:19 +05:30
concat(tag.i(class: ['fa', css_class]))
concat(' ')
concat(text)
end
end
def snippet_badge_attributes(snippet)
if snippet.private?
['fa-lock', _('private')]
end
2018-10-15 14:42:47 +05:30
end
2019-12-26 22:10:19 +05:30
def embedded_raw_snippet_button
2018-10-15 14:42:47 +05:30
blob = @snippet.blob
2019-02-15 15:39:39 +05:30
return if blob.empty? || blob.binary? || blob.stored_externally?
2018-10-15 14:42:47 +05:30
2019-12-26 22:10:19 +05:30
link_to(external_snippet_icon('doc-code'),
2020-01-01 13:55:28 +05:30
gitlab_raw_snippet_url(@snippet),
2019-12-26 22:10:19 +05:30
class: 'btn',
target: '_blank',
rel: 'noopener noreferrer',
title: 'Open raw')
2018-10-15 14:42:47 +05:30
end
def embedded_snippet_download_button
2019-12-26 22:10:19 +05:30
link_to(external_snippet_icon('download'),
2020-01-01 13:55:28 +05:30
gitlab_raw_snippet_url(@snippet, inline: false),
2019-12-26 22:10:19 +05:30
class: 'btn',
target: '_blank',
title: 'Download',
rel: 'noopener noreferrer')
2018-10-15 14:42:47 +05:30
end
2014-09-02 18:07:02 +05:30
end