2020-04-22 19:07:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module NavbarStructureHelper
|
|
|
|
def insert_after_nav_item(before_nav_item_name, new_nav_item:)
|
|
|
|
expect(structure).to include(a_hash_including(nav_item: before_nav_item_name))
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
index = structure.find_index { |h| h[:nav_item] == before_nav_item_name if h }
|
2020-04-22 19:07:51 +05:30
|
|
|
structure.insert(index + 1, new_nav_item)
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_after_sub_nav_item(before_sub_nav_item_name, within:, new_sub_nav_item_name:)
|
|
|
|
expect(structure).to include(a_hash_including(nav_item: within))
|
2020-11-24 15:15:51 +05:30
|
|
|
hash = structure.find { |h| h[:nav_item] == within if h }
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
expect(hash).to have_key(:nav_sub_items)
|
|
|
|
expect(hash[:nav_sub_items]).to include(before_sub_nav_item_name)
|
|
|
|
|
|
|
|
index = hash[:nav_sub_items].find_index(before_sub_nav_item_name)
|
|
|
|
hash[:nav_sub_items].insert(index + 1, new_sub_nav_item_name)
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
|
2022-01-26 12:08:38 +05:30
|
|
|
def insert_before_sub_nav_item(after_sub_nav_item_name, within:, new_sub_nav_item_name:)
|
|
|
|
expect(structure).to include(a_hash_including(nav_item: within))
|
|
|
|
hash = structure.find { |h| h[:nav_item] == within if h }
|
|
|
|
|
|
|
|
expect(hash).to have_key(:nav_sub_items)
|
|
|
|
expect(hash[:nav_sub_items]).to include(after_sub_nav_item_name)
|
|
|
|
|
|
|
|
index = hash[:nav_sub_items].find_index(after_sub_nav_item_name)
|
|
|
|
hash[:nav_sub_items].insert(index, new_sub_nav_item_name)
|
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
def insert_package_nav(within)
|
|
|
|
insert_after_nav_item(
|
|
|
|
within,
|
|
|
|
new_nav_item: {
|
2022-10-11 01:57:18 +05:30
|
|
|
nav_item: _('Packages and registries'),
|
2020-10-24 23:57:45 +05:30
|
|
|
nav_sub_items: [_('Package Registry')]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-12-11 22:18:48 +05:30
|
|
|
def insert_customer_relations_nav(within)
|
|
|
|
insert_after_nav_item(
|
|
|
|
within,
|
|
|
|
new_nav_item: {
|
|
|
|
nav_item: _('Customer relations'),
|
|
|
|
nav_sub_items: [
|
|
|
|
_('Contacts'),
|
|
|
|
_('Organizations')
|
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def insert_container_nav
|
2020-10-24 23:57:45 +05:30
|
|
|
insert_after_sub_nav_item(
|
|
|
|
_('Package Registry'),
|
2022-10-11 01:57:18 +05:30
|
|
|
within: _('Packages and registries'),
|
2020-10-24 23:57:45 +05:30
|
|
|
new_sub_nav_item_name: _('Container Registry')
|
|
|
|
)
|
|
|
|
end
|
2021-01-29 00:20:46 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
def insert_dependency_proxy_nav
|
2021-01-29 00:20:46 +05:30
|
|
|
insert_after_sub_nav_item(
|
|
|
|
_('Package Registry'),
|
2022-10-11 01:57:18 +05:30
|
|
|
within: _('Packages and registries'),
|
2021-01-29 00:20:46 +05:30
|
|
|
new_sub_nav_item_name: _('Dependency Proxy')
|
|
|
|
)
|
|
|
|
end
|
2021-04-29 21:17:54 +05:30
|
|
|
|
|
|
|
def insert_infrastructure_registry_nav
|
|
|
|
insert_after_sub_nav_item(
|
|
|
|
_('Package Registry'),
|
2022-10-11 01:57:18 +05:30
|
|
|
within: _('Packages and registries'),
|
2021-04-29 21:17:54 +05:30
|
|
|
new_sub_nav_item_name: _('Infrastructure Registry')
|
|
|
|
)
|
|
|
|
end
|
2021-11-18 22:05:49 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
def insert_harbor_registry_nav(within)
|
|
|
|
insert_after_sub_nav_item(
|
|
|
|
within,
|
2022-10-11 01:57:18 +05:30
|
|
|
within: _('Packages and registries'),
|
2022-05-07 20:08:51 +05:30
|
|
|
new_sub_nav_item_name: _('Harbor Registry')
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
def insert_observability_nav
|
|
|
|
insert_after_nav_item(
|
|
|
|
_('Kubernetes'),
|
|
|
|
new_nav_item: {
|
|
|
|
nav_item: _('Observability'),
|
2023-01-13 00:05:48 +05:30
|
|
|
nav_sub_items: [
|
|
|
|
_('Dashboards'),
|
|
|
|
_('Explore'),
|
|
|
|
_('Manage Dashboards')
|
|
|
|
]
|
2022-10-11 01:57:18 +05:30
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
def insert_infrastructure_google_cloud_nav
|
|
|
|
insert_after_sub_nav_item(
|
|
|
|
_('Terraform'),
|
|
|
|
within: _('Infrastructure'),
|
|
|
|
new_sub_nav_item_name: _('Google Cloud')
|
|
|
|
)
|
|
|
|
end
|
2022-06-21 17:19:12 +05:30
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
def project_analytics_sub_nav_item
|
2022-06-21 17:19:12 +05:30
|
|
|
[
|
|
|
|
_('Value stream'),
|
|
|
|
_('CI/CD'),
|
|
|
|
(_('Code review') if Gitlab.ee?),
|
|
|
|
(_('Merge request') if Gitlab.ee?),
|
|
|
|
_('Repository')
|
|
|
|
]
|
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
def group_analytics_sub_nav_item
|
|
|
|
[
|
|
|
|
_('Contribution')
|
|
|
|
]
|
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
end
|
2022-06-21 17:19:12 +05:30
|
|
|
|
|
|
|
NavbarStructureHelper.prepend_mod
|