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

54 lines
1.4 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
module NavHelper
2017-09-10 17:25:29 +05:30
def page_with_sidebar_class
class_name = page_gutter_class
class_name << 'page-with-new-sidebar' if defined?(@new_sidebar) && @new_sidebar
class_name << 'page-with-icon-sidebar' if collapsed_sidebar? && @new_sidebar
class_name
end
2016-04-02 18:10:28 +05:30
def page_gutter_class
if current_path?('merge_requests#show') ||
2017-09-10 17:25:29 +05:30
current_path?('projects/merge_requests/conflicts#show') ||
2017-08-17 22:00:37 +05:30
current_path?('issues#show') ||
current_path?('milestones#show')
2016-04-02 18:10:28 +05:30
if cookies[:collapsed_gutter] == 'true'
2017-09-10 17:25:29 +05:30
%w[page-gutter right-sidebar-collapsed]
2016-04-02 18:10:28 +05:30
else
2017-09-10 17:25:29 +05:30
%w[page-gutter right-sidebar-expanded]
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]
2017-08-17 22:00:37 +05:30
elsif current_path?('wikis#show') ||
current_path?('wikis#edit') ||
current_path?('wikis#update') ||
current_path?('wikis#history') ||
current_path?('wikis#git_access')
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
2015-09-11 14:41:01 +05:30
def nav_header_class
2017-09-10 17:25:29 +05:30
class_names = []
class_names << 'with-horizontal-nav' if defined?(nav) && nav
2016-06-22 15:30:34 +05:30
2017-09-10 17:25:29 +05:30
class_names
2016-06-02 11:05:42 +05:30
end
def layout_nav_class
2017-09-10 17:25:29 +05:30
return [] if show_new_nav?
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
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-06-02 11:05:42 +05:30
end
def nav_control_class
"nav-control" if current_user
2015-09-11 14:41:01 +05:30
end
2015-04-26 12:48:37 +05:30
end