Add visibility description tooltip to snippet and project visibility labels
This commit is contained in:
parent
085e45a81c
commit
d65647e90c
4 changed files with 27 additions and 47 deletions
|
@ -27,16 +27,20 @@ module IconsHelper
|
|||
end
|
||||
end
|
||||
|
||||
def public_icon
|
||||
icon('globe fw')
|
||||
end
|
||||
def visibility_level_icon(level, fw: true)
|
||||
name =
|
||||
case level
|
||||
when Gitlab::VisibilityLevel::PRIVATE
|
||||
'lock'
|
||||
when Gitlab::VisibilityLevel::INTERNAL
|
||||
'shield'
|
||||
else # Gitlab::VisibilityLevel::PUBLIC
|
||||
'globe'
|
||||
end
|
||||
|
||||
def internal_icon
|
||||
icon('shield fw')
|
||||
end
|
||||
name << " fw" if fw
|
||||
|
||||
def private_icon
|
||||
icon('lock fw')
|
||||
icon(name)
|
||||
end
|
||||
|
||||
def file_type_icon_class(type, mode, name)
|
||||
|
|
|
@ -25,48 +25,24 @@ module VisibilityLevelHelper
|
|||
end
|
||||
|
||||
def project_visibility_level_description(level)
|
||||
capture_haml do
|
||||
haml_tag :span do
|
||||
case level
|
||||
when Gitlab::VisibilityLevel::PRIVATE
|
||||
haml_concat "Project access must be granted explicitly for each user."
|
||||
when Gitlab::VisibilityLevel::INTERNAL
|
||||
haml_concat "The project can be cloned by"
|
||||
haml_concat "any logged in user."
|
||||
when Gitlab::VisibilityLevel::PUBLIC
|
||||
haml_concat "The project can be cloned"
|
||||
haml_concat "without any"
|
||||
haml_concat "authentication."
|
||||
end
|
||||
end
|
||||
case level
|
||||
when Gitlab::VisibilityLevel::PRIVATE
|
||||
"Project access must be granted explicitly for each user."
|
||||
when Gitlab::VisibilityLevel::INTERNAL
|
||||
"The project can be cloned by any logged in user."
|
||||
when Gitlab::VisibilityLevel::PUBLIC
|
||||
"The project can be cloned without any authentication."
|
||||
end
|
||||
end
|
||||
|
||||
def snippet_visibility_level_description(level)
|
||||
capture_haml do
|
||||
haml_tag :span do
|
||||
case level
|
||||
when Gitlab::VisibilityLevel::PRIVATE
|
||||
haml_concat "The snippet is visible only for me."
|
||||
when Gitlab::VisibilityLevel::INTERNAL
|
||||
haml_concat "The snippet is visible for any logged in user."
|
||||
when Gitlab::VisibilityLevel::PUBLIC
|
||||
haml_concat "The snippet can be accessed"
|
||||
haml_concat "without any"
|
||||
haml_concat "authentication."
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def visibility_level_icon(level)
|
||||
case level
|
||||
when Gitlab::VisibilityLevel::PRIVATE
|
||||
private_icon
|
||||
"The snippet is visible only for me."
|
||||
when Gitlab::VisibilityLevel::INTERNAL
|
||||
internal_icon
|
||||
"The snippet is visible for any logged in user."
|
||||
when Gitlab::VisibilityLevel::PUBLIC
|
||||
public_icon
|
||||
"The snippet can be accessed without any authentication."
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
Forked from
|
||||
= link_to project_path(forked_from_project) do
|
||||
= forked_from_project.namespace.try(:name)
|
||||
.visibility-level-label
|
||||
= visibility_level_icon(@project.visibility_level)
|
||||
.cover-controls.left
|
||||
.visibility-level-label.has_tooltip{title: project_visibility_level_description(@project.visibility_level), data: { container: 'body' } }
|
||||
= visibility_level_icon(@project.visibility_level, fw: false)
|
||||
= visibility_level_label(@project.visibility_level)
|
||||
|
||||
.cover-controls
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.snippet-details
|
||||
.page-title
|
||||
.snippet-box{class: visibility_level_color(@snippet.visibility_level)}
|
||||
= visibility_level_icon(@snippet.visibility_level)
|
||||
.snippet-box.has_tooltip{class: visibility_level_color(@snippet.visibility_level), title: snippet_visibility_level_description(@snippet.visibility_level), data: { container: 'body' }}
|
||||
= visibility_level_icon(@snippet.visibility_level, fw: false)
|
||||
= visibility_level_label(@snippet.visibility_level)
|
||||
%span.snippet-id Snippet ##{@snippet.id}
|
||||
%span.creator
|
||||
|
|
Loading…
Reference in a new issue