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

72 lines
2 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)
2020-11-24 15:15:51 +05:30
link_to(sprite_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
2019-12-26 22:10:19 +05:30
def snippet_badge(snippet)
return unless attrs = snippet_badge_attributes(snippet)
2020-10-24 23:57:45 +05:30
icon_name, text = attrs
2020-03-13 15:44:24 +05:30
tag.span(class: %w[badge badge-gray]) do
2020-10-24 23:57:45 +05:30
concat(sprite_icon(icon_name, size: 14, css_class: 'gl-vertical-align-middle'))
2019-12-26 22:10:19 +05:30
concat(' ')
concat(text)
end
end
def snippet_badge_attributes(snippet)
if snippet.private?
2020-10-24 23:57:45 +05:30
['lock', _('private')]
2019-12-26 22:10:19 +05:30
end
2018-10-15 14:42:47 +05:30
end
2020-10-24 23:57:45 +05:30
def embedded_raw_snippet_button(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-10-24 23:57:45 +05:30
gitlab_raw_snippet_blob_url(snippet, blob.path),
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
2020-10-24 23:57:45 +05:30
def embedded_snippet_download_button(snippet, blob)
2019-12-26 22:10:19 +05:30
link_to(external_snippet_icon('download'),
2020-10-24 23:57:45 +05:30
gitlab_raw_snippet_blob_url(snippet, blob.path, nil, 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