2021-04-29 21:17:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module SidebarsHelper
|
|
|
|
def sidebar_tracking_attributes_by_object(object)
|
2021-09-30 23:02:18 +05:30
|
|
|
sidebar_attributes_for_object(object).fetch(:tracking_attrs, {})
|
|
|
|
end
|
|
|
|
|
|
|
|
def sidebar_qa_selector(object)
|
|
|
|
sidebar_attributes_for_object(object).fetch(:sidebar_qa_selector, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
def scope_qa_menu_item(object)
|
|
|
|
sidebar_attributes_for_object(object).fetch(:scope_qa_menu_item, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
def scope_avatar_classes(object)
|
|
|
|
%w[avatar-container rect-avatar s32].tap do |klasses|
|
|
|
|
klass = sidebar_attributes_for_object(object).fetch(:scope_avatar_class, nil)
|
|
|
|
klasses << klass if klass
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_sidebar_context(project, user, current_ref)
|
|
|
|
context_data = project_sidebar_context_data(project, user, current_ref)
|
|
|
|
|
|
|
|
Sidebars::Projects::Context.new(**context_data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def group_sidebar_context(group, user)
|
|
|
|
context_data = group_sidebar_context_data(group, user)
|
|
|
|
|
|
|
|
Sidebars::Groups::Context.new(**context_data)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def sidebar_attributes_for_object(object)
|
2021-04-29 21:17:54 +05:30
|
|
|
case object
|
|
|
|
when Project
|
2021-09-30 23:02:18 +05:30
|
|
|
sidebar_project_attributes
|
2021-04-29 21:17:54 +05:30
|
|
|
when Group
|
2021-09-30 23:02:18 +05:30
|
|
|
sidebar_group_attributes
|
2021-04-29 21:17:54 +05:30
|
|
|
when User
|
2021-09-30 23:02:18 +05:30
|
|
|
sidebar_user_attributes
|
2021-04-29 21:17:54 +05:30
|
|
|
else
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
def sidebar_project_attributes
|
|
|
|
{
|
|
|
|
tracking_attrs: sidebar_project_tracking_attrs,
|
|
|
|
sidebar_qa_selector: 'project_sidebar',
|
|
|
|
scope_qa_menu_item: 'Project scope',
|
|
|
|
scope_avatar_class: 'project_avatar'
|
|
|
|
}
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
def sidebar_group_attributes
|
|
|
|
{
|
|
|
|
tracking_attrs: sidebar_group_tracking_attrs,
|
|
|
|
sidebar_qa_selector: 'group_sidebar',
|
|
|
|
scope_qa_menu_item: 'Group scope',
|
|
|
|
scope_avatar_class: 'group_avatar'
|
|
|
|
}
|
2021-09-04 01:27:46 +05:30
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
def sidebar_user_attributes
|
|
|
|
{
|
|
|
|
tracking_attrs: sidebar_user_profile_tracking_attrs
|
|
|
|
}
|
2021-09-04 01:27:46 +05:30
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def sidebar_project_tracking_attrs
|
|
|
|
tracking_attrs('projects_side_navigation', 'render', 'projects_side_navigation')
|
|
|
|
end
|
|
|
|
|
|
|
|
def sidebar_group_tracking_attrs
|
|
|
|
tracking_attrs('groups_side_navigation', 'render', 'groups_side_navigation')
|
|
|
|
end
|
|
|
|
|
|
|
|
def sidebar_user_profile_tracking_attrs
|
|
|
|
tracking_attrs('user_side_navigation', 'render', 'user_side_navigation')
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_sidebar_context_data(project, user, current_ref)
|
|
|
|
{
|
|
|
|
current_user: user,
|
|
|
|
container: project,
|
2021-11-11 11:23:49 +05:30
|
|
|
learn_gitlab_enabled: learn_gitlab_enabled?(project),
|
2021-06-08 01:23:25 +05:30
|
|
|
current_ref: current_ref,
|
|
|
|
jira_issues_integration: project_jira_issues_integration?,
|
|
|
|
can_view_pipeline_editor: can_view_pipeline_editor?(project),
|
|
|
|
show_cluster_hint: show_gke_cluster_integration_callout?(project)
|
2021-04-29 21:17:54 +05:30
|
|
|
}
|
|
|
|
end
|
2021-09-30 23:02:18 +05:30
|
|
|
|
|
|
|
def group_sidebar_context_data(group, user)
|
|
|
|
{
|
|
|
|
current_user: user,
|
|
|
|
container: group
|
|
|
|
}
|
|
|
|
end
|
2021-04-29 21:17:54 +05:30
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
SidebarsHelper.prepend_mod_with('SidebarsHelper')
|