katello 4.2.1 → 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 (498) 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/sync_capsule.rb +3 -3
  35. data/app/lib/actions/katello/cdn_configuration/update.rb +38 -0
  36. data/app/lib/actions/katello/content_view/remove.rb +18 -7
  37. data/app/lib/actions/katello/content_view_version/destroy.rb +2 -2
  38. data/app/lib/actions/katello/content_view_version/republish_repositories.rb +1 -1
  39. data/app/lib/actions/katello/repository/clone_contents.rb +1 -2
  40. data/app/lib/actions/katello/repository/destroy.rb +21 -5
  41. data/app/lib/actions/katello/repository/fetch_pxe_files.rb +1 -1
  42. data/app/lib/actions/katello/repository/finish_upload.rb +1 -1
  43. data/app/lib/actions/katello/repository/import_upload.rb +1 -1
  44. data/app/lib/actions/katello/repository/index_content.rb +19 -6
  45. data/app/lib/actions/katello/repository/metadata_generate.rb +2 -0
  46. data/app/lib/actions/katello/repository/multi_clone_contents.rb +1 -1
  47. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  48. data/app/lib/actions/katello/repository/sync.rb +3 -7
  49. data/app/lib/actions/katello/repository_set/scan_cdn.rb +0 -4
  50. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +1 -1
  51. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +1 -1
  52. data/app/lib/actions/pulp/repository/clear.rb +1 -1
  53. data/app/lib/actions/pulp3/abstract_async_task.rb +10 -1
  54. data/app/lib/actions/pulp3/capsule_content/generate_metadata.rb +13 -18
  55. data/app/lib/actions/pulp3/capsule_content/refresh_distribution.rb +1 -11
  56. data/app/lib/actions/pulp3/content_view_version/create_export_history.rb +1 -1
  57. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +3 -1
  58. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +25 -42
  59. data/app/lib/actions/pulp3/orchestration/repository/sync.rb +8 -1
  60. data/app/lib/actions/pulp3/orchestration/repository/upload_content.rb +3 -3
  61. data/app/lib/actions/pulp3/repository/commit_upload.rb +1 -1
  62. data/app/lib/actions/pulp3/repository/import_upload.rb +8 -4
  63. data/app/lib/actions/pulp3/repository/multi_copy_content.rb +1 -1
  64. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +1 -1
  65. data/app/lib/actions/pulp3/repository/presenters/abstract_sync_presenter.rb +18 -0
  66. data/app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb +7 -2
  67. data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +6 -1
  68. data/app/lib/actions/pulp3/repository/save_artifact.rb +14 -4
  69. data/app/lib/katello/errors.rb +2 -0
  70. data/app/lib/katello/resources/candlepin/consumer.rb +0 -20
  71. data/app/lib/katello/resources/candlepin/proxy.rb +8 -2
  72. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +2 -0
  73. data/app/lib/katello/resources/cdn/katello_cdn.rb +68 -0
  74. data/app/lib/katello/resources/cdn.rb +61 -29
  75. data/app/lib/katello/util/cdn_var_substitutor.rb +15 -9
  76. data/app/lib/katello/util/package.rb +22 -0
  77. data/app/lib/katello/util/path_with_substitutions.rb +12 -14
  78. data/app/models/katello/activation_key.rb +10 -0
  79. data/app/models/katello/ansible_collection.rb +1 -1
  80. data/app/models/katello/authorization/repository.rb +4 -4
  81. data/app/models/katello/candlepin/repository_mapper.rb +5 -1
  82. data/app/models/katello/cdn_configuration.rb +32 -0
  83. data/app/models/katello/concerns/content_facet_host_extensions.rb +40 -0
  84. data/app/models/katello/concerns/host_managed_extensions.rb +28 -2
  85. data/app/models/katello/concerns/hostgroup_extensions.rb +1 -1
  86. data/app/models/katello/concerns/organization_extensions.rb +3 -1
  87. data/app/models/katello/concerns/pulp_database_unit.rb +15 -5
  88. data/app/models/katello/concerns/remote_execution_provider_extensions.rb +9 -0
  89. data/app/models/katello/concerns/setting_extensions.rb +1 -1
  90. data/app/models/katello/concerns/smart_proxy_extensions.rb +4 -3
  91. data/app/models/katello/content_credential.rb +4 -0
  92. data/app/models/katello/content_facet_applicable_deb.rb +7 -0
  93. data/app/models/katello/content_view.rb +24 -1
  94. data/app/models/katello/content_view_component.rb +4 -0
  95. data/app/models/katello/content_view_erratum_filter.rb +2 -0
  96. data/app/models/katello/content_view_filter.rb +1 -1
  97. data/app/models/katello/content_view_package_filter_rule.rb +2 -1
  98. data/app/models/katello/content_view_version.rb +30 -1
  99. data/app/models/katello/deb.rb +71 -0
  100. data/app/models/katello/erratum.rb +13 -1
  101. data/app/models/katello/generic_content_unit.rb +3 -1
  102. data/app/models/katello/glue/pulp/repos.rb +2 -2
  103. data/app/models/katello/host/content_facet.rb +23 -2
  104. data/app/models/katello/host/subscription_facet.rb +1 -1
  105. data/app/models/katello/host_tracer.rb +21 -2
  106. data/app/models/katello/installed_deb.rb +1 -1
  107. data/app/models/katello/module_stream.rb +4 -0
  108. data/app/models/katello/ping.rb +20 -4
  109. data/app/models/katello/product.rb +7 -5
  110. data/app/models/katello/provider.rb +1 -24
  111. data/app/models/katello/repository.rb +37 -10
  112. data/app/models/katello/root_repository.rb +28 -14
  113. data/app/models/setting/content.rb +8 -13
  114. data/app/services/katello/applicability/applicable_content_helper.rb +20 -0
  115. data/app/services/katello/organization_creator.rb +8 -0
  116. data/app/services/katello/pulp3/api/ansible_collection.rb +0 -40
  117. data/app/services/katello/pulp3/api/apt.rb +0 -47
  118. data/app/services/katello/pulp3/api/content_guard.rb +1 -1
  119. data/app/services/katello/pulp3/api/core.rb +28 -23
  120. data/app/services/katello/pulp3/api/docker.rb +0 -50
  121. data/app/services/katello/pulp3/api/file.rb +0 -48
  122. data/app/services/katello/pulp3/api/generic.rb +1 -44
  123. data/app/services/katello/pulp3/api/yum.rb +4 -44
  124. data/app/services/katello/pulp3/generic_content_unit.rb +8 -4
  125. data/app/services/katello/pulp3/repository/ansible_collection.rb +4 -0
  126. data/app/services/katello/pulp3/repository/apt.rb +3 -3
  127. data/app/services/katello/pulp3/repository/generic.rb +10 -65
  128. data/app/services/katello/pulp3/repository/yum.rb +10 -0
  129. data/app/services/katello/pulp3/repository.rb +47 -21
  130. data/app/services/katello/pulp3/repository_mirror.rb +30 -11
  131. data/app/services/katello/pulp3/rpm.rb +2 -32
  132. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +7 -8
  133. data/app/services/katello/pulp3/smart_proxy_repository.rb +1 -1
  134. data/app/services/katello/registration_manager.rb +2 -0
  135. data/app/services/katello/repository_type.rb +103 -15
  136. data/app/services/katello/repository_type_manager.rb +14 -8
  137. data/app/services/katello/ui_notifications/subscriptions/manifest_expired_warning.rb +1 -1
  138. data/app/services/katello/upstream_connection_checker.rb +1 -0
  139. data/app/views/foreman/job_templates/resolve_traces.erb +25 -0
  140. data/app/views/foreman/job_templates/resolve_traces_-_katello_ansible_default.erb +28 -0
  141. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  142. data/app/views/katello/api/v2/common/_metadata.json.rabl +1 -0
  143. data/app/views/katello/api/v2/content_facet/base.json.rabl +3 -1
  144. data/app/views/katello/api/v2/content_facet/show.json.rabl +2 -1
  145. data/app/views/katello/api/v2/content_view_components/show.json.rabl +4 -0
  146. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +7 -0
  147. data/app/views/katello/api/v2/content_views/base.json.rabl +12 -8
  148. data/app/views/katello/api/v2/content_views/index.json.rabl +1 -0
  149. data/app/views/katello/api/v2/content_views/permissions.rabl +8 -0
  150. data/app/views/katello/api/v2/debs/base.json.rabl +5 -0
  151. data/app/views/katello/api/v2/errata/index.json.rabl +4 -0
  152. data/app/views/katello/api/v2/generic_content_units/base.json.rabl +2 -0
  153. data/app/views/katello/api/v2/generic_content_units/show.json.rabl +7 -0
  154. data/app/views/katello/api/v2/host_tracer/base.json.rabl +1 -0
  155. data/app/views/katello/api/v2/module_streams/index.json.rabl +4 -0
  156. data/app/views/katello/api/v2/organizations/cdn_configuration.rabl +1 -0
  157. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -0
  158. data/app/views/katello/api/v2/repositories/base.json.rabl +10 -17
  159. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +2 -6
  160. data/config/routes/api/v2.rb +13 -0
  161. data/config/routes/overrides.rb +2 -0
  162. data/config/routes.rb +14 -2
  163. data/db/migrate/20140110000001_update_environments_add_katello_id.rb +1 -3
  164. data/db/migrate/20140610154745_content_view_puppet_environment_id.rb +0 -35
  165. data/db/migrate/20190802112101_add_applicable_debs.rb +16 -0
  166. data/db/migrate/20210201163238_migrate_background_download_policy_to_migrate.rb +2 -2
  167. data/db/migrate/20210909140337_add_last_indexed_to_repos.rb +5 -0
  168. data/db/migrate/20210910190324_move_background_settings_to_immediate.rb +25 -0
  169. data/db/migrate/20211006161617_add_filename_to_katello_generic_content_units.rb +5 -0
  170. data/db/migrate/20211019192121_create_cdn_configuration.katello.rb +30 -0
  171. data/db/migrate/20211025181315_add_additional_metadata_to_katello_generic_content_units.rb +5 -0
  172. data/engines/bastion/README.md +15 -0
  173. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +2 -2
  174. data/engines/bastion/config/routes.rb +2 -0
  175. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +3 -3
  176. data/engines/bastion/vendor/assets/javascripts/bastion/angular-sanitize/angular-sanitize.js +1 -1
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/bastion_katello.js +3 -0
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/registration.html +1 -1
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-applicable.controller.js +44 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs.controller.js +1 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html +70 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs.html +1 -1
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.routes.js +10 -0
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +5 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +25 -9
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +2 -2
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -9
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.controller.js +22 -2
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.routes.js +1 -1
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +22 -2
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html +1 -1
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +36 -4
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb.html +4 -4
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/views/debs.html +31 -4
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/generic-content/generic-content.factory.js +21 -0
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/generic-content/generic-content.module.js +17 -0
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +4 -0
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +3 -3
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +6 -2
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +30 -2
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +1 -13
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +32 -9
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +15 -4
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +32 -19
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +28 -28
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html +57 -0
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +46 -4
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +57 -27
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.module.js +1 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +16 -7
  212. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +30 -4
  213. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +2 -1
  214. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +8 -0
  215. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js +6 -2
  216. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html +1 -1
  217. data/engines/bastion_katello/lib/bastion_katello/engine.rb +1 -1
  218. data/lib/katello/engine.rb +0 -1
  219. data/lib/katello/permission_creator.rb +4 -3
  220. data/lib/katello/permissions/host_permissions.rb +1 -0
  221. data/lib/katello/permissions/organization_permissions.rb +2 -1
  222. data/lib/katello/plugin.rb +15 -11
  223. data/lib/katello/repository_types/ansible_collection.rb +13 -1
  224. data/lib/katello/repository_types/deb.rb +13 -0
  225. data/lib/katello/repository_types/docker.rb +13 -1
  226. data/lib/katello/repository_types/file.rb +13 -0
  227. data/lib/katello/repository_types/ostree.rb +48 -4
  228. data/lib/katello/repository_types/python.rb +26 -12
  229. data/lib/katello/repository_types/yum.rb +16 -1
  230. data/lib/katello/tasks/repository.rake +3 -12
  231. data/lib/katello/tasks/reset.rake +4 -5
  232. data/lib/katello/version.rb +1 -1
  233. data/package.json +3 -2
  234. data/webpack/__mocks__/react-intl/index.js +4 -0
  235. data/webpack/components/ActionableDetail.js +23 -3
  236. data/webpack/components/AddedStatusLabel.js +1 -1
  237. data/webpack/components/Bookmark/AddBookmarkModal.js +96 -0
  238. data/webpack/components/Bookmark/Bookmark.scss +28 -0
  239. data/webpack/components/Bookmark/BookmarkActions.js +24 -0
  240. data/webpack/components/Bookmark/BookmarkConstants.js +3 -0
  241. data/webpack/components/Bookmark/BookmarkSelectors.js +15 -0
  242. data/webpack/components/Bookmark/index.js +94 -0
  243. data/webpack/components/EditableSwitch.js +6 -1
  244. data/webpack/components/EditableTextInput/EditableTextInput.js +41 -13
  245. data/webpack/components/Errata/index.js +69 -0
  246. data/webpack/components/ErratumTypeLabel.js +31 -0
  247. data/webpack/components/Loading.js +5 -2
  248. data/webpack/components/RoutedTabs/__tests__/RoutedTabs.test.js +5 -11
  249. data/webpack/components/RoutedTabs/index.js +77 -2
  250. data/webpack/components/Search/Search.js +67 -80
  251. data/webpack/components/Search/__tests__/search.test.js +8 -26
  252. data/webpack/components/SelectAllCheckbox/SelectAllCheckbox.scss +3 -0
  253. data/webpack/components/SelectAllCheckbox/index.js +126 -0
  254. data/webpack/components/SelectableDropdown/SelectableDropdown.js +7 -2
  255. data/webpack/components/Table/EmptyStateMessage.js +38 -17
  256. data/webpack/components/Table/MainTable.js +49 -10
  257. data/webpack/components/Table/MainTable.scss +11 -0
  258. data/webpack/components/Table/PageControls.js +45 -0
  259. data/webpack/components/Table/TableHooks.js +230 -0
  260. data/webpack/components/Table/TableWrapper.js +221 -50
  261. data/webpack/components/Table/helpers.js +17 -0
  262. data/webpack/components/TypeAhead/TypeAhead.js +74 -58
  263. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +25 -10
  264. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.scss +9 -8
  265. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -2
  266. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +32 -22
  267. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +101 -0
  268. data/webpack/components/extensions/HostDetails/Cards/__tests__/contentViewDetailsCard.test.js +53 -0
  269. data/webpack/components/extensions/HostDetails/HostErrata/HostErrataActions.js +47 -0
  270. data/webpack/components/extensions/HostDetails/HostErrata/HostErrataConstants.js +32 -0
  271. data/webpack/components/extensions/HostDetails/HostErrata/HostErrataSelectors.js +16 -0
  272. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/EmptyPage.js +19 -0
  273. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +17 -0
  274. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +7 -0
  275. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/helpers.js +3 -0
  276. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +40 -0
  277. data/webpack/components/extensions/HostDetails/Tabs/EnableTracerEmptyState.js +42 -0
  278. data/webpack/components/extensions/HostDetails/Tabs/EnableTracerModal.js +118 -0
  279. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab.js +347 -0
  280. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab.scss +16 -0
  281. data/webpack/components/extensions/HostDetails/Tabs/ErratumExpansionContents.js +60 -0
  282. data/webpack/components/extensions/HostDetails/Tabs/ErratumExpansionDetail.js +69 -0
  283. data/webpack/components/extensions/HostDetails/Tabs/HostTracesActions.js +19 -0
  284. data/webpack/components/extensions/HostDetails/Tabs/HostTracesConstants.js +2 -0
  285. data/webpack/components/extensions/HostDetails/Tabs/HostTracesSelectors.js +19 -0
  286. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +56 -0
  287. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +5 -0
  288. data/webpack/components/extensions/HostDetails/Tabs/TracesTab.js +188 -0
  289. data/webpack/components/extensions/HostDetails/Tabs/TracesTab.scss +12 -0
  290. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errata.fixtures.json +67 -0
  291. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +785 -0
  292. data/webpack/components/extensions/HostDetails/Tabs/__tests__/resolveTraces.fixtures.json +35 -0
  293. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracerEmptyTraceResults.fixtures.json +7 -0
  294. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracerEnableJobInvocation.fixtures.json +35 -0
  295. data/webpack/components/extensions/HostDetails/Tabs/__tests__/traces.fixtures.json +44 -0
  296. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +386 -0
  297. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +20 -0
  298. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
  299. data/webpack/components/extensions/RegistrationCommands/index.js +1 -1
  300. data/webpack/components/pf3Table/components/Table.js +1 -1
  301. data/webpack/components/pf3Table/components/__snapshots__/Table.test.js.snap +3 -3
  302. data/webpack/containers/Application/Routes.js +3 -3
  303. data/webpack/containers/Application/config.js +21 -6
  304. data/webpack/containers/Application/overrides.scss +34 -3
  305. data/webpack/{fills_index.js → global_index.js} +11 -2
  306. data/webpack/global_test_setup.js +6 -1
  307. data/webpack/redux/actions/RedHatRepositories/helpers.js +4 -4
  308. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +1 -1
  309. data/webpack/scenes/Content/ContentActions.js +31 -0
  310. data/webpack/scenes/Content/ContentConfig.js +138 -0
  311. data/webpack/scenes/Content/ContentConstants.js +7 -0
  312. data/webpack/scenes/Content/ContentPage.js +89 -0
  313. data/webpack/scenes/Content/ContentSelectors.js +43 -0
  314. data/webpack/scenes/Content/Details/ContentCounts.js +42 -0
  315. data/webpack/scenes/Content/Details/ContentDetails.js +66 -0
  316. data/webpack/scenes/Content/Details/ContentInfo.js +60 -0
  317. data/webpack/scenes/Content/Details/ContentRepositories.js +78 -0
  318. data/webpack/scenes/Content/Details/__tests__/ansibleCollectionDetails.fixtures.json +20 -0
  319. data/webpack/scenes/Content/Details/__tests__/ansibleCollectionRepositoryDetails.fixtures.json +71 -0
  320. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +152 -0
  321. data/webpack/scenes/Content/Details/__tests__/pythonPackageDetails.fixtures.json +20 -0
  322. data/webpack/scenes/Content/Details/__tests__/pythonPackageRepositoryDetails.fixtures.json +71 -0
  323. data/webpack/scenes/Content/Details/index.js +4 -0
  324. data/webpack/scenes/Content/Table/ContentTable.js +90 -0
  325. data/webpack/scenes/Content/Table/index.js +3 -0
  326. data/webpack/scenes/Content/__tests__/ansibleCollections.fixtures.json +50 -0
  327. data/webpack/scenes/Content/__tests__/contentTable.test.js +89 -0
  328. data/webpack/scenes/Content/__tests__/contentTypes.fixtures.json +66 -0
  329. data/webpack/scenes/Content/__tests__/pythonPackages.fixtures.json +30 -0
  330. data/webpack/scenes/Content/index.js +4 -0
  331. data/webpack/scenes/ContentViews/ContentViewSelectors.js +5 -6
  332. data/webpack/scenes/ContentViews/ContentViewsActions.js +13 -8
  333. data/webpack/scenes/ContentViews/ContentViewsConstants.js +31 -4
  334. data/webpack/scenes/ContentViews/ContentViewsPage.js +4 -0
  335. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +19 -7
  336. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +7 -5
  337. data/webpack/scenes/ContentViews/Copy/__tests__/copyContentView.test.js +1 -1
  338. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +7 -3
  339. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -2
  340. data/webpack/scenes/ContentViews/Delete/CVDeleteContext.js +4 -0
  341. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +170 -0
  342. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +108 -0
  343. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +69 -0
  344. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +121 -0
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +120 -0
  346. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReview.js +62 -0
  347. data/webpack/scenes/ContentViews/Delete/Steps/CVEnvironmentSelectionForm.scss +4 -0
  348. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +259 -0
  349. data/webpack/scenes/ContentViews/Delete/__tests__/affectedHosts.fixtures.json +155 -0
  350. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +241 -0
  351. data/webpack/scenes/ContentViews/Delete/__tests__/cvDetails.fixtures.json +248 -0
  352. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +865 -0
  353. data/webpack/scenes/ContentViews/Delete/__tests__/envPathData.fixtures.json +424 -0
  354. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +15 -7
  355. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +123 -0
  356. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  357. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +8 -5
  358. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +109 -51
  359. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +21 -6
  360. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +80 -16
  361. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +248 -3
  362. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +141 -0
  363. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +36 -54
  364. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +20 -4
  365. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +63 -38
  366. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +3 -4
  367. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +65 -0
  368. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +260 -0
  369. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +54 -0
  370. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +202 -0
  371. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +291 -0
  372. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +441 -0
  373. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +62 -3
  374. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +302 -0
  375. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +186 -23
  376. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +144 -19
  377. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +2 -0
  378. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +44 -13
  379. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +81 -17
  380. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +43 -43
  381. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +96 -0
  382. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContent.fixtures.json +166 -0
  383. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +90 -0
  384. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +33 -0
  385. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +91 -0
  386. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +237 -0
  387. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.fixtures.json +42 -0
  388. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +265 -0
  389. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +218 -11
  390. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +517 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterErrata.fixtures.json +122 -0
  392. data/webpack/scenes/ContentViews/Details/Filters/__tests__/allFilterModulesStreams.fixtures.json +60 -0
  393. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewErrataByDateDetails.fixtures.json +359 -0
  394. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetail.fixtures.json +88 -102
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +34 -9
  396. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.fixtures.json +148 -132
  397. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +25 -7
  398. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvAllRepos.fixtures.json +150 -0
  399. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataDateFilterContent.test.js +74 -0
  400. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +404 -0
  401. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErratumFilterDetails.fixtures.json +89 -0
  402. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterDetailModuleAffectedRepos.fixtures.json +383 -0
  403. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterDetailWithAffectedRepos.fixtures.json +375 -0
  404. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvFilterFixutre.fixture.json +282 -0
  405. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +392 -0
  406. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilterDetails.fixtures.json +97 -0
  407. data/webpack/scenes/ContentViews/Details/Filters/index.js +26 -0
  408. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +68 -79
  409. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -2
  410. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +163 -0
  411. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromoteSelectors.js +16 -0
  412. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +9 -1
  413. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +88 -74
  414. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +8 -9
  415. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +3 -3
  416. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +30 -9
  417. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionEnvironments.js +1 -1
  418. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.js +9 -5
  419. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionErrata.scss +2 -2
  420. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +132 -14
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/DeleteContext.js +4 -0
  422. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +176 -0
  423. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +127 -0
  424. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +131 -0
  425. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +128 -0
  426. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +94 -0
  427. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +67 -0
  428. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvAffectedActivationKeys.fixture.json +53 -0
  429. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvAffectedHosts.fixture.json +153 -0
  430. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvDropDownOptionsResponse.fixture.json +192 -0
  431. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +313 -0
  432. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemoveResponse.fixture.json +74 -0
  433. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionRemoveEnvPaths.fixtures.json +352 -0
  434. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +583 -0
  435. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +96 -0
  436. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +97 -0
  437. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +332 -0
  438. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +128 -0
  439. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.scss +44 -0
  440. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +66 -0
  441. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +125 -0
  442. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionRepositoryCell.js +115 -0
  443. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionAnsibleCollections.fixtures.json +449 -0
  444. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +753 -0
  445. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDebPackages.fixtures.json +58 -0
  446. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +158 -0
  447. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +289 -0
  448. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsCounts.fixtures.json +73 -0
  449. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +44 -0
  450. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDockerTags.fixtures.json +3024 -0
  451. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionErrata.fixtures.json +201 -0
  452. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionFiles.fixtures.json +22 -0
  453. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionModuleStreams.fixtures.json +196 -0
  454. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRepositories.fixtures.json +1000 -0
  455. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRpmPackageGroups.fixtures.json +44 -0
  456. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionRpmPackages.fixtures.json +394 -0
  457. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +4 -4
  458. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +95 -26
  459. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +2 -2
  460. data/webpack/scenes/ContentViews/Details/Versions/index.js +25 -0
  461. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +20 -16
  462. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +3 -5
  463. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +106 -64
  464. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +25 -4
  465. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +1 -1
  466. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +4 -1
  467. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +29 -36
  468. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +10 -0
  469. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +117 -0
  470. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +59 -0
  471. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  472. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +30 -11
  473. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +1 -1
  474. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +38 -1
  475. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +79 -0
  476. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +107 -0
  477. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +59 -0
  478. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsResponse.fixtures.json +116 -0
  479. data/webpack/scenes/ContentViews/expansions/__tests__/relatedCompositeCvs.fixtures.json +4 -0
  480. data/webpack/scenes/ContentViews/helpers.js +1 -0
  481. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepository/RepositorySetRepository.js +1 -1
  482. data/webpack/scenes/RedHatRepositories/components/SearchBar.js +4 -3
  483. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +1 -1
  484. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +17 -9
  485. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +3 -3
  486. data/webpack/test-utils/nockWrapper.js +20 -3
  487. data/webpack/utils/helpers.js +16 -2
  488. data/webpack/utils/useDebounce.js +20 -0
  489. metadata +232 -54
  490. data/app/assets/javascripts/katello/widgets/tabs.js +0 -13
  491. data/app/assets/stylesheets/katello/widgets/tabs.scss +0 -69
  492. data/app/lib/actions/katello/provider/update.rb +0 -38
  493. data/webpack/components/RoutedTabs/RoutedTabs.js +0 -90
  494. data/webpack/components/Search/Search.test.js +0 -23
  495. data/webpack/components/Search/__snapshots__/Search.test.js.snap +0 -21
  496. data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +0 -42
  497. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +0 -145
  498. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionPackages.js +0 -0
