2018-11-26 06:38:34 -05:00
|
|
|
-# WAIT! Before adding more items to the nav bar, please see
|
2019-09-18 10:02:45 -04:00
|
|
|
-# https://gitlab.com/gitlab-org/gitlab-foss/issues/49713 for more information.
|
2017-09-06 06:58:24 -04:00
|
|
|
%ul.list-unstyled.navbar-sub-nav
|
2017-12-11 09:21:06 -05:00
|
|
|
- if dashboard_nav_link?(:projects)
|
2020-11-05 19:09:14 -05:00
|
|
|
= nav_link(path: ['root#index', 'projects#trending', 'projects#starred', 'dashboard/projects#index'], html_options: { id: 'nav-projects-dropdown', class: "home dropdown header-projects qa-projects-dropdown", data: { track_label: "projects_dropdown", track_event: "click_dropdown" } }) do
|
2020-09-29 14:09:52 -04:00
|
|
|
%button{ type: 'button', data: { toggle: "dropdown" } }
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('Projects')
|
2020-09-30 23:09:55 -04:00
|
|
|
= sprite_icon('chevron-down', css_class: 'caret-down')
|
2018-07-06 09:40:11 -04:00
|
|
|
.dropdown-menu.frequent-items-dropdown-menu
|
2017-12-11 09:21:06 -05:00
|
|
|
= render "layouts/nav/projects_dropdown/show"
|
2017-09-06 06:58:24 -04:00
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
- if dashboard_nav_link?(:groups)
|
2020-11-05 19:09:14 -05:00
|
|
|
= nav_link(controller: ['dashboard/groups', 'explore/groups'], html_options: { id: 'nav-groups-dropdown', class: "d-none d-md-block home dropdown header-groups qa-groups-dropdown", data: { track_label: "groups_dropdown", track_event: "click_dropdown" } }) do
|
2020-09-29 14:09:52 -04:00
|
|
|
%button{ type: 'button', data: { toggle: "dropdown" } }
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('Groups')
|
2020-09-30 23:09:55 -04:00
|
|
|
= sprite_icon('chevron-down', css_class: 'caret-down')
|
2018-07-06 09:40:11 -04:00
|
|
|
.dropdown-menu.frequent-items-dropdown-menu
|
|
|
|
= render "layouts/nav/groups_dropdown/show"
|
2017-09-06 06:58:24 -04:00
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
- if any_dashboard_nav_link?([:groups, :milestones, :activity, :snippets])
|
2020-11-05 19:09:14 -05:00
|
|
|
= nav_link(html_options: { id: 'nav-more-dropdown', class: "header-more dropdown", data: { track_label: "more_dropdown", track_event: "click_more_link" } }) do
|
2019-09-30 08:06:01 -04:00
|
|
|
%a{ href: "#", data: { toggle: "dropdown", qa_selector: 'more_dropdown' } }
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('More')
|
2020-09-30 23:09:55 -04:00
|
|
|
= sprite_icon('chevron-down', css_class: 'caret-down')
|
2017-12-11 09:21:06 -05:00
|
|
|
.dropdown-menu
|
|
|
|
%ul
|
2019-09-26 11:06:18 -04:00
|
|
|
- if dashboard_nav_link?(:groups)
|
|
|
|
%li.d-md-none
|
2020-07-02 11:09:08 -04:00
|
|
|
= link_to dashboard_groups_path, class: 'dashboard-shortcuts-groups', data: { qa_selector: 'groups_link' } do
|
2019-09-26 11:06:18 -04:00
|
|
|
= _('Groups')
|
2017-12-11 09:21:06 -05:00
|
|
|
- if dashboard_nav_link?(:activity)
|
|
|
|
= nav_link(path: 'dashboard#activity') do
|
2020-07-02 11:09:08 -04:00
|
|
|
= link_to activity_dashboard_path, class: 'dashboard-shortcuts-activity', data: { qa_selector: 'activity_link' } do
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('Activity')
|
2017-09-06 06:58:24 -04:00
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
- if dashboard_nav_link?(:milestones)
|
|
|
|
= nav_link(controller: 'dashboard/milestones') do
|
2020-07-02 11:09:08 -04:00
|
|
|
= link_to dashboard_milestones_path, class: 'dashboard-shortcuts-milestones', data: { qa_selector: 'milestones_link' } do
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('Milestones')
|
2017-09-06 06:58:24 -04:00
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
- if dashboard_nav_link?(:snippets)
|
|
|
|
= nav_link(controller: 'dashboard/snippets') do
|
2019-09-30 08:06:01 -04:00
|
|
|
= link_to dashboard_snippets_path, class: 'dashboard-shortcuts-snippets', data: { qa_selector: 'snippets_link' } do
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('Snippets')
|
2019-07-03 14:29:17 -04:00
|
|
|
|
2019-09-26 11:06:18 -04:00
|
|
|
%li.dropdown
|
2019-09-25 14:06:17 -04:00
|
|
|
= render_if_exists 'dashboard/nav_link_list'
|
2019-12-18 13:08:04 -05:00
|
|
|
|
2018-11-26 06:38:34 -05:00
|
|
|
- if current_user.admin?
|
|
|
|
= nav_link(controller: 'admin/dashboard') do
|
2019-09-26 11:06:18 -04:00
|
|
|
= link_to admin_root_path, class: 'admin-icon qa-admin-area-link d-xl-none' do
|
2018-11-26 06:38:34 -05:00
|
|
|
= _('Admin Area')
|
2019-10-21 08:06:14 -04:00
|
|
|
- if Feature.enabled?(:user_mode_in_session)
|
|
|
|
- if header_link?(:admin_mode)
|
|
|
|
= nav_link(controller: 'admin/sessions') do
|
2020-01-14 07:07:41 -05:00
|
|
|
= link_to destroy_admin_session_path, method: :post, class: 'd-lg-none lock-open-icon' do
|
2019-10-21 08:06:14 -04:00
|
|
|
= _('Leave Admin Mode')
|
|
|
|
- elsif current_user.admin?
|
|
|
|
= nav_link(controller: 'admin/sessions') do
|
|
|
|
= link_to new_admin_session_path, class: 'd-lg-none lock-icon' do
|
|
|
|
= _('Enter Admin Mode')
|
2018-11-26 06:38:34 -05:00
|
|
|
- if Gitlab::Sherlock.enabled?
|
|
|
|
%li
|
2019-09-26 11:06:18 -04:00
|
|
|
= link_to sherlock_transactions_path, class: 'admin-icon' do
|
2018-11-26 06:38:34 -05:00
|
|
|
= _('Sherlock Transactions')
|
|
|
|
|
2019-09-26 11:06:18 -04:00
|
|
|
- if current_user.admin?
|
|
|
|
= nav_link(controller: 'admin/dashboard', html_options: { class: "d-none d-xl-block"}) do
|
|
|
|
= link_to admin_root_path, class: 'admin-icon qa-admin-area-link', title: _('Admin Area'), aria: { label: _('Admin Area') }, data: {toggle: 'tooltip', placement: 'bottom', container: 'body'} do
|
|
|
|
= sprite_icon('admin', size: 18)
|
|
|
|
|
2019-10-21 08:06:14 -04:00
|
|
|
- if Feature.enabled?(:user_mode_in_session)
|
|
|
|
- if header_link?(:admin_mode)
|
2020-11-09 16:08:48 -05:00
|
|
|
= nav_link(controller: 'admin/sessions', html_options: { class: "d-none d-lg-block"}) do
|
2020-01-21 10:08:26 -05:00
|
|
|
= link_to destroy_admin_session_path, method: :post, title: _('Leave Admin Mode'), aria: { label: _('Leave Admin Mode') }, data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
|
2019-10-21 08:06:14 -04:00
|
|
|
= sprite_icon('lock-open', size: 18)
|
|
|
|
- elsif current_user.admin?
|
2020-11-09 16:08:48 -05:00
|
|
|
= nav_link(controller: 'admin/sessions', html_options: { class: "d-none d-lg-block"}) do
|
2019-10-21 08:06:14 -04:00
|
|
|
= link_to new_admin_session_path, title: _('Enter Admin Mode'), aria: { label: _('Enter Admin Mode') }, data: { toggle: 'tooltip', placement: 'bottom', container: 'body' } do
|
|
|
|
= sprite_icon('lock', size: 18)
|
2019-09-26 11:06:18 -04:00
|
|
|
|
2017-09-06 06:58:24 -04:00
|
|
|
-# Shortcut to Dashboard > Projects
|
2017-12-11 09:21:06 -05:00
|
|
|
- if dashboard_nav_link?(:projects)
|
|
|
|
%li.hidden
|
2019-06-05 19:21:22 -04:00
|
|
|
= link_to dashboard_projects_path, class: 'dashboard-shortcuts-projects' do
|
2018-06-13 02:30:40 -04:00
|
|
|
= _('Projects')
|
2017-09-06 06:58:24 -04:00
|
|
|
|
2019-05-08 01:26:10 -04:00
|
|
|
= render_if_exists 'layouts/nav/geo_primary_node_url'
|