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

88 lines
2.5 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
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
2021-10-27 15:23:28 +05:30
def snippet_report_abuse_path(snippet)
return unless snippet.submittable_as_spam_by?(current_user)
mark_as_spam_snippet_path(snippet)
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),
2021-04-29 21:17:54 +05:30
class: 'gl-button btn btn-default',
2019-12-26 22:10:19 +05:30
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),
2021-04-29 21:17:54 +05:30
class: 'gl-button btn btn-default',
2019-12-26 22:10:19 +05:30
target: '_blank',
title: 'Download',
rel: 'noopener noreferrer')
2018-10-15 14:42:47 +05:30
end
2021-04-17 20:07:23 +05:30
def snippet_file_count(snippet)
file_count = snippet.statistics&.file_count
return unless file_count&.nonzero?
tooltip = n_('%d file', '%d files', file_count) % file_count
tag.span(class: 'file_count', title: tooltip, data: { toggle: 'tooltip', container: 'body' }) do
concat(sprite_icon('documents', css_class: 'gl-vertical-align-middle'))
concat(' ')
concat(file_count)
end
end
2021-06-08 01:23:25 +05:30
def project_snippets_award_api_path(snippet)
if Feature.enabled?(:improved_emoji_picker, snippet.project, default_enabled: :yaml)
api_v4_projects_snippets_award_emoji_path(id: snippet.project.id, snippet_id: snippet.id)
end
end
2014-09-02 18:07:02 +05:30
end