@@ -14,9 +14,12 @@ html .pagination-pf-pagesize.btn-group {
14
14
  margin-top: -6px !important;
15
15
  }
16
16
 
17
- td, th {
18
- overflow: auto;
19
- word-wrap: break-word;
17
+ // don't use this class if you need a dropdown menu to extend outside the table cell
18
+ .neat-table-cells {
19
+ td, th {
20
+ overflow: auto;
21
+ word-wrap: break-word;
22
+ }
20
23
  }
21
24
 
22
25
  // needed because we have overflow set to auto for all td's and it affected the pf4 table
@@ -63,3 +66,31 @@ td, th {
63
66
  .tab-body-with-spacing {
64
67
  margin: 24px 0px;
65
68
  }
69
+
70
+ .pf-l-bullseye .pf-c-modal-box {
71
+ margin-top: 76px;
72
+ max-height: calc(100vh - 76px);
73
+ @media (min-width: 768px) {
74
+ max-width: calc(100vw - 240px);
75
+ margin-left: 200px;
76
+ }
77
+ }
78
+
79
+ @keyframes hideme {
80
+ 0%, 70% {
81
+ opacity: 1;
82
+ }
83
+
84
+ 100% {
85
+ opacity: 0;
86
+ }
87
+ }
88
+
89
+ .tooltip {
90
+ margin:auto;
91
+ animation-direction: normal;
92
+ animation-name: hideme;
93
+ animation-duration: 2s;
94
+ animation-iteration-count: 1;
95
+ animation-fill-mode: forwards;
96
+ }
@@ -5,12 +5,21 @@ import { registerReducer } from 'foremanReact/common/MountingService';
5
5
  import SystemStatuses from './components/extensions/about';
6
6
  import RegistrationCommands from './components/extensions/RegistrationCommands';
7
7
  import ContentTab from './components/extensions/HostDetails/Tabs/ContentTab';
8
- import SubscriptionTab from './components/extensions/HostDetails/Tabs/SubscriptionTab';
8
+ import ContentViewDetailsCard from './components/extensions/HostDetails/Cards/ContentViewDetailsCard';
9
+
10
+ // import SubscriptionTab from './components/extensions/HostDetails/Tabs/SubscriptionTab';
11
+ import TracesTab from './components/extensions/HostDetails/Tabs/TracesTab';
9
12
  import extendReducer from './components/extensions/reducers';
13
+ import rootReducer from './redux/reducers';
10
14
 
11
15
  registerReducer('katelloExtends', extendReducer);
16
+ registerReducer('katello', rootReducer);
12
17
 
13
18
  addGlobalFill('aboutFooterSlot', '[katello]AboutSystemStatuses', <SystemStatuses key="katello-system-statuses" />, 100);
14
19
  addGlobalFill('registrationAdvanced', '[katello]RegistrationCommands', <RegistrationCommands key="katello-reg" />, 100);
15
20
  addGlobalFill('host-details-page-tabs', 'Content', <ContentTab key="content" />, 100);
16
- addGlobalFill('host-details-page-tabs', 'Subscription', <SubscriptionTab key="subscription" />, 100);
21
+ /* eslint-disable max-len */
22
+ // addGlobalFill('host-details-page-tabs', 'Subscription', <SubscriptionTab key="subscription" />, 100);
23
+ addGlobalFill('host-details-page-tabs', 'Traces', <TracesTab key="traces" />, 100);
24
+
25
+ addGlobalFill('details-cards', 'Content View Details', <ContentViewDetailsCard key="content-view-details" />);
@@ -8,4 +8,9 @@ global.console.error = (error, stack) => {
8
8
  };
9
9
 
10
10
  // Increase jest timeout as some tests using multiple http mocks can time out on CI systems.
11
- jest.setTimeout(10000);
11
+ jest.setTimeout(300000);
12
+
13
+ afterAll(() => {
14
+ jest.resetModules();
15
+ if (global.gc) global.gc();
16
+ });
@@ -24,15 +24,15 @@ const recommendedRepositoriesRHEL = [
24
24
  ];
25
25
 
26
26
  const recommendedRepositoriesSatTools = [
27
- 'satellite-tools-6.9-for-rhel-8-x86_64-rpms',
28
- 'rhel-7-server-satellite-tools-6.9-rpms',
29
- 'rhel-6-server-els-satellite-tools-6.9-rpms',
27
+ 'satellite-tools-6.10-for-rhel-8-x86_64-rpms',
28
+ 'rhel-7-server-satellite-tools-6.10-rpms',
29
+ 'rhel-6-server-els-satellite-tools-6.10-rpms',
30
30
  'rhel-7-server-satellite-maintenance-6-rpms',
31
31
  ];
32
32
 
33
33
  const recommendedRepositoriesMisc = [
34
34
  'rhel-server-rhscl-7-rpms',
35
- 'rhel-7-server-satellite-capsule-6.9-rpms',
35
+ 'rhel-7-server-satellite-capsule-6.10-rpms',
36
36
  'rhel-7-server-ansible-2.9-rpms',
37
37
  ];
38
38
 
@@ -18,7 +18,7 @@ const TableSchema = [
18
18
  formatters: [
19
19
  (value, { rowData }) => (
20
20
  <td>
21
- <Link to={urlBuilder('ansible_collections', '', rowData.id)}>{rowData.name}</Link>
21
+ <Link to={urlBuilder('legacy_ansible_collections', '', rowData.id)}>{rowData.name}</Link>
22
22
  </td>
23
23
  ),
24
24
  ],
@@ -0,0 +1,31 @@
1
+ import { API_OPERATIONS, get } from 'foremanReact/redux/API';
2
+ import api from '../../services/api';
3
+ import { CONTENT_KEY, CONTENT_TYPES_KEY, CONTENT_ID_KEY, REPOSITORY_CONTENT_ID_KEY } from './ContentConstants';
4
+
5
+ export const getContent = (contentType, params) => get({
6
+ type: API_OPERATIONS.GET,
7
+ key: CONTENT_KEY,
8
+ params,
9
+ url: api.getApiUrl(`/${contentType}`),
10
+ });
11
+
12
+ export const getContentTypes = () => get({
13
+ type: API_OPERATIONS.GET,
14
+ key: CONTENT_TYPES_KEY,
15
+ url: api.getApiUrl('/repositories/content_types'),
16
+ });
17
+
18
+ export const getContentDetails = (contentType, id) => get({
19
+ type: API_OPERATIONS.GET,
20
+ key: CONTENT_ID_KEY,
21
+ url: api.getApiUrl(`/${contentType}/${id}`),
22
+ });
23
+
24
+ export const getRepositoryContentDetails = (contentType, id, params) => get({
25
+ type: API_OPERATIONS.GET,
26
+ key: REPOSITORY_CONTENT_ID_KEY,
27
+ params,
28
+ url: api.getApiUrl(`/repositories?${contentType}_id=${id}`),
29
+ });
30
+
31
+ export default getContent;
@@ -0,0 +1,138 @@
1
+ import React from 'react';
2
+ import { Link } from 'react-router-dom';
3
+ import { urlBuilder } from 'foremanReact/common/urlHelpers';
4
+ import { translate as __ } from 'foremanReact/common/I18n';
5
+ import ContentInfo from './Details/ContentInfo';
6
+ import LastSync from '../ContentViews/Details/Repositories/LastSync';
7
+ import ContentRepositories from './Details/ContentRepositories';
8
+ import ContentCounts from './Details/ContentCounts';
9
+
10
+ export default () => [
11
+ {
12
+ names: {
13
+ pluralTitle: __('Python Packages'),
14
+ singularTitle: __('Python Package'),
15
+ pluralLowercase: __('Python packages'),
16
+ singularLowercase: __('Python package'),
17
+ pluralLabel: 'python_packages',
18
+ singularLabel: 'python_package',
19
+ },
20
+ columnHeaders: [
21
+ { title: __('Name'), getProperty: unit => (<Link to={urlBuilder(`content/python_packages/${unit?.id}`, '')}>{unit?.name}</Link>) },
22
+ { title: __('Version'), getProperty: unit => unit?.version },
23
+ { title: __('Filename'), getProperty: unit => unit?.filename },
24
+ ],
25
+ tabs: [
26
+ {
27
+ tabKey: 'details',
28
+ title: __('Details'),
29
+ getContent: (contentType, id, tabKey) => <ContentInfo {...{ contentType, id, tabKey }} />,
30
+ columnHeaders: [
31
+ { title: __('Name'), getProperty: unit => unit?.name },
32
+ { title: __('Version'), getProperty: unit => unit?.version },
33
+ { title: __('Filename'), getProperty: unit => unit?.filename },
34
+ { title: __('Package Type'), getProperty: unit => unit?.additional_metadata.package_type },
35
+ { title: __('sha256'), getProperty: unit => unit?.additional_metadata.sha256 },
36
+ ],
37
+ },
38
+ {
39
+ tabKey: 'repositories',
40
+ title: __('Repositories'),
41
+ getContent: (contentType, id, tabKey) =>
42
+ <ContentRepositories {...{ contentType, id, tabKey }} />,
43
+ columnHeaders: [
44
+ {
45
+ title: __('Name'),
46
+ getProperty: unit =>
47
+ <a href={urlBuilder(`products/${unit?.product.id}/repositories/${unit?.id}`, '')}>{unit?.name}</a>,
48
+ },
49
+ {
50
+ title: __('Product'),
51
+ getProperty: unit =>
52
+ <a href={urlBuilder(`products/${unit?.product.id}/`, '')}>{unit?.product.name}</a>,
53
+ },
54
+ {
55
+ title: __('Sync Status'),
56
+ getProperty: unit =>
57
+ <LastSync lastSyncWords={unit?.last_sync_words} lastSync={unit?.last_sync} />,
58
+ },
59
+ {
60
+ title: __('Content Count'),
61
+ getProperty: (unit, singularLabel) =>
62
+ (<ContentCounts
63
+ typeSingularLabel={singularLabel}
64
+ productId={unit.product.id}
65
+ repoId={unit.id}
66
+ counts={unit.content_counts}
67
+ />),
68
+ },
69
+ ],
70
+ },
71
+ ],
72
+ },
73
+ {
74
+ names: {
75
+ pluralTitle: __('Ansible Collections'),
76
+ singularTitle: __('Ansible Collection'),
77
+ pluralLowercase: __('Ansible collections'),
78
+ singularLowercase: __('Ansible collection'),
79
+ pluralLabel: 'ansible_collections',
80
+ singularLabel: 'ansible_collection',
81
+ },
82
+ columnHeaders: [
83
+ { title: __('Name'), getProperty: unit => (<Link to={urlBuilder(`content/ansible_collections/${unit?.id}`, '')}>{unit?.name}</Link>) },
84
+ { title: __('Author'), getProperty: unit => unit?.namespace },
85
+ { title: __('Version'), getProperty: unit => unit?.version },
86
+ { title: __('Checksum'), getProperty: unit => unit?.checksum },
87
+
88
+ ],
89
+ tabs: [
90
+ {
91
+ tabKey: 'details',
92
+ title: __('Details'),
93
+ getContent: (contentType, id, tabKey) => <ContentInfo {...{ contentType, id, tabKey }} />,
94
+ columnHeaders: [
95
+ { title: __('Name'), getProperty: unit => unit?.name },
96
+ { title: __('Description'), getProperty: unit => unit?.description },
97
+ { title: __('Author'), getProperty: unit => unit?.namespace },
98
+ { title: __('Version'), getProperty: unit => unit?.version },
99
+ { title: __('Checksum'), getProperty: unit => unit?.checksum },
100
+ { title: __('Tags'), getProperty: unit => unit?.tags?.join() },
101
+ ],
102
+ },
103
+ {
104
+ tabKey: 'repositories',
105
+ title: __('Repositories'),
106
+ getContent: (contentType, id, tabKey) =>
107
+ <ContentRepositories {...{ contentType, id, tabKey }} />,
108
+ columnHeaders: [
109
+ {
110
+ title: __('Name'),
111
+ getProperty: unit =>
112
+ <a href={urlBuilder(`products/${unit?.product.id}/repositories/${unit?.id}`, '')}>{unit?.name}</a>,
113
+ },
114
+ {
115
+ title: __('Product'),
116
+ getProperty: unit =>
117
+ <a href={urlBuilder(`products/${unit?.product.id}`, '')}>{unit?.product.name}</a>,
118
+ },
119
+ {
120
+ title: __('Sync Status'),
121
+ getProperty: unit =>
122
+ <LastSync lastSyncWords={unit?.last_sync_words} lastSync={unit?.last_sync} />,
123
+ },
124
+ {
125
+ title: __('Content Count'),
126
+ getProperty: (unit, singularLabel) =>
127
+ (<ContentCounts
128
+ typeSingularLabel={singularLabel}
129
+ productId={unit.product.id}
130
+ repoId={unit.id}
131
+ counts={unit.content_counts}
132
+ />),
133
+ },
134
+ ],
135
+ },
136
+ ],
137
+ },
138
+ ];
@@ -0,0 +1,7 @@
1
+ export const CONTENT_KEY = 'CONTENT';
2
+
3
+ export const CONTENT_TYPES_KEY = 'CONTENT_TYPES';
4
+
5
+ export const CONTENT_ID_KEY = 'CONTENT_ID';
6
+
7
+ export const REPOSITORY_CONTENT_ID_KEY = 'REPOSITORY_CONTENT_ID';
@@ -0,0 +1,89 @@
1
+ import React, { useEffect, useState } from 'react';
2
+ import { useSelector, useDispatch } from 'react-redux';
3
+ import { useParams } from 'react-router-dom';
4
+ import { Grid, GridItem, TextContent, Text, TextVariants } from '@patternfly/react-core';
5
+ import { isEmpty } from 'lodash';
6
+ import { translate as __ } from 'foremanReact/common/I18n';
7
+ import { STATUS } from 'foremanReact/constants';
8
+ import ContentTable from './Table/ContentTable';
9
+ import { selectContentTypes, selectContentTypesStatus } from './ContentSelectors';
10
+ import ContentConfig from './ContentConfig';
11
+ import { getContentTypes } from './ContentActions';
12
+ import Loading from '../../components/Loading';
13
+ import EmptyStateMessage from '../../components/Table/EmptyStateMessage';
14
+
15
+ const ContentPage = () => {
16
+ const dispatch = useDispatch();
17
+ const contentTypesResponse = useSelector(selectContentTypes);
18
+ const contentTypesStatus = useSelector(selectContentTypesStatus);
19
+ const [selectedContentType, setSelectedContentType] = useState(null);
20
+ const [showContentTypeSelector, setShowContentTypeSelector] = useState(true);
21
+ const [contentTypes, setContentTypes] = useState(null);
22
+ const { content_type: contentType } = useParams();
23
+
24
+ useEffect(() => {
25
+ // Set list of enabled content types and initial content type
26
+ const buildContentTypes = () => {
27
+ const types = {};
28
+ contentTypesResponse.forEach((type) => {
29
+ if (type.generic_browser) {
30
+ const typeConfig = ContentConfig().find(config =>
31
+ config.names.singularLabel === type.label);
32
+ if (typeConfig) {
33
+ const { names } = typeConfig;
34
+ types[names.pluralTitle] = [names.singularLabel, names.pluralLabel];
35
+ }
36
+ }
37
+ });
38
+ return types;
39
+ };
40
+
41
+ if (contentTypesStatus === STATUS.RESOLVED) {
42
+ const enabledContentTypes = buildContentTypes();
43
+ if (!contentType) {
44
+ setSelectedContentType(Object.keys(enabledContentTypes)[0]);
45
+ } else {
46
+ Object.entries(enabledContentTypes).forEach(([key, value]) => {
47
+ if (value.includes(contentType)) {
48
+ setSelectedContentType(key);
49
+ setShowContentTypeSelector(false);
50
+ }
51
+ });
52
+ }
53
+ setContentTypes(enabledContentTypes);
54
+ }
55
+ }, [contentTypesStatus, contentTypesResponse, contentType]);
56
+
57
+ useEffect(() => {
58
+ dispatch(getContentTypes());
59
+ }, [dispatch]);
60
+
61
+ if (contentTypesStatus === STATUS.PENDING) {
62
+ return <Loading />;
63
+ } else if (isEmpty(contentTypes)) {
64
+ return (
65
+ <EmptyStateMessage
66
+ title="Browsable content types not found."
67
+ body="No content types are enabled for this page."
68
+ />
69
+ );
70
+ }
71
+
72
+ return (
73
+ <Grid className="grid-with-margin">
74
+ <GridItem span={12}>
75
+ <TextContent>
76
+ <Text component={TextVariants.h1}>{__(`${selectedContentType}`)}</Text>
77
+ </TextContent>
78
+ </GridItem>
79
+ <GridItem span={12}>
80
+ <ContentTable {...{
81
+ selectedContentType, setSelectedContentType, contentTypes, showContentTypeSelector,
82
+ }}
83
+ />
84
+ </GridItem>
85
+ </Grid>
86
+ );
87
+ };
88
+
89
+ export default ContentPage;
@@ -0,0 +1,43 @@
1
+ import {
2
+ selectAPIStatus,
3
+ selectAPIError,
4
+ selectAPIResponse,
5
+ } from 'foremanReact/redux/API/APISelectors';
6
+ import { STATUS } from 'foremanReact/constants';
7
+ import { CONTENT_KEY, CONTENT_TYPES_KEY, CONTENT_ID_KEY, REPOSITORY_CONTENT_ID_KEY } from './ContentConstants';
8
+
9
+ export const selectContent = state =>
10
+ selectAPIResponse(state, CONTENT_KEY) || {};
11
+
12
+ export const selectContentStatus = state =>
13
+ selectAPIStatus(state, CONTENT_KEY) || STATUS.PENDING;
14
+
15
+ export const selectContentError = state =>
16
+ selectAPIError(state, CONTENT_KEY);
17
+
18
+ export const selectContentTypes = state =>
19
+ selectAPIResponse(state, CONTENT_TYPES_KEY) || {};
20
+
21
+ export const selectContentTypesStatus = state =>
22
+ selectAPIStatus(state, CONTENT_TYPES_KEY) || STATUS.PENDING;
23
+
24
+ export const selectContentTypesError = state =>
25
+ selectAPIError(state, CONTENT_TYPES_KEY);
26
+
27
+ export const selectContentDetails = state =>
28
+ selectAPIResponse(state, CONTENT_ID_KEY);
29
+
30
+ export const selectContentDetailsStatus = state =>
31
+ selectAPIStatus(state, CONTENT_ID_KEY) || STATUS.PENDING;
32
+
33
+ export const selectContentDetailsError = state =>
34
+ selectAPIError(state, CONTENT_ID_KEY);
35
+
36
+ export const selectRepositoryContentDetails = state =>
37
+ selectAPIResponse(state, REPOSITORY_CONTENT_ID_KEY);
38
+
39
+ export const selectRepositoryContentDetailsStatus = state =>
40
+ selectAPIStatus(state, REPOSITORY_CONTENT_ID_KEY) || STATUS.PENDING;
41
+
42
+ export const selectRepositoryContentDetailsError = state =>
43
+ selectAPIError(state, REPOSITORY_CONTENT_ID_KEY);
@@ -0,0 +1,42 @@
1
+ import React, { Fragment } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { urlBuilder } from 'foremanReact/common/urlHelpers';
4
+ import ContentConfig from '../ContentConfig';
5
+
6
+ const appendCount = (type, count, info, productId, repoId) => {
7
+ const [repoPlural, repoSingular, link] = info;
8
+ const displayName = count > 1 ? repoPlural : repoSingular;
9
+ const url = urlBuilder(`products/${productId}/repositories/${repoId}/content`, '', link);
10
+ const displayInfo = `${count} ${displayName}`;
11
+ return (
12
+ <div key={`${type}${count}`}>
13
+ <a href={url}>{displayInfo}</a>
14
+ </div>
15
+ );
16
+ };
17
+
18
+ const ContentCounts = ({
19
+ typeSingularLabel, productId, repoId, counts,
20
+ }) => {
21
+ const config = ContentConfig().find(type =>
22
+ type.names.singularLabel === typeSingularLabel);
23
+ const { pluralLowercase, singularLowercase, pluralLabel } = config.names;
24
+ const info = [pluralLowercase, singularLowercase, pluralLabel];
25
+
26
+ const allCounts = [];
27
+ Object.keys(counts).forEach((type) => {
28
+ const count = counts[typeSingularLabel];
29
+ if (count > 0) allCounts.push(appendCount(type, count, info, productId, repoId));
30
+ });
31
+
32
+ return <Fragment>{allCounts}</Fragment>;
33
+ };
34
+
35
+ ContentCounts.propTypes = {
36
+ typeSingularLabel: PropTypes.string.isRequired,
37
+ productId: PropTypes.number.isRequired,
38
+ repoId: PropTypes.number.isRequired,
39
+ counts: PropTypes.shape({}).isRequired,
40
+ };
41
+
42
+ export default ContentCounts;
@@ -0,0 +1,66 @@
1
+ import React, { useEffect } from 'react';
2
+ import { useDispatch, useSelector } from 'react-redux';
3
+ import { Link, useParams } from 'react-router-dom';
4
+ import { Grid, GridItem, TextContent, Text, TextVariants, Flex, Breadcrumb, BreadcrumbItem } from '@patternfly/react-core';
5
+ import { STATUS } from 'foremanReact/constants';
6
+ import ContentConfig from '../ContentConfig';
7
+ import RoutedTabs from '../../../components/RoutedTabs';
8
+ import { selectContentDetails, selectContentDetailsStatus } from '../ContentSelectors';
9
+ import { getContentDetails } from '../ContentActions';
10
+ import Loading from '../../../components/Loading';
11
+
12
+ const ContentDetails = () => {
13
+ const dispatch = useDispatch();
14
+ const contentDetailsResponse = useSelector(selectContentDetails);
15
+ const contentDetailsResponseStatus = useSelector(selectContentDetailsStatus);
16
+
17
+ const { id, content_type: contentType } = useParams();
18
+ const contentId = Number(id);
19
+ const config = ContentConfig().find(type =>
20
+ type.names.pluralLabel === contentType);
21
+ const { pluralTitle, pluralLabel } = config.names;
22
+
23
+ const tabs = [];
24
+ config.tabs.forEach((tab) => {
25
+ tabs.push({
26
+ title: tab.title,
27
+ key: tab.tabKey,
28
+ content: tab.getContent(contentType, contentId, tab.tabKey),
29
+ });
30
+ });
31
+
32
+ useEffect(() => {
33
+ dispatch(getContentDetails(contentType, contentId));
34
+ }, [dispatch, contentType, contentId]);
35
+
36
+ if (contentDetailsResponseStatus === STATUS.PENDING) {
37
+ return <Loading />;
38
+ }
39
+
40
+ return (
41
+ <Grid className="grid-with-margin">
42
+ <Breadcrumb style={{ marginTop: '15px', marginBottom: '15px' }}>
43
+ <BreadcrumbItem
44
+ aria-label="content_breadcrumb"
45
+ render={() => (<Link to={`/content/${pluralLabel}`}>{pluralTitle}</Link>)}
46
+ />
47
+ <BreadcrumbItem
48
+ aria-label="content_breadcrumb_content"
49
+ isActive
50
+ > {contentDetailsResponse.name}
51
+ </BreadcrumbItem>
52
+ </Breadcrumb>
53
+ <GridItem span={12} >
54
+ <Flex>
55
+ <TextContent>
56
+ <Text component={TextVariants.h1}> {contentDetailsResponse.name} </Text>
57
+ </TextContent>
58
+ </Flex>
59
+ </GridItem>
60
+ <GridItem span={12}>
61
+ <RoutedTabs tabs={tabs} baseUrl={`/${contentType}/${contentId}`} defaultTabIndex={0} />
62
+ </GridItem>
63
+ </Grid>
64
+ );
65
+ };
66
+ export default ContentDetails;
@@ -0,0 +1,60 @@
1
+ import React, { useEffect } from 'react';
2
+ import { useSelector, useDispatch } from 'react-redux';
3
+ import {
4
+ TextContent,
5
+ TextList,
6
+ TextListVariants,
7
+ TextListItem,
8
+ TextListItemVariants,
9
+ } from '@patternfly/react-core';
10
+ import { STATUS } from 'foremanReact/constants';
11
+ import PropTypes from 'prop-types';
12
+ import { selectContentDetails, selectContentDetailsStatus } from '../ContentSelectors';
13
+ import contentConfig from '../ContentConfig';
14
+ import { getContentDetails } from '../ContentActions';
15
+ import Loading from '../../../components/Loading';
16
+ /* eslint-disable react/no-array-index-key */
17
+ const ContentInfo = ({ contentType, id, tabKey }) => {
18
+ const dispatch = useDispatch();
19
+ const detailsResponse = useSelector(selectContentDetails);
20
+ const detailsStatus = useSelector(selectContentDetailsStatus);
21
+
22
+ const config = contentConfig().find(type => type.names.pluralLabel === contentType);
23
+ const { columnHeaders } = config.tabs.find(header => header.tabKey === tabKey);
24
+
25
+ useEffect(() => {
26
+ if (!detailsResponse) {
27
+ dispatch(getContentDetails(contentType, id));
28
+ }
29
+ });
30
+
31
+ if (detailsStatus === STATUS.PENDING) {
32
+ return <Loading />;
33
+ }
34
+
35
+ return (
36
+ <TextContent>
37
+ <TextList component={TextListVariants.dl}>
38
+ {columnHeaders.map((col, index) => [
39
+ <TextListItem
40
+ key={`${index}_${col.title}`}
41
+ component={TextListItemVariants.dt}
42
+ > {col.title}
43
+ </TextListItem>,
44
+ <TextListItem
45
+ key={index}
46
+ component={TextListItemVariants.dd}
47
+ > {col.getProperty(detailsResponse)}
48
+ </TextListItem>])}
49
+ </TextList>
50
+ </TextContent>
51
+ );
52
+ };
53
+
54
+ export default ContentInfo;
55
+
56
+ ContentInfo.propTypes = {
57
+ contentType: PropTypes.string.isRequired,
58
+ id: PropTypes.number.isRequired,
59
+ tabKey: PropTypes.string.isRequired,
60
+ };
@@ -0,0 +1,78 @@
1
+ import React, { useState, useCallback } from 'react';
2
+ import { useSelector } from 'react-redux';
3
+ import { TableVariant, Thead, Tbody, Tr, Th, Td } from '@patternfly/react-table';
4
+ import { translate as __ } from 'foremanReact/common/I18n';
5
+ import PropTypes from 'prop-types';
6
+ import {
7
+ selectRepositoryContentDetails,
8
+ selectRepositoryContentDetailsError,
9
+ selectRepositoryContentDetailsStatus,
10
+ } from '../ContentSelectors';
11
+ import contentConfig from '../ContentConfig';
12
+ import { getRepositoryContentDetails } from '../ContentActions';
13
+ import TableWrapper from '../../../components/Table/TableWrapper';
14
+
15
+ /* eslint-disable react/no-array-index-key */
16
+ const ContentRepositories = ({ contentType, id, tabKey }) => {
17
+ const status = useSelector(selectRepositoryContentDetailsStatus);
18
+ const response = useSelector(selectRepositoryContentDetails);
19
+ const error = useSelector(selectRepositoryContentDetailsError);
20
+ const [searchQuery, updateSearchQuery] = useState('');
21
+ const { results, ...metadata } = response;
22
+
23
+ const config = contentConfig().find(type => type.names.pluralLabel === contentType);
24
+ const typeSingularLabel = config.names.singularLabel;
25
+ const { columnHeaders } = config.tabs.find(header => header.tabKey === tabKey);
26
+
27
+ const emptyContentTitle = __("You currently don't have any repositories associated with this content.");
28
+ const emptyContentBody = __('Please add some repositories.');
29
+ const emptySearchTitle = __('No matching repositories found');
30
+ const emptySearchBody = __('Try changing your search settings.');
31
+
32
+ return (
33
+ <TableWrapper
34
+ {...{
35
+ metadata,
36
+ searchQuery,
37
+ updateSearchQuery,
38
+ error,
39
+ status,
40
+ emptyContentTitle,
41
+ emptySearchTitle,
42
+ emptySearchBody,
43
+ emptyContentBody,
44
+ }}
45
+ variant={TableVariant.compact}
46
+ autocompleteEndpoint="/repositories/auto_complete_search"
47
+ fetchItems={useCallback(
48
+ params => getRepositoryContentDetails(typeSingularLabel, id, params),
49
+ [typeSingularLabel, id],
50
+ )}
51
+ >
52
+ <Thead>
53
+ <Tr>
54
+ {columnHeaders.map(col =>
55
+ <Th key={col.title}>{col.title}</Th>)}
56
+ </Tr>
57
+ </Thead>
58
+ <Tbody>
59
+ {results?.map(details => (
60
+ <Tr key={`${details.id}`}>
61
+ {columnHeaders.map((col, index) =>
62
+ <Td key={index}>{col.getProperty(details, typeSingularLabel)}</Td>)
63
+ }
64
+ </Tr>
65
+ ))
66
+ }
67
+ </Tbody>
68
+ </TableWrapper>
69
+ );
70
+ };
71
+
72
+ export default ContentRepositories;
73
+
74
+ ContentRepositories.propTypes = {
75
+ contentType: PropTypes.string.isRequired,
76
+ id: PropTypes.number.isRequired,
77
+ tabKey: PropTypes.string.isRequired,
78
+ };