98 lines
2.9 KiB
Ruby
98 lines
2.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Sidebars
|
|
module Projects
|
|
module Menus
|
|
class InfrastructureMenu < ::Sidebars::Menu
|
|
override :configure_menu_items
|
|
def configure_menu_items
|
|
return false unless context.project.feature_available?(:operations, context.current_user)
|
|
|
|
add_item(kubernetes_menu_item)
|
|
add_item(serverless_menu_item)
|
|
add_item(terraform_menu_item)
|
|
|
|
true
|
|
end
|
|
|
|
override :link
|
|
def link
|
|
renderable_items.first.link
|
|
end
|
|
|
|
override :extra_container_html_options
|
|
def extra_container_html_options
|
|
{
|
|
class: 'shortcuts-infrastructure'
|
|
}
|
|
end
|
|
|
|
override :title
|
|
def title
|
|
_('Infrastructure')
|
|
end
|
|
|
|
override :sprite_icon
|
|
def sprite_icon
|
|
'cloud-gear'
|
|
end
|
|
|
|
private
|
|
|
|
def kubernetes_menu_item
|
|
unless can?(context.current_user, :read_cluster, context.project)
|
|
return ::Sidebars::NilMenuItem.new(item_id: :kubernetes)
|
|
end
|
|
|
|
::Sidebars::MenuItem.new(
|
|
title: _('Kubernetes clusters'),
|
|
link: project_clusters_path(context.project),
|
|
active_routes: { controller: [:cluster_agents, :clusters] },
|
|
container_html_options: { class: 'shortcuts-kubernetes' },
|
|
hint_html_options: kubernetes_hint_html_options,
|
|
item_id: :kubernetes
|
|
)
|
|
end
|
|
|
|
def kubernetes_hint_html_options
|
|
return {} unless context.show_cluster_hint
|
|
|
|
{ disabled: true,
|
|
data: { trigger: 'manual',
|
|
container: 'body',
|
|
placement: 'right',
|
|
highlight: UserCalloutsHelper::GKE_CLUSTER_INTEGRATION,
|
|
highlight_priority: UserCallout.feature_names[:GKE_CLUSTER_INTEGRATION],
|
|
dismiss_endpoint: user_callouts_path,
|
|
auto_devops_help_path: help_page_path('topics/autodevops/index.md') } }
|
|
end
|
|
|
|
def serverless_menu_item
|
|
unless can?(context.current_user, :read_cluster, context.project)
|
|
return ::Sidebars::NilMenuItem.new(item_id: :serverless)
|
|
end
|
|
|
|
::Sidebars::MenuItem.new(
|
|
title: _('Serverless platform'),
|
|
link: project_serverless_functions_path(context.project),
|
|
active_routes: { controller: :functions },
|
|
item_id: :serverless
|
|
)
|
|
end
|
|
|
|
def terraform_menu_item
|
|
unless can?(context.current_user, :read_terraform_state, context.project)
|
|
return ::Sidebars::NilMenuItem.new(item_id: :terraform)
|
|
end
|
|
|
|
::Sidebars::MenuItem.new(
|
|
title: _('Terraform'),
|
|
link: project_terraform_index_path(context.project),
|
|
active_routes: { controller: :terraform },
|
|
item_id: :terraform
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|