2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
module NavHelper
|
2018-03-27 19:54:05 +05:30
|
|
|
def header_links
|
|
|
|
@header_links ||= get_header_links
|
|
|
|
end
|
|
|
|
|
|
|
|
def header_link?(link)
|
|
|
|
header_links.include?(link)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def page_with_sidebar_class
|
|
|
|
class_name = page_gutter_class
|
2018-03-17 18:26:18 +05:30
|
|
|
class_name << 'page-with-contextual-sidebar' if defined?(@left_sidebar) && @left_sidebar
|
|
|
|
class_name << 'page-with-icon-sidebar' if collapsed_sidebar? && @left_sidebar
|
2018-11-08 19:23:39 +05:30
|
|
|
class_name -= ['right-sidebar-expanded'] if defined?(@right_sidebar) && !@right_sidebar
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
class_name
|
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
def page_gutter_class
|
2022-07-16 23:28:13 +05:30
|
|
|
moved_sidebar_enabled = current_controller?('merge_requests') && moved_mr_sidebar_enabled?
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
if page_has_markdown?
|
2016-04-02 18:10:28 +05:30
|
|
|
if cookies[:collapsed_gutter] == 'true'
|
2022-07-16 23:28:13 +05:30
|
|
|
["page-gutter", "#{'right-sidebar-collapsed' unless moved_sidebar_enabled}"]
|
2016-04-02 18:10:28 +05:30
|
|
|
else
|
2022-07-16 23:28:13 +05:30
|
|
|
["page-gutter", "#{'right-sidebar-expanded' unless moved_sidebar_enabled}"]
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
elsif current_path?('jobs#show')
|
|
|
|
%w[page-gutter build-sidebar right-sidebar-expanded]
|
2020-07-28 23:09:34 +05:30
|
|
|
elsif current_controller?('wikis') && current_action?('show', 'create', 'edit', 'update', 'history', 'git_access', 'destroy', 'diff')
|
2017-09-10 17:25:29 +05:30
|
|
|
%w[page-gutter wiki-sidebar right-sidebar-expanded]
|
|
|
|
else
|
|
|
|
[]
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def nav_control_class
|
|
|
|
"nav-control" if current_user
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def user_dropdown_class
|
2017-09-10 17:25:29 +05:30
|
|
|
class_names = []
|
2018-03-17 18:26:18 +05:30
|
|
|
class_names << 'header-user-dropdown-toggle'
|
|
|
|
class_names << 'impersonated-user' if session[:impersonator_id]
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
class_names
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
def page_has_markdown?
|
|
|
|
current_path?('merge_requests#show') ||
|
|
|
|
current_path?('projects/merge_requests/conflicts#show') ||
|
|
|
|
current_path?('issues#show') ||
|
2020-05-24 23:13:21 +05:30
|
|
|
current_path?('milestones#show') ||
|
2021-01-03 14:25:43 +05:30
|
|
|
current_path?('issues#designs') ||
|
|
|
|
current_path?('incidents#show')
|
2019-02-15 15:39:39 +05:30
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
def admin_monitoring_nav_links
|
2022-07-16 23:28:13 +05:30
|
|
|
%w(system_info background_migrations background_jobs health_check)
|
2019-09-04 21:01:54 +05:30
|
|
|
end
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
def admin_analytics_nav_links
|
2021-09-30 23:02:18 +05:30
|
|
|
%w(dev_ops_report usage_trends)
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def get_header_links
|
|
|
|
links = if current_user
|
|
|
|
[:user_dropdown]
|
|
|
|
else
|
|
|
|
[:sign_in]
|
|
|
|
end
|
|
|
|
|
|
|
|
if can?(current_user, :read_cross_project)
|
|
|
|
links += [:issues, :merge_requests, :todos] if current_user.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
if @project&.persisted? || can?(current_user, :read_cross_project)
|
|
|
|
links << :search
|
|
|
|
end
|
|
|
|
|
|
|
|
if session[:impersonator_id]
|
|
|
|
links << :admin_impersonation
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
if Gitlab::CurrentSettings.admin_mode && current_user_mode.admin_mode?
|
|
|
|
links << :admin_mode
|
2019-12-21 20:55:43 +05:30
|
|
|
end
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
links
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
NavHelper.prepend_mod_with('NavHelper')
|