katello 4.2.2 → 4.3.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (495) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/katello.common.js +0 -67
  3. data/app/assets/javascripts/katello/common/katello.js +0 -27
  4. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  5. data/app/assets/stylesheets/katello/katello.scss +0 -1
  6. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +10 -2
  7. data/app/controllers/katello/api/v2/api_controller.rb +35 -9
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +16 -2
  9. data/app/controllers/katello/api/v2/content_view_components_controller.rb +22 -1
  10. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +65 -1
  11. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +5 -1
  12. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -6
  13. data/app/controllers/katello/api/v2/debs_controller.rb +74 -1
  14. data/app/controllers/katello/api/v2/errata_controller.rb +13 -10
  15. data/app/controllers/katello/api/v2/file_units_controller.rb +1 -0
  16. data/app/controllers/katello/api/v2/generic_content_units_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/host_errata_controller.rb +46 -5
  18. data/app/controllers/katello/api/v2/host_tracer_controller.rb +2 -1
  19. data/app/controllers/katello/api/v2/module_streams_controller.rb +4 -0
  20. data/app/controllers/katello/api/v2/organizations_controller.rb +22 -7
  21. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  22. data/app/controllers/katello/api/v2/repositories_controller.rb +36 -19
  23. data/app/controllers/katello/api/v2/subscriptions_controller.rb +0 -8
  24. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +5 -1
  25. data/app/controllers/katello/concerns/api/v2/bulk_extensions.rb +40 -0
  26. data/app/controllers/katello/concerns/api/v2/host_errata_extensions.rb +4 -31
  27. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +1 -1
  28. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  29. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +2 -6
  30. data/app/helpers/katello/katello_url_helper.rb +1 -1
  31. data/app/lib/actions/candlepin/abstract_async_task.rb +6 -3
  32. data/app/lib/actions/candlepin/async_hypervisors.rb +12 -8
  33. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +10 -1
  34. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
  35. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -2
  36. data/app/lib/actions/katello/cdn_configuration/update.rb +38 -0
  37. data/app/lib/actions/katello/content_view/remove.rb +18 -7
  38. data/app/lib/actions/katello/content_view_version/destroy.rb +2 -2
  39. data/app/lib/actions/katello/content_view_version/republish_repositories.rb +1 -1
  40. data/app/lib/actions/katello/repository/clone_contents.rb +1 -2
  41. data/app/lib/actions/katello/repository/destroy.rb +21 -5
  42. data/app/lib/actions/katello/repository/fetch_pxe_files.rb +1 -1
  43. data/app/lib/actions/katello/repository/index_content.rb +19 -6
  44. data/app/lib/actions/katello/repository/multi_clone_contents.rb +1 -1
  45. data/app/lib/actions/katello/repository/sync.rb +3 -5
  46. data/app/lib/actions/katello/repository_set/scan_cdn.rb +0 -4
  47. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +1 -1
  48. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +1 -1
  49. data/app/lib/actions/pulp/repository/clear.rb +1 -1
  50. data/app/lib/actions/pulp3/abstract_async_task.rb +10 -1
  51. data/app/lib/actions/pulp3/capsule_content/generate_metadata.rb +4 -5
  52. data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +1 -1
  53. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +25 -42
  54. data/app/lib/actions/pulp3/orchestration/repository/upload_content.rb +3 -3
  55. data/app/lib/actions/pulp3/repository/commit_upload.rb +1 -1
  56. data/app/lib/actions/pulp3/repository/import_upload.rb +8 -4
  57. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +1 -1
  58. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +1 -1
  59. data/app/lib/actions/pulp3/repository/presenters/abstract_sync_presenter.rb +18 -0
  60. data/app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb +7 -2
  61. data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +6 -1
  62. data/app/lib/actions/pulp3/repository/save_artifact.rb +14 -4
  63. data/app/lib/katello/errors.rb +2 -0
  64. data/app/lib/katello/resources/candlepin/consumer.rb +0 -20
  65. data/app/lib/katello/resources/candlepin/proxy.rb +8 -2
  66. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +2 -0
  67. data/app/lib/katello/resources/cdn/katello_cdn.rb +68 -0
  68. data/app/lib/katello/resources/cdn.rb +61 -29
  69. data/app/lib/katello/resources/registry.rb +1 -1
  70. data/app/lib/katello/util/cdn_var_substitutor.rb +15 -9
  71. data/app/lib/katello/util/package.rb +22 -0
  72. data/app/lib/katello/util/path_with_substitutions.rb +12 -14
  73. data/app/models/katello/activation_key.rb +10 -0
  74. data/app/models/katello/ansible_collection.rb +1 -1
  75. data/app/models/katello/authorization/repository.rb +4 -4
  76. data/app/models/katello/candlepin/repository_mapper.rb +5 -1
  77. data/app/models/katello/cdn_configuration.rb +32 -0
  78. data/app/models/katello/concerns/content_facet_host_extensions.rb +40 -0
  79. data/app/models/katello/concerns/host_managed_extensions.rb +29 -3
  80. data/app/models/katello/concerns/hostgroup_extensions.rb +1 -1
  81. data/app/models/katello/concerns/organization_extensions.rb +3 -1
  82. data/app/models/katello/concerns/pulp_database_unit.rb +16 -6
  83. data/app/models/katello/concerns/remote_execution_provider_extensions.rb +9 -0
  84. data/app/models/katello/concerns/setting_extensions.rb +1 -1
  85. data/app/models/katello/concerns/smart_proxy_extensions.rb +9 -8
  86. data/app/models/katello/content_credential.rb +4 -0
  87. data/app/models/katello/content_facet_applicable_deb.rb +7 -0
  88. data/app/models/katello/content_view.rb +24 -1
  89. data/app/models/katello/content_view_component.rb +4 -0
  90. data/app/models/katello/content_view_erratum_filter.rb +2 -0
  91. data/app/models/katello/content_view_filter.rb +1 -1
  92. data/app/models/katello/content_view_package_filter_rule.rb +2 -1
  93. data/app/models/katello/content_view_version.rb +30 -1
  94. data/app/models/katello/deb.rb +71 -0
  95. data/app/models/katello/erratum.rb +13 -1
  96. data/app/models/katello/generic_content_unit.rb +3 -1
  97. data/app/models/katello/glue/pulp/repos.rb +2 -2
  98. data/app/models/katello/host/content_facet.rb +23 -2
  99. data/app/models/katello/host/subscription_facet.rb +1 -1
  100. data/app/models/katello/host_tracer.rb +21 -2
  101. data/app/models/katello/installed_deb.rb +1 -1
  102. data/app/models/katello/module_stream.rb +4 -0
  103. data/app/models/katello/ping.rb +20 -1
  104. data/app/models/katello/product.rb +7 -5
  105. data/app/models/katello/provider.rb +1 -24
  106. data/app/models/katello/repository.rb +33 -10
  107. data/app/models/katello/root_repository.rb +28 -14
  108. data/app/models/setting/content.rb +8 -13
  109. data/app/services/katello/applicability/applicable_content_helper.rb +20 -0
  110. data/app/services/katello/organization_creator.rb +12 -11
  111. data/app/services/katello/pulp3/api/ansible_collection.rb +0 -40
  112. data/app/services/katello/pulp3/api/apt.rb +0 -47
  113. data/app/services/katello/pulp3/api/content_guard.rb +1 -1
  114. data/app/services/katello/pulp3/api/core.rb +28 -23
  115. data/app/services/katello/pulp3/api/docker.rb +0 -50
  116. data/app/services/katello/pulp3/api/file.rb +0 -48
  117. data/app/services/katello/pulp3/api/generic.rb +1 -44
  118. data/app/services/katello/pulp3/api/yum.rb +4 -44
  119. data/app/services/katello/pulp3/erratum.rb +1 -9
  120. data/app/services/katello/pulp3/generic_content_unit.rb +8 -4
  121. data/app/services/katello/pulp3/repository/ansible_collection.rb +4 -0
  122. data/app/services/katello/pulp3/repository/apt.rb +3 -3
  123. data/app/services/katello/pulp3/repository/generic.rb +10 -65
  124. data/app/services/katello/pulp3/repository/yum.rb +10 -0
  125. data/app/services/katello/pulp3/repository.rb +51 -21
  126. data/app/services/katello/pulp3/repository_mirror.rb +18 -9
  127. data/app/services/katello/pulp3/rpm.rb +2 -32
  128. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +7 -8
  129. data/app/services/katello/pulp3/smart_proxy_repository.rb +1 -1
  130. data/app/services/katello/registration_manager.rb +2 -0
  131. data/app/services/katello/repository_type.rb +103 -15
  132. data/app/services/katello/repository_type_manager.rb +14 -8
  133. data/app/services/katello/ui_notifications/subscriptions/manifest_expired_warning.rb +1 -1
  134. data/app/services/katello/upstream_connection_checker.rb +1 -0
  135. data/app/views/foreman/job_templates/resolve_traces.erb +25 -0
  136. data/app/views/foreman/job_templates/resolve_traces_-_katello_ansible_default.erb +28 -0
  137. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  138. data/app/views/katello/api/v2/common/_metadata.json.rabl +1 -0
  139. data/app/views/katello/api/v2/content_facet/base.json.rabl +3 -1
  140. data/app/views/katello/api/v2/content_facet/show.json.rabl +2 -1
  141. data/app/views/katello/api/v2/content_view_components/show.json.rabl +4 -0
  142. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +7 -0
  143. data/app/views/katello/api/v2/content_views/base.json.rabl +12 -8
  144. data/app/views/katello/api/v2/content_views/index.json.rabl +1 -0
  145. data/app/views/katello/api/v2/content_views/permissions.rabl +8 -0
  146. data/app/views/katello/api/v2/debs/base.json.rabl +5 -0
  147. data/app/views/katello/api/v2/errata/index.json.rabl +4 -0
  148. data/app/views/katello/api/v2/generic_content_units/base.json.rabl +2 -0
  149. data/app/views/katello/api/v2/generic_content_units/show.json.rabl +7 -0
  150. data/app/views/katello/api/v2/host_tracer/base.json.rabl +1 -0
  151. data/app/views/katello/api/v2/module_streams/index.json.rabl +4 -0
  152. data/app/views/katello/api/v2/organizations/cdn_configuration.rabl +1 -0
  153. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -0
  154. data/app/views/katello/api/v2/repositories/base.json.rabl +10 -17
  155. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +2 -6
  156. data/config/routes/api/v2.rb +13 -0
  157. data/config/routes/overrides.rb +2 -0
  158. data/config/routes.rb +14 -2
  159. data/db/migrate/20140110000001_update_environments_add_katello_id.rb +1 -3
  160. data/db/migrate/20140610154745_content_view_puppet_environment_id.rb +0 -35
  161. data/db/migrate/20190802112101_add_applicable_debs.rb +16 -0
  162. data/db/migrate/20210201163238_migrate_background_download_policy_to_migrate.rb +2 -2
  163. data/db/migrate/20210331180353_katello_pool_organization_id_not_nullable.rb +0 -2
  164. data/db/migrate/20210909140337_add_last_indexed_to_repos.rb +5 -0
  165. data/db/migrate/20210910190324_move_background_settings_to_immediate.rb +25 -0
  166. data/db/migrate/20211006161617_add_filename_to_katello_generic_content_units.rb +5 -0
  167. data/db/migrate/20211019192121_create_cdn_configuration.katello.rb +30 -0
  168. data/db/migrate/20211025181315_add_additional_metadata_to_katello_generic_content_units.rb +5 -0
  169. data/engines/bastion/README.md +15 -0
  170. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +2 -2
  171. data/engines/bastion/config/routes.rb +2 -0
  172. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +3 -3
  173. data/engines/bastion/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +1 -1
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +3 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/registration.html +1 -1
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-applicable.controller.js +44 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs.controller.js +1 -1
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html +70 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs.html +1 -1
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +10 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +5 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +25 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +2 -2
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -9
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.controller.js +22 -2
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.routes.js +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +22 -2
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html +1 -1
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +36 -4
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html +1 -1
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb.html +4 -4
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/views/debs.html +31 -4
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/generic-content/generic-content.factory.js +21 -0
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/generic-content/generic-content.module.js +17 -0
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +4 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +3 -3
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +6 -2
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +30 -2
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +1 -13
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +32 -9
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +15 -4
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +32 -19
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +28 -28
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html +57 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +46 -4
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +57 -27
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.module.js +1 -0
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +16 -7
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +30 -4
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +2 -1
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +8 -0
  212. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js +6 -2
  213. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html +1 -1
  214. data/engines/bastion_katello/lib/bastion_katello/engine.rb +1 -1
  215. data/lib/katello/engine.rb +0 -1
  216. data/lib/katello/permission_creator.rb +4 -3
  217. data/lib/katello/permissions/host_permissions.rb +1 -0
  218. data/lib/katello/permissions/organization_permissions.rb +2 -1
  219. data/lib/katello/plugin.rb +15 -11
  220. data/lib/katello/repository_types/ansible_collection.rb +13 -1
  221. data/lib/katello/repository_types/deb.rb +13 -0
  222. data/lib/katello/repository_types/docker.rb +13 -1
  223. data/lib/katello/repository_types/file.rb +13 -0
  224. data/lib/katello/repository_types/ostree.rb +48 -4
  225. data/lib/katello/repository_types/python.rb +26 -12
  226. data/lib/katello/repository_types/yum.rb +16 -1
  227. data/lib/katello/tasks/repository.rake +3 -12
  228. data/lib/katello/tasks/reset.rake +4 -5
  229. data/lib/katello/version.rb +1 -1
  230. data/package.json +3 -2
  231. data/webpack/__mocks__/react-intl/index.js +4 -0
  232. data/webpack/components/ActionableDetail.js +23 -3
  233. data/webpack/components/AddedStatusLabel.js +1 -1
  234. data/webpack/components/Bookmark/AddBookmarkModal.js +96 -0
  235. data/webpack/components/Bookmark/Bookmark.scss +28 -0
  236. data/webpack/components/Bookmark/BookmarkActions.js +24 -0
  237. data/webpack/components/Bookmark/BookmarkConstants.js +3 -0
  238. data/webpack/components/Bookmark/BookmarkSelectors.js +15 -0
  239. data/webpack/components/Bookmark/index.js +94 -0
  240. data/webpack/components/EditableSwitch.js +6 -1
  241. data/webpack/components/EditableTextInput/EditableTextInput.js +41 -13
  242. data/webpack/components/Errata/index.js +69 -0
  243. data/webpack/components/ErratumTypeLabel.js +31 -0
  244. data/webpack/components/Loading.js +5 -2
  245. data/webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js +5 -11
  246. data/webpack/components/RoutedTabs/index.js +77 -2
  247. data/webpack/components/Search/Search.js +67 -80
  248. data/webpack/components/Search/__tests__/search.test.js +8 -26
  249. data/webpack/components/SelectAllCheckbox/SelectAllCheckbox.scss +3 -0
  250. data/webpack/components/SelectAllCheckbox/index.js +126 -0
  251. data/webpack/components/SelectableDropdown/SelectableDropdown.js +7 -2
  252. data/webpack/components/Table/EmptyStateMessage.js +38 -17
  253. data/webpack/components/Table/MainTable.js +49 -10
  254. data/webpack/components/Table/MainTable.scss +11 -0
  255. data/webpack/components/Table/PageControls.js +45 -0
  256. data/webpack/components/Table/TableHooks.js +230 -0
  257. data/webpack/components/Table/TableWrapper.js +221 -50
  258. data/webpack/components/Table/helpers.js +17 -0
  259. data/webpack/components/TypeAhead/TypeAhead.js +74 -58
  260. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +25 -10
  261. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.scss +9 -8
  262. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -2
  263. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +32 -22
  264. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +101 -0
  265. data/webpack/components/extensions/HostDetails/Cards/__tests__/contentViewDetailsCard.test.js +53 -0
  266. data/webpack/components/extensions/HostDetails/HostErrata/HostErrataActions.js +47 -0
  267. data/webpack/components/extensions/HostDetails/HostErrata/HostErrataConstants.js +32 -0
  268. data/webpack/components/extensions/HostDetails/HostErrata/HostErrataSelectors.js +16 -0
  269. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/EmptyPage.js +19 -0
  270. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +17 -0
  271. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +7 -0
  272. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/helpers.js +3 -0
  273. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +40 -0
  274. data/webpack/components/extensions/HostDetails/Tabs/EnableTracerEmptyState.js +42 -0
  275. data/webpack/components/extensions/HostDetails/Tabs/EnableTracerModal.js +118 -0
  276. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab.js +347 -0
  277. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab.scss +16 -0
  278. data/webpack/components/extensions/HostDetails/Tabs/ErratumExpansionContents.js +60 -0
  279. data/webpack/components/extensions/HostDetails/Tabs/ErratumExpansionDetail.js +69 -0
  280. data/webpack/components/extensions/HostDetails/Tabs/HostTracesActions.js +19 -0
  281. data/webpack/components/extensions/HostDetails/Tabs/HostTracesConstants.js +2 -0
  282. data/webpack/components/extensions/HostDetails/Tabs/HostTracesSelectors.js +19 -0
  283. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +56 -0
  284. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +5 -0
  285. data/webpack/components/extensions/HostDetails/Tabs/TracesTab.js +188 -0
  286. data/webpack/components/extensions/HostDetails/Tabs/TracesTab.scss +12 -0
  287. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errata.fixtures.json +67 -0
  288. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +785 -0
  289. data/webpack/components/extensions/HostDetails/Tabs/__tests__/resolveTraces.fixtures.json +35 -0
  290. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracerEmptyTraceResults.fixtures.json +7 -0
  291. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracerEnableJobInvocation.fixtures.json +35 -0
  292. data/webpack/components/extensions/HostDetails/Tabs/__tests__/traces.fixtures.json +44 -0
  293. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +386 -0
  294. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +20 -0
  295. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
  296. data/webpack/components/extensions/RegistrationCommands/index.js +1 -1
  297. data/webpack/components/pf3Table/components/Table.js +1 -1
  298. data/webpack/components/pf3Table/components/__snapshots__/Table.test.js.snap +3 -3
  299. data/webpack/containers/Application/Routes.js +3 -3
  300. data/webpack/containers/Application/config.js +21 -6
  301. data/webpack/containers/Application/overrides.scss +34 -3
  302. data/webpack/{fills_index.js → global_index.js} +11 -2
  303. data/webpack/global_test_setup.js +6 -1
  304. data/webpack/redux/actions/RedHatRepositories/helpers.js +4 -4
  305. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +1 -1
  306. data/webpack/scenes/Content/ContentActions.js +31 -0
  307. data/webpack/scenes/Content/ContentConfig.js +138 -0
  308. data/webpack/scenes/Content/ContentConstants.js +7 -0
  309. data/webpack/scenes/Content/ContentPage.js +89 -0
  310. data/webpack/scenes/Content/ContentSelectors.js +43 -0
  311. data/webpack/scenes/Content/Details/ContentCounts.js +42 -0
  312. data/webpack/scenes/Content/Details/ContentDetails.js +66 -0
  313. data/webpack/scenes/Content/Details/ContentInfo.js +60 -0
  314. data/webpack/scenes/Content/Details/ContentRepositories.js +78 -0
  315. data/webpack/scenes/Content/Details/__tests__/ansibleCollectionDetails.fixtures.json +20 -0
  316. data/webpack/scenes/Content/Details/__tests__/ansibleCollectionRepositoryDetails.fixtures.json +71 -0
  317. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +152 -0
  318. data/webpack/scenes/Content/Details/__tests__/pythonPackageDetails.fixtures.json +20 -0
  319. data/webpack/scenes/Content/Details/__tests__/pythonPackageRepositoryDetails.fixtures.json +71 -0
  320. data/webpack/scenes/Content/Details/index.js +4 -0
  321. data/webpack/scenes/Content/Table/ContentTable.js +90 -0
  322. data/webpack/scenes/Content/Table/index.js +3 -0
  323. data/webpack/scenes/Content/__tests__/ansibleCollections.fixtures.json +50 -0
  324. data/webpack/scenes/Content/__tests__/contentTable.test.js +89 -0
  325. data/webpack/scenes/Content/__tests__/contentTypes.fixtures.json +66 -0
  326. data/webpack/scenes/Content/__tests__/pythonPackages.fixtures.json +30 -0
  327. data/webpack/scenes/Content/index.js +4 -0
  328. data/webpack/scenes/ContentViews/ContentViewSelectors.js +5 -6
  329. data/webpack/scenes/ContentViews/ContentViewsActions.js +13 -8
  330. data/webpack/scenes/ContentViews/ContentViewsConstants.js +31 -4
  331. data/webpack/scenes/ContentViews/ContentViewsPage.js +4 -0
  332. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +19 -7
  333. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +7 -5
  334. data/webpack/scenes/ContentViews/Copy/__tests__/copyContentView.test.js +1 -1
  335. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +7 -3
  336. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -2
  337. data/webpack/scenes/ContentViews/Delete/CVDeleteContext.js +4 -0
  338. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +170 -0
  339. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +108 -0
  340. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +69 -0
  341. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +121 -0
  342. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +120 -0
  343. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReview.js +62 -0
  344. data/webpack/scenes/ContentViews/Delete/Steps/CVEnvironmentSelectionForm.scss +4 -0
  345. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +259 -0
  346. data/webpack/scenes/ContentViews/Delete/__tests__/affectedHosts.fixtures.json +155 -0
  347. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +241 -0
  348. data/webpack/scenes/ContentViews/Delete/__tests__/cvDetails.fixtures.json +248 -0
  349. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +865 -0
  350. data/webpack/scenes/ContentViews/Delete/__tests__/envPathData.fixtures.json +424 -0
  351. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +15 -7
  352. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +123 -0
  353. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  354. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +8 -5
  355. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +109 -51
  356. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +21 -6
  357. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +80 -16
  358. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +248 -3
  359. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +141 -0
  360. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +36 -54
  361. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +20 -4
  362. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +63 -38
  363. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +3 -4
  364. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +65 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +260 -0
  366. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +54 -0
  367. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +202 -0
  368. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +291 -0
  369. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +441 -0
  370. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +62 -3
  371. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +302 -0
  372. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +186 -23
  373. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +144 -19
  374. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +2 -0
  375. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +44 -13
  376. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +81 -17
  377. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +43 -43
  378. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +96 -0
  379. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContent.fixtures.json +166 -0
  380. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +90 -0
  381. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +33 -0
  382. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +91 -0
  383. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +237 -0
  384. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.fixtures.json +42 -0
  385. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +265 -0
  386. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +218 -11
  387. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +517 -0
  388. data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterErrata.fixtures.json +122 -0
  389. data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterModulesStreams.fixtures.json +60 -0
  390. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewErrataByDateDetails.fixtures.json +359 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +88 -102
  392. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +34 -9
  393. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.fixtures.json +148 -132
  394. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +25 -7
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvAllRepos.fixtures.json +150 -0
  396. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataDateFilterContent.test.js +74 -0
  397. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +404 -0
  398. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErratumFilterDetails.fixtures.json +89 -0
  399. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterDetailModuleAffectedRepos.fixtures.json +383 -0
  400. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterDetailWithAffectedRepos.fixtures.json +375 -0
  401. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterFixutre.fixture.json +282 -0
  402. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +392 -0
  403. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilterDetails.fixtures.json +97 -0
  404. data/webpack/scenes/ContentViews/Details/Filters/index.js +26 -0
  405. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +68 -79
  406. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  407. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +163 -0
  408. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromoteSelectors.js +16 -0
  409. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +9 -1
  410. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +88 -74
  411. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +8 -9
  412. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +3 -3
  413. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +30 -9
  414. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +1 -1
  415. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +9 -5
  416. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +2 -2
  417. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +132 -14
  418. data/webpack/scenes/ContentViews/Details/Versions/Delete/DeleteContext.js +4 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +176 -0
  420. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +127 -0
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +131 -0
  422. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +128 -0
  423. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +94 -0
  424. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +67 -0
  425. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvAffectedActivationKeys.fixture.json +53 -0
  426. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvAffectedHosts.fixture.json +153 -0
  427. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvDropDownOptionsResponse.fixture.json +192 -0
  428. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +313 -0
  429. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemoveResponse.fixture.json +74 -0
  430. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionRemoveEnvPaths.fixtures.json +352 -0
  431. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +583 -0
  432. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +96 -0
  433. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +97 -0
  434. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +332 -0
  435. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +128 -0
  436. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.scss +44 -0
  437. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +66 -0
  438. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +125 -0
  439. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionRepositoryCell.js +115 -0
  440. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionAnsibleCollections.fixtures.json +449 -0
  441. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +753 -0
  442. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDebPackages.fixtures.json +58 -0
  443. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +158 -0
  444. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +289 -0
  445. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsCounts.fixtures.json +73 -0
  446. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +44 -0
  447. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDockerTags.fixtures.json +3024 -0
  448. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionErrata.fixtures.json +201 -0
  449. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionFiles.fixtures.json +22 -0
  450. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionModuleStreams.fixtures.json +196 -0
  451. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRepositories.fixtures.json +1000 -0
  452. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRpmPackageGroups.fixtures.json +44 -0
  453. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRpmPackages.fixtures.json +394 -0
  454. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +4 -4
  455. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +95 -26
  456. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +2 -2
  457. data/webpack/scenes/ContentViews/Details/Versions/index.js +25 -0
  458. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +20 -16
  459. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +3 -5
  460. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +106 -64
  461. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +25 -4
  462. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +1 -1
  463. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +4 -1
  464. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +29 -36
  465. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +10 -0
  466. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +117 -0
  467. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +59 -0
  468. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  469. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +30 -11
  470. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +1 -1
  471. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +38 -1
  472. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +79 -0
  473. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +107 -0
  474. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +59 -0
  475. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsResponse.fixtures.json +116 -0
  476. data/webpack/scenes/ContentViews/expansions/__tests__/relatedCompositeCvs.fixtures.json +4 -0
  477. data/webpack/scenes/ContentViews/helpers.js +1 -0
  478. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/RepositorySetRepository.js +1 -1
  479. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +4 -3
  480. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +1 -1
  481. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +17 -9
  482. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +3 -3
  483. data/webpack/test-utils/nockWrapper.js +20 -3
  484. data/webpack/utils/helpers.js +16 -2
  485. data/webpack/utils/useDebounce.js +20 -0
  486. metadata +232 -54
  487. data/app/assets/javascripts/katello/widgets/tabs.js +0 -13
  488. data/app/assets/stylesheets/katello/widgets/tabs.scss +0 -69
  489. data/app/lib/actions/katello/provider/update.rb +0 -38
  490. data/webpack/components/RoutedTabs/RoutedTabs.js +0 -90
  491. data/webpack/components/Search/Search.test.js +0 -23
  492. data/webpack/components/Search/__snapshots__/Search.test.js.snap +0 -21
  493. data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +0 -42
  494. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +0 -145
  495. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js +0 -0
