2015-01-30 14:23:35 -05:00
|
|
|
module NavHelper
|
2017-07-31 04:07:51 -04:00
|
|
|
def page_with_sidebar_class
|
|
|
|
class_name = page_gutter_class
|
|
|
|
class_name << 'page-with-new-sidebar' if defined?(@new_sidebar) && @new_sidebar
|
2017-08-07 13:28:24 -04:00
|
|
|
class_name << 'page-with-icon-sidebar' if collapsed_sidebar? && @new_sidebar
|
2017-07-31 04:07:51 -04:00
|
|
|
|
|
|
|
class_name
|
|
|
|
end
|
|
|
|
|
2016-01-27 17:38:19 -05:00
|
|
|
def page_gutter_class
|
2016-02-15 09:19:23 -05:00
|
|
|
if current_path?('merge_requests#show') ||
|
2017-06-13 18:12:31 -04:00
|
|
|
current_path?('projects/merge_requests/conflicts#show') ||
|
2017-03-23 16:53:51 -04:00
|
|
|
current_path?('issues#show') ||
|
|
|
|
current_path?('milestones#show')
|
2016-01-28 18:26:47 -05:00
|
|
|
if cookies[:collapsed_gutter] == 'true'
|
2017-07-31 04:07:51 -04:00
|
|
|
%w[page-gutter right-sidebar-collapsed]
|
2016-01-28 18:26:47 -05:00
|
|
|
else
|
2017-07-31 04:07:51 -04:00
|
|
|
%w[page-gutter right-sidebar-expanded]
|
2016-01-28 18:26:47 -05:00
|
|
|
end
|
2017-06-08 08:21:03 -04:00
|
|
|
elsif current_path?('jobs#show')
|
2017-07-31 04:07:51 -04:00
|
|
|
%w[page-gutter build-sidebar right-sidebar-expanded]
|
2016-11-14 16:33:21 -05:00
|
|
|
elsif current_path?('wikis#show') ||
|
2016-12-15 17:14:20 -05:00
|
|
|
current_path?('wikis#edit') ||
|
2017-03-20 09:53:23 -04:00
|
|
|
current_path?('wikis#update') ||
|
2016-12-15 17:14:20 -05:00
|
|
|
current_path?('wikis#history') ||
|
|
|
|
current_path?('wikis#git_access')
|
2017-07-31 04:07:51 -04:00
|
|
|
%w[page-gutter wiki-sidebar right-sidebar-expanded]
|
|
|
|
else
|
|
|
|
[]
|
2016-01-27 17:38:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-04-22 09:48:39 -04:00
|
|
|
def nav_header_class
|
2017-07-31 04:07:51 -04:00
|
|
|
class_names = []
|
|
|
|
class_names << 'with-horizontal-nav' if defined?(nav) && nav
|
2016-06-15 12:23:49 -04:00
|
|
|
|
2017-07-31 04:07:51 -04:00
|
|
|
class_names
|
2015-04-22 09:48:39 -04:00
|
|
|
end
|
2016-05-13 12:12:49 -04:00
|
|
|
|
|
|
|
def layout_nav_class
|
2017-07-31 04:07:51 -04:00
|
|
|
return [] if show_new_nav?
|
2017-03-22 19:01:28 -04:00
|
|
|
|
2017-07-31 04:07:51 -04:00
|
|
|
class_names = []
|
|
|
|
class_names << 'page-with-layout-nav' if defined?(nav) && nav
|
|
|
|
class_names << 'page-with-sub-nav' if content_for?(:sub_nav)
|
|
|
|
|
|
|
|
class_names
|
2016-05-13 12:12:49 -04:00
|
|
|
end
|
|
|
|
|
2016-05-16 15:58:15 -04:00
|
|
|
def nav_control_class
|
|
|
|
"nav-control" if current_user
|
|
|
|
end
|
2015-01-30 14:23:35 -05:00
|
|
|
end
|