@@ -0,0 +1,79 @@
1
+ import React, { useState } from 'react';
2
+ import { Link } from 'react-router-dom';
3
+ import { translate as __ } from 'foremanReact/common/I18n';
4
+ import PropTypes from 'prop-types';
5
+ import { Modal, ModalVariant, Button, Flex, FlexItem } from '@patternfly/react-core';
6
+ import { TableComposable, Thead, Tbody, Tr, Th, Td } from '@patternfly/react-table';
7
+ import { EnterpriseIcon } from '@patternfly/react-icons';
8
+ import { urlBuilder } from '../../../__mocks__/foremanReact/common/urlHelpers';
9
+
10
+ /* eslint-disable react/no-array-index-key */
11
+ const RelatedCompositeContentViewsModal = ({
12
+ cvName, cvId, relatedCVCount, relatedCompositeCVs,
13
+ }) => {
14
+ const [isOpen, setIsOpen] = useState(false);
15
+
16
+ const description = () => (
17
+ <Flex flex={{ default: 'inlineFlex' }}>
18
+ <FlexItem>
19
+ <EnterpriseIcon />
20
+ <b>{` ${cvName}`}</b>
21
+ {__(' content view is used in listed composite content views.')}
22
+ </FlexItem>
23
+ </Flex>
24
+ );
25
+
26
+ const handleModalToggle = () => {
27
+ setIsOpen(!isOpen);
28
+ };
29
+
30
+ const columns = ['Name'];
31
+ return (
32
+ <>
33
+ <Button aria-label={`button_${cvId}`} variant="link" isInline onClick={handleModalToggle}>
34
+ {relatedCVCount}
35
+ </Button>
36
+ <Modal
37
+ title={__('Related composite content views')}
38
+ variant={ModalVariant.large}
39
+ isOpen={isOpen}
40
+ description={description()}
41
+ onClose={() => {
42
+ setIsOpen(false);
43
+ }}
44
+ appendTo={document.body}
45
+ >
46
+ <TableComposable
47
+ aria-label={`${cvId}_table`}
48
+ variant="compact"
49
+ >
50
+ <Thead>
51
+ <Tr>
52
+ {columns.map((column, columnIndex) => (
53
+ <Th key={columnIndex}>{column}</Th>
54
+ ))}
55
+ </Tr>
56
+ </Thead>
57
+ <Tbody>
58
+ {relatedCompositeCVs.map(cv => (
59
+ <Tr key={cv.id}>
60
+ <Td key={`${cv.id}_${cv.name}`} dataLabel={columns[cv.id]}>
61
+ <Link to={`${urlBuilder('content_views', '')}${cv.id}`}>{cv.name}</Link>
62
+ </Td>
63
+ </Tr>
64
+ ))}
65
+ </Tbody>
66
+ </TableComposable>
67
+ </Modal>
68
+ </>
69
+ );
70
+ };
71
+
72
+ export default RelatedCompositeContentViewsModal;
73
+
74
+ RelatedCompositeContentViewsModal.propTypes = {
75
+ cvName: PropTypes.string.isRequired,
76
+ cvId: PropTypes.number.isRequired,
77
+ relatedCVCount: PropTypes.number.isRequired,
78
+ relatedCompositeCVs: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
79
+ };
@@ -0,0 +1,107 @@
1
+ import React, { useCallback, useState } from 'react';
2
+ import { useSelector } from 'react-redux';
3
+ import { Link } from 'react-router-dom';
4
+ import { translate as __ } from 'foremanReact/common/I18n';
5
+ import { urlBuilder } from 'foremanReact/common/urlHelpers';
6
+ import PropTypes from 'prop-types';
7
+ import { Grid, GridItem, Modal, ModalVariant, Button, Flex, FlexItem } from '@patternfly/react-core';
8
+ import { TableVariant, Thead, Tbody, Tr, Th, Td } from '@patternfly/react-table';
9
+ import { RegistryIcon } from '@patternfly/react-icons';
10
+ import TableWrapper from '../../../components/Table/TableWrapper';
11
+ import { getContentViewComponents } from '../Details/ContentViewDetailActions';
12
+ import {
13
+ selectCVComponents,
14
+ selectCVComponentsError,
15
+ selectCVComponentsStatus,
16
+ } from '../Details/ContentViewDetailSelectors';
17
+
18
+ const RelatedContentViewsModal = ({ cvName, cvId, relatedCVCount }) => {
19
+ const response = useSelector(state => selectCVComponents(state, cvId));
20
+ const status = useSelector(state => selectCVComponentsStatus(state, cvId));
21
+ const error = useSelector(state => selectCVComponentsError(state, cvId));
22
+ const { results, ...metadata } = response;
23
+
24
+ const [isOpen, setIsOpen] = useState(false);
25
+ const [searchQuery, updateSearchQuery] = useState('');
26
+
27
+ const description = () => (
28
+ <Flex flex={{ default: 'inlineFlex' }}>
29
+ <FlexItem>
30
+ <RegistryIcon />
31
+ <b>{` ${cvName}`}</b>
32
+ {__(' content view is used in listed component content views. For more information, ')}
33
+ <Link to={urlBuilder(`content_views/${cvId}#/contentviews`, '')}>
34
+ {__('view content view tabs.')}
35
+ </Link>
36
+ </FlexItem>
37
+ </Flex>
38
+ );
39
+
40
+ const handleModalToggle = () => {
41
+ setIsOpen(!isOpen);
42
+ };
43
+
44
+ return (
45
+ <>
46
+ <Button aria-label={`button_${cvId}`} variant="link" isInline onClick={handleModalToggle}>
47
+ {relatedCVCount}
48
+ </Button>
49
+ <Grid className="grid-with-margin">
50
+ <GridItem span={12}>
51
+ <Modal
52
+ title={__('Related component content views')}
53
+ variant={ModalVariant.medium}
54
+ isOpen={isOpen}
55
+ description={description()}
56
+ onClose={() => {
57
+ setIsOpen(false);
58
+ }}
59
+ appendTo={document.body}
60
+ >
61
+
62
+ <TableWrapper
63
+ {...{
64
+ metadata,
65
+ searchQuery,
66
+ updateSearchQuery,
67
+ error,
68
+ status,
69
+ }}
70
+ fetchItems={useCallback(params => getContentViewComponents(cvId, params, 'Added'), [cvId])}
71
+ variant={TableVariant.compact}
72
+ autocompleteEndpoint="/content_views/auto_complete_search"
73
+ emptyContentTitle={__('You currently don\'t have any related content views.')}
74
+ emptySearchTitle={__('No matching content views found')}
75
+ emptyContentBody={__('Related content views will appear here when created.')}
76
+ emptySearchBody={__('Try changing your search settings.')}
77
+ >
78
+ <Thead>
79
+ <Tr>
80
+ <Th key="name_col">{__('Name')}</Th>
81
+ </Tr>
82
+ </Thead>
83
+ <Tbody>
84
+ {results?.map(details => (
85
+ <Tr key={`${details.content_view.id}`}>
86
+ <Td>
87
+ <Link to={urlBuilder(`content_views/${details.content_view.id}`, '')}>{details.content_view.name}</Link>
88
+ </Td>
89
+ </Tr>
90
+ ))
91
+ }
92
+ </Tbody>
93
+ </TableWrapper>
94
+ </Modal>
95
+ </GridItem>
96
+ </Grid>
97
+ </>
98
+ );
99
+ };
100
+
101
+ export default RelatedContentViewsModal;
102
+
103
+ RelatedContentViewsModal.propTypes = {
104
+ cvName: PropTypes.string.isRequired,
105
+ cvId: PropTypes.number.isRequired,
106
+ relatedCVCount: PropTypes.number.isRequired,
107
+ };
@@ -0,0 +1,59 @@
1
+ import React from 'react';
2
+ import { renderWithRedux, patientlyWaitFor, fireEvent } from 'react-testing-lib-wrapper';
3
+
4
+ import { nockInstance, assertNockRequest } from '../../../../test-utils/nockWrapper';
5
+ import api from '../../../../services/api';
6
+
7
+ import RelatedContentViewComponentsModal from '../RelatedContentViewComponentsModal';
8
+ import RelatedCompositeContentViewsModal from '../RelatedCompositeContentViewsModal';
9
+
10
+ import contentViewComponentsResponse from './contentViewComponentsResponse.fixtures.json';
11
+
12
+ jest.mock('../../../../components/Search', () => () => 'Mocked!');
13
+
14
+ test('Can call API and show Related Content Views Components Modal', async (done) => {
15
+ const cvId = 5;
16
+ const relatedCvCount = 2;
17
+ const cvName = 'italiano';
18
+ const contentViewComponentsPath = api.getApiUrl(`/content_views/${cvId}/content_view_components/show_all`);
19
+
20
+ const scope = nockInstance
21
+ .get(contentViewComponentsPath)
22
+ .query(true)
23
+ .reply(200, contentViewComponentsResponse);
24
+
25
+ const { getByText, getByLabelText } = renderWithRedux(<RelatedContentViewComponentsModal
26
+ cvId={cvId}
27
+ cvName={cvName}
28
+ relatedCVCount={relatedCvCount}
29
+ />);
30
+
31
+ await patientlyWaitFor(() => expect(getByLabelText(`button_${cvId}`)).toBeInTheDocument());
32
+ fireEvent.click(getByLabelText(`button_${cvId}`));
33
+ await patientlyWaitFor(() => expect(getByText('Related component content views')).toBeInTheDocument());
34
+
35
+ assertNockRequest(scope, done);
36
+ });
37
+
38
+ test('Can call API and show Related Composite Content Views Modal', async () => {
39
+ const relatedCompositeCVs = [
40
+ {
41
+ id: 5,
42
+ name: 'italiano',
43
+ },
44
+ ];
45
+
46
+ const cvId = 3;
47
+ const relatedCvCount = 1;
48
+ const cvName = 'ravioli';
49
+
50
+ const { getByText, getByLabelText } = renderWithRedux(<RelatedCompositeContentViewsModal
51
+ cvId={cvId}
52
+ cvName={cvName}
53
+ relatedCVCount={relatedCvCount}
54
+ relatedCompositeCVs={relatedCompositeCVs}
55
+ />);
56
+ await patientlyWaitFor(() => expect(getByLabelText(`button_${cvId}`)).toBeInTheDocument());
57
+ fireEvent.click(getByLabelText(`button_${cvId}`));
58
+ await patientlyWaitFor(() => expect(getByText('Related composite content views')).toBeInTheDocument());
59
+ });
@@ -0,0 +1,116 @@
1
+ {
2
+ "total": 6,
3
+ "subtotal": 6,
4
+ "page": "1",
5
+ "per_page": "20",
6
+ "error": null,
7
+ "search": null,
8
+ "sort": {
9
+ "by": null,
10
+ "order": null
11
+ },
12
+ "results": [
13
+ {
14
+ "latest": false,
15
+ "id": 1,
16
+ "created_at": "2021-10-08 11:19:57 -0400",
17
+ "updated_at": "2021-10-08 11:19:57 -0400",
18
+ "composite_content_view": {
19
+ "id": 5,
20
+ "name": "italiano",
21
+ "label": "italiano",
22
+ "description": "many pasta",
23
+ "next_version": 3,
24
+ "latest_version": "2.0",
25
+ "version_count": 2
26
+ },
27
+ "content_view": {
28
+ "id": 3,
29
+ "name": "ravioli",
30
+ "label": "ravioli",
31
+ "description": null,
32
+ "next_version": 2,
33
+ "latest_version": "1.0",
34
+ "version_count": 1
35
+ },
36
+ "content_view_version": {
37
+ "id": 3,
38
+ "name": "ravioli 1.0",
39
+ "content_view_id": 3,
40
+ "version": "1.0",
41
+ "content_view": {
42
+ "id": 3,
43
+ "name": "ravioli",
44
+ "label": "ravioli",
45
+ "description": null
46
+ },
47
+ "environments": [
48
+ {
49
+ "id": 1,
50
+ "name": "Library",
51
+ "label": "Library"
52
+ }
53
+ ],
54
+ "repositories": [
55
+ {
56
+ "id": 13,
57
+ "name": "yum 1",
58
+ "label": "yum_1",
59
+ "description": null
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ {
65
+ "latest": false,
66
+ "id": 2,
67
+ "created_at": "2021-10-08 11:20:04 -0400",
68
+ "updated_at": "2021-10-08 11:20:04 -0400",
69
+ "composite_content_view": {
70
+ "id": 5,
71
+ "name": "italiano",
72
+ "label": "italiano",
73
+ "description": "many pasta",
74
+ "next_version": 3,
75
+ "latest_version": "2.0",
76
+ "version_count": 2
77
+ },
78
+ "content_view": {
79
+ "id": 4,
80
+ "name": "tortellini",
81
+ "label": "tortellini",
82
+ "description": "tortellini",
83
+ "next_version": 2,
84
+ "latest_version": "1.0",
85
+ "version_count": 1
86
+ },
87
+ "content_view_version": {
88
+ "id": 4,
89
+ "name": "tortellini 1.0",
90
+ "content_view_id": 4,
91
+ "version": "1.0",
92
+ "content_view": {
93
+ "id": 4,
94
+ "name": "tortellini",
95
+ "label": "tortellini",
96
+ "description": "tortellini"
97
+ },
98
+ "environments": [
99
+ {
100
+ "id": 1,
101
+ "name": "Library",
102
+ "label": "Library"
103
+ }
104
+ ],
105
+ "repositories": [
106
+ {
107
+ "id": 15,
108
+ "name": "python 1",
109
+ "label": "python_1",
110
+ "description": null
111
+ }
112
+ ]
113
+ }
114
+ }
115
+ ]
116
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": 5,
3
+ "name": "italiano"
4
+ }
@@ -11,3 +11,4 @@ export const autoPublishHelpText = __('Automatically publish a new version of th
11
11
  export const importOnlyHelpText = __('Designate whether this content view is for importing from an upstream server. ' +
12
12
  'Import-only content views cannot be published directly.');
13
13
 
14
+ export const hasPermission = (permissions, perm) => permissions && permissions[perm];
@@ -106,7 +106,7 @@ class RepositorySetRepository extends Component {
106
106
  actions={
107
107
  <Spinner loading={this.props.loading} inline>
108
108
  <OverlayTrigger
109
- overlay={<Tooltip id="enable">Enable</Tooltip>}
109
+ overlay={<Tooltip id="enable">{__('Enable')}</Tooltip>}
110
110
  placement="bottom"
111
111
  trigger={['hover', 'focus']}
112
112
  rootClose={false}
@@ -6,8 +6,10 @@ import PropTypes from 'prop-types';
6
6
  import { Form, FormGroup } from 'react-bootstrap';
7
7
  import { translate as __ } from 'foremanReact/common/I18n';
8
8
 
9
- import { selectOrganizationProducts } from '../../../redux/OrganizationProducts/OrganizationProductsSelectors';
10
- import { loadOrganizationProducts } from '../../../redux/OrganizationProducts/OrganizationProductsActions';
9
+ import { selectOrganizationProducts }
10
+ from '../../../redux/OrganizationProducts/OrganizationProductsSelectors';
11
+ import { loadOrganizationProducts }
12
+ from '../../../redux/OrganizationProducts/OrganizationProductsActions';
11
13
 
12
14
  import { loadEnabledRepos } from '../../../redux/actions/RedHatRepositories/enabled';
13
15
  import { loadRepositorySets } from '../../../redux/actions/RedHatRepositories/sets';
@@ -20,7 +22,6 @@ const filterOptions = [
20
22
  { value: 'sourceRpm', label: __('Source RPM') },
21
23
  { value: 'debugRpm', label: __('Debug RPM') },
22
24
  { value: 'kickstart', label: __('Kickstart') },
23
- { value: 'ostree', label: __('OSTree') },
24
25
  { value: 'beta', label: __('Beta') },
25
26
  { value: 'other', label: __('Other') },
26
27
  ];
@@ -78,7 +78,7 @@ const SmartProxyContentTable = ({ smartProxyId }) => {
78
78
  },
79
79
  },
80
80
  {
81
- title: <a href={urlBuilder('content_views', '', id)}>{cvName}</a>,
81
+ title: <a href={cv.default ? urlBuilder('products', '') : urlBuilder('content_views', '', id)}>{cvName}</a>,
82
82
  props: {
83
83
  colSpan: 1,
84
84
  },
@@ -1,4 +1,5 @@
1
1
  import React, { Component } from 'react';
2
+ import { FormattedMessage } from 'react-intl';
2
3
  import PropTypes from 'prop-types';
3
4
  import Immutable from 'seamless-immutable';
4
5
  import { translate as __ } from 'foremanReact/common/I18n';
@@ -217,6 +218,21 @@ class SubscriptionsPage extends Component {
217
218
  },
218
219
  };
219
220
 
221
+ const SCAAlert = simpleContentAccess ? (
222
+ <Alert type="info">
223
+ <FormattedMessage
224
+ id="sca-alert"
225
+ values={{
226
+ subscriptionWatch: <a href={SUBSCRIPTION_WATCH_URL} target="_blank" rel="noreferrer">{__('Subscription Watch')}</a>,
227
+ br: <br />,
228
+ }}
229
+ defaultMessage={__(`This organization has Simple Content Access enabled.
230
+ Hosts are not required to have subscriptions attached to access repositories.
231
+ {br}
232
+ Learn more about your overall subscription usage at {subscriptionWatch}.`)}
233
+ />
234
+ </Alert>
235
+ ) : null;
220
236
  return (
221
237
  <Grid bsClass="container-fluid">
222
238
  <Row>
@@ -255,15 +271,7 @@ class SubscriptionsPage extends Component {
255
271
  />
256
272
 
257
273
  <div id="subscriptions-table" className="modal-container">
258
- {simpleContentAccess && (
259
- <Alert type="info">
260
- This organization has Simple Content Access enabled.
261
- Hosts are not required to have subscriptions attached to access repositories.
262
- <br />
263
- Learn more about your overall subscription usage at
264
- {' '}<a href={SUBSCRIPTION_WATCH_URL} target="_blank" rel="noreferrer">Subscription Watch</a>.
265
- </Alert>
266
- )}
274
+ {SCAAlert}
267
275
  <SubscriptionsTable
268
276
  canManageSubscriptionAllocations={canManageSubscriptionAllocations}
269
277
  loadSubscriptions={this.props.loadSubscriptions}
@@ -3,7 +3,7 @@
3
3
  exports[`subscriptions table should disable checkboxes for custom subscriptions 1`] = `
4
4
  <div>
5
5
  <table
6
- class="table table-striped table-bordered table-hover pf-table-inline-edit table-fixed"
6
+ class="table table-striped table-bordered table-hover pf-table-inline-edit table-fixed neat-table-cells"
7
7
  >
8
8
  <thead>
9
9
  <tr
@@ -212,7 +212,7 @@ exports[`subscriptions table should render a loading state 1`] = `
212
212
  exports[`subscriptions table should render a table 1`] = `
213
213
  <div>
214
214
  <table
215
- class="table table-striped table-bordered table-hover pf-table-inline-edit table-fixed"
215
+ class="table table-striped table-bordered table-hover pf-table-inline-edit table-fixed neat-table-cells"
216
216
  >
217
217
  <thead>
218
218
  <tr
@@ -318,7 +318,7 @@ exports[`subscriptions table should render an empty state 1`] = `
318
318
  exports[`subscriptions table should render subscription name without hyperlink for grouped subscriptions 1`] = `
319
319
  <div>
320
320
  <table
321
- class="table table-striped table-bordered table-hover pf-table-inline-edit table-fixed"
321
+ class="table table-striped table-bordered table-hover pf-table-inline-edit table-fixed neat-table-cells"
322
322
  >
323
323
  <thead>
324
324
  <tr
@@ -1,5 +1,5 @@
1
1
  import nock from 'nock';
2
- import api from '../services/api';
2
+ import api, { foremanApi } from '../services/api';
3
3
 
4
4
  // Using the library 'nock' as it matches actual network requests rather than mock another
5
5
  // library. This is helpful when the request is not coming from Katello. For example, axios
@@ -14,7 +14,11 @@ export const nockInstance = nock('http://localhost');
14
14
  // polls until the nock scope is met. If the `done` callback from jest is passed in, it will
15
15
  // call it once the request is made, telling jest the test is done. This is to make sure all
16
16
  // nock expectations are met and cleared before moving on to the next test.
17
- export const assertNockRequest = (nockScope, jestDone, tries = 10) => {
17
+ // Test checks every `interval` milliseconds if the nock scope was met.
18
+ // The number of tries dictates the number of attempts assert will make before failing.
19
+ // `tries * interval` is the maximum time that every nock scope will wait before failing if not met.
20
+ export const assertNockRequest = (nockScope, jestDone, tries = 600) => {
21
+ // 500ms interval * 600 tries = 5 min timeout
18
22
  const interval = 500;
19
23
  let i = 0;
20
24
  const poll = setInterval(() => {
@@ -43,8 +47,21 @@ export const mockAutocomplete = (
43
47
  .query(query) // can pass in function, see nock docs
44
48
  .reply(200, response);
45
49
 
46
- export const mockSetting = (instance, name, value) => instance
50
+ export const mockForemanAutocomplete = (
51
+ instance,
52
+ autoCompUrl,
53
+ query = true,
54
+ response = [],
55
+ times = 1,
56
+ ) => instance
57
+ .get(foremanApi.getApiUrl(autoCompUrl))
58
+ .times(times)
59
+ .query(query) // can pass in function, see nock docs
60
+ .reply(200, response);
61
+
62
+ export const mockSetting = (instance, name, value, times = 1) => instance
47
63
  .get(`/api/v2/settings/${name}`)
64
+ .times(times)
48
65
  .query(true) // can pass in function, see nock docs
49
66
  .reply(200, { name, value });
50
67
 
@@ -1,8 +1,8 @@
1
1
  import { addToast } from 'foremanReact/redux/actions/toasts';
2
2
  import { translate as __ } from 'foremanReact/common/I18n';
3
+ import { head } from 'lodash';
3
4
  import { SUBSCRIPTIONS_QUANTITIES_FAILURE } from '../scenes/Subscriptions/SubscriptionConstants';
4
5
 
5
-
6
6
  const getSubscriptionsErrorMessage = (message) => {
7
7
  const errorMessageHash = {
8
8
  '404 Not Found': __('The subscription cannot be found upstream'),
@@ -11,6 +11,15 @@ const getSubscriptionsErrorMessage = (message) => {
11
11
  return errorMessageHash[message];
12
12
  };
13
13
 
14
+
15
+ export const getBookmarkErrorMsgs = ({ data: { error } } = {}) => {
16
+ if (error) {
17
+ const { full_messages: fullMessages } = error;
18
+ return head(fullMessages);
19
+ }
20
+ return '';
21
+ };
22
+
14
23
  const getCustomMessage = (actionType, message) => {
15
24
  let customMessage;
16
25
  switch (actionType) {
@@ -100,7 +109,12 @@ export const capitalize = s => s && s[0].toUpperCase() + s.slice(1);
100
109
 
101
110
  export const truncate = (str, truncateLimit = 50) => (str.length > truncateLimit ? `${str.substring(0, truncateLimit - 3)}...` : str);
102
111
 
103
- export const repoType = type => (['rpm', 'modulemd', 'erratum', 'package_group'].includes(type) ? 'yum' : type);
112
+ export const pluralize = (quantity, singular, plural = `${singular}s`) => {
113
+ if (quantity === 1) return `${quantity} ${singular}`;
114
+ return `${quantity} ${plural}`;
115
+ };
116
+
117
+ export const repoType = type => (['rpm', 'modulemd', 'erratum', 'erratum_date', 'erratum_id', 'package_group'].includes(type) ? 'yum' : type);
104
118
 
105
119
  export default {
106
120
  getResponseErrorMsgs,
@@ -0,0 +1,20 @@
1
+ import { useEffect, useState } from 'react';
2
+
3
+ export default (value, delay = 500) => {
4
+ const [debouncedValue, setDebouncedValue] = useState(value);
5
+
6
+ useEffect(() => {
7
+ // If the value is undefined or "" we want any logic to update immediately
8
+ // as we wouldn't be waiting on the user to finish typing any longer.
9
+ if (!value) {
10
+ setDebouncedValue(value);
11
+ return () => undefined;
12
+ }
13
+ const timer = setTimeout(() => setDebouncedValue(value), delay);
14
+ return () => {
15
+ clearTimeout(timer);
16
+ };
17
+ }, [value, delay]);
18
+
19
+ return debouncedValue;
20
+ };