katello 4.4.1 → 4.5.0

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 (488) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/activation_key_edit.js +9 -2
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +3 -0
  4. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  5. data/app/controllers/katello/api/v2/alternate_content_sources_bulk_actions_controller.rb +44 -0
  6. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +121 -0
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  10. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  11. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -1
  12. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  13. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  14. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  16. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  17. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  18. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  19. data/app/controllers/katello/api/v2/repositories_controller.rb +1 -1
  20. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  21. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  22. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  23. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  24. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  25. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  26. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  27. data/app/lib/actions/katello/alternate_content_source/refresh.rb +27 -0
  28. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  29. data/app/lib/actions/katello/cdn_configuration/update.rb +3 -3
  30. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  31. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  32. data/app/lib/actions/katello/content_view/publish.rb +8 -10
  33. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  34. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  35. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  36. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  37. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  38. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  39. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  40. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  41. data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -1
  42. data/app/lib/actions/katello/product/content_create.rb +10 -8
  43. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  44. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  45. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  46. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  47. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  48. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  49. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +23 -0
  50. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  51. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  52. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  53. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  54. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  55. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +16 -0
  56. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  57. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +15 -0
  58. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +16 -0
  59. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  60. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  61. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  62. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  63. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  64. data/app/lib/katello/concerns/base_template_scope_extensions.rb +24 -11
  65. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  66. data/app/lib/katello/util/errata.rb +2 -3
  67. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  68. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  69. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  70. data/app/models/katello/alternate_content_source.rb +71 -0
  71. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  72. data/app/models/katello/authorization/repository.rb +5 -3
  73. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  74. data/app/models/katello/cdn_configuration.rb +15 -15
  75. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  76. data/app/models/katello/concerns/host_managed_extensions.rb +7 -6
  77. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  78. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  79. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  80. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  81. data/app/models/katello/content.rb +1 -0
  82. data/app/models/katello/content_credential.rb +6 -0
  83. data/app/models/katello/content_override.rb +7 -3
  84. data/app/models/katello/content_view.rb +33 -2
  85. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  86. data/app/models/katello/content_view_filter.rb +4 -0
  87. data/app/models/katello/content_view_version.rb +12 -0
  88. data/app/models/katello/content_view_version_export_history.rb +3 -1
  89. data/app/models/katello/erratum.rb +9 -5
  90. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  91. data/app/models/katello/host/content_facet.rb +14 -0
  92. data/app/models/katello/host_available_module_stream.rb +12 -0
  93. data/app/models/katello/product_content.rb +1 -0
  94. data/app/models/katello/purpose_sla_status.rb +1 -1
  95. data/app/models/katello/purpose_status.rb +2 -2
  96. data/app/models/katello/repository.rb +7 -4
  97. data/app/models/katello/root_repository.rb +1 -1
  98. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  99. data/app/models/katello/sync_plan.rb +1 -1
  100. data/app/presenters/katello/product_content_presenter.rb +15 -0
  101. data/app/services/katello/applicable_host_queue.rb +1 -1
  102. data/app/services/katello/product_content_finder.rb +12 -2
  103. data/app/services/katello/pulp3/alternate_content_source.rb +123 -0
  104. data/app/services/katello/pulp3/api/file.rb +8 -0
  105. data/app/services/katello/pulp3/api/yum.rb +8 -0
  106. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  107. data/app/services/katello/pulp3/content_view_version/import.rb +104 -71
  108. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  109. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  110. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  111. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  112. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +102 -38
  113. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  114. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  115. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  116. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  117. data/app/services/katello/pulp3/repository.rb +6 -62
  118. data/app/services/katello/pulp3/service_common.rb +66 -0
  119. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  120. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  121. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  122. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  123. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +10 -8
  124. data/app/views/foreman/job_templates/install_group.erb +4 -4
  125. data/app/views/foreman/job_templates/install_package.erb +4 -4
  126. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  127. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  128. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  129. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  130. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  131. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  132. data/app/views/foreman/job_templates/update_group.erb +4 -4
  133. data/app/views/foreman/job_templates/update_package.erb +4 -4
  134. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  135. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +24 -0
  136. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  137. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  138. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  139. data/app/views/katello/api/v2/content_facet/show.json.rabl +12 -0
  140. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  141. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  142. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  143. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  144. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  145. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  146. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  147. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  148. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  149. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  150. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  151. data/config/routes/api/v2.rb +19 -0
  152. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  153. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  154. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  155. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  156. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  157. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +1 -1
  158. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  159. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  160. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  161. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  162. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  163. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  164. data/db/migrate/20220303160220_remove_duplicate_errata.rb +1 -1
  165. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  166. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  167. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  168. data/db/migrate/20220428203334_add_last_refreshed_to_katello_alternate_content_sources.rb +5 -0
  169. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  170. data/db/seeds.d/150-module_job_templates.rb +1 -1
  171. data/engines/bastion/README.md +1 -0
  172. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  173. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.routes.js +1 -1
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html +1 -1
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +11 -6
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages.controller.js +11 -3
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -12
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  204. data/lib/katello/engine.rb +1 -5
  205. data/lib/katello/permission_creator.rb +34 -4
  206. data/lib/katello/plugin.rb +377 -3
  207. data/lib/katello/tasks/refresh_alternate_content_sources.rake +15 -0
  208. data/lib/katello/tasks/reset.rake.bak +67 -0
  209. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  210. data/lib/katello/version.rb +1 -1
  211. data/locale/action_names.rb +47 -41
  212. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  213. data/locale/bn/katello.po +820 -106
  214. data/locale/bn/katello.po.time_stamp +0 -0
  215. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  216. data/locale/cs/katello.po +818 -104
  217. data/locale/cs/katello.po.time_stamp +0 -0
  218. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  219. data/locale/de/katello.po +893 -179
  220. data/locale/de/katello.po.time_stamp +0 -0
  221. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  222. data/locale/en/katello.po +817 -103
  223. data/locale/en/katello.po.time_stamp +0 -0
  224. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  225. data/locale/es/katello.po +882 -168
  226. data/locale/es/katello.po.time_stamp +0 -0
  227. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/fr/katello.po +1219 -505
  229. data/locale/fr/katello.po.time_stamp +0 -0
  230. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/gu/katello.po +826 -112
  232. data/locale/gu/katello.po.time_stamp +0 -0
  233. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/hi/katello.po +826 -112
  235. data/locale/hi/katello.po.time_stamp +0 -0
  236. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/it/katello.po +863 -148
  238. data/locale/it/katello.po.time_stamp +0 -0
  239. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/ja/katello.po +1216 -499
  241. data/locale/ja/katello.po.time_stamp +0 -0
  242. data/locale/katello.pot +3847 -2507
  243. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  244. data/locale/kn/katello.po +826 -112
  245. data/locale/kn/katello.po.time_stamp +0 -0
  246. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  247. data/locale/ko/katello.po +912 -198
  248. data/locale/ko/katello.po.time_stamp +0 -0
  249. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  250. data/locale/mr/katello.po +826 -112
  251. data/locale/mr/katello.po.time_stamp +0 -0
  252. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  253. data/locale/or/katello.po +826 -112
  254. data/locale/or/katello.po.time_stamp +0 -0
  255. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  256. data/locale/pa/katello.po +826 -112
  257. data/locale/pa/katello.po.time_stamp +0 -0
  258. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  259. data/locale/pt/katello.po +817 -103
  260. data/locale/pt/katello.po.time_stamp +0 -0
  261. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  262. data/locale/pt_BR/katello.po +879 -165
  263. data/locale/pt_BR/katello.po.time_stamp +0 -0
  264. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  265. data/locale/ru/katello.po +927 -213
  266. data/locale/ru/katello.po.time_stamp +0 -0
  267. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  268. data/locale/ta/katello.po +820 -106
  269. data/locale/ta/katello.po.time_stamp +0 -0
  270. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  271. data/locale/te/katello.po +826 -112
  272. data/locale/te/katello.po.time_stamp +0 -0
  273. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  274. data/locale/zh_CN/katello.po +1202 -486
  275. data/locale/zh_CN/katello.po.time_stamp +0 -0
  276. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  277. data/locale/zh_TW/katello.po +856 -142
  278. data/locale/zh_TW/katello.po.time_stamp +0 -0
  279. data/webpack/components/Bookmark/index.js +22 -14
  280. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  281. data/webpack/components/Errata/index.js +38 -8
  282. data/webpack/components/Packages/index.js +1 -4
  283. data/webpack/components/Search/Search.js +22 -3
  284. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  285. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  286. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  287. data/webpack/components/Table/MainTable.js +29 -4
  288. data/webpack/components/Table/MainTable.scss +5 -1
  289. data/webpack/components/Table/TableHooks.js +65 -20
  290. data/webpack/components/Table/TableWrapper.js +9 -3
  291. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  292. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  293. data/webpack/components/TypeAhead/TypeAhead.js +12 -0
  294. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  295. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +7 -2
  296. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  297. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +250 -0
  298. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +232 -0
  299. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  300. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  301. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  302. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  303. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  304. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  305. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  306. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  307. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  308. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +206 -0
  309. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  310. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  311. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  312. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  313. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +118 -0
  314. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  315. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  316. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  317. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  318. data/webpack/components/extensions/HostDetails/DetailsTabCards/RecentCommunicationCardExtensions.js +37 -0
  319. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  320. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  321. data/webpack/components/extensions/HostDetails/HostDetailsActions.js +11 -0
  322. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +4 -0
  323. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -0
  324. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +6 -1
  325. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +176 -72
  326. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  327. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  328. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  329. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +522 -118
  330. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  331. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +6 -4
  332. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +164 -58
  333. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +59 -49
  334. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  335. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionHooks.js +85 -0
  336. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  337. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  338. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +298 -107
  339. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +14 -7
  340. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/HostTracesActions.js +2 -1
  341. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +104 -0
  342. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +134 -57
  343. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +37 -32
  344. data/webpack/components/extensions/HostDetails/Tabs/{ModuleStreamsTab/__tests__/modules.fixtures.json → __tests__/moduleStreams.fixtures.json} +6 -3
  345. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +261 -0
  346. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +21 -15
  347. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +44 -1
  348. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +4 -1
  349. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +105 -6
  350. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +25 -6
  351. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  352. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +18 -0
  353. data/webpack/containers/Application/config.js +5 -0
  354. data/webpack/global_index.js +32 -9
  355. data/webpack/global_test_setup.js +13 -0
  356. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  357. data/webpack/redux/actions/RedHatRepositories/helpers.js +13 -8
  358. data/webpack/scenes/AlternateContentSources/ACSActions.js +65 -0
  359. data/webpack/scenes/AlternateContentSources/ACSConstants.js +18 -0
  360. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  361. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +24 -0
  362. data/webpack/scenes/AlternateContentSources/Create/ACSCreateContext.js +4 -0
  363. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +160 -0
  364. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +79 -0
  365. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +199 -0
  366. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +104 -0
  367. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +41 -0
  368. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +71 -0
  369. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +57 -0
  370. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +77 -0
  371. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +149 -0
  372. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreateData.fixtures.json +3 -0
  373. data/webpack/scenes/AlternateContentSources/Create/__tests__/contentCredentials.fixtures.json +69 -0
  374. data/webpack/scenes/AlternateContentSources/Create/__tests__/smartProxy.fixtures.json +65 -0
  375. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +162 -0
  376. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  377. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  378. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  379. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  380. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  381. data/webpack/scenes/ContentCredentials/ContentCredentialSelectors.js +4 -1
  382. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  383. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  384. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  385. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  386. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +2 -1
  387. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  388. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  389. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  390. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +2 -2
  391. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +2 -2
  392. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  393. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  394. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  395. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  396. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +16 -2
  397. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  398. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  399. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  400. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  401. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  402. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  403. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  404. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  405. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  406. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  407. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  408. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  409. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  410. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  411. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  412. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  413. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  414. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  415. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  416. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  417. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  418. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  420. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  421. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  422. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  423. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  424. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  425. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  426. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  427. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  428. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  429. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  430. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  431. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  432. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  433. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  434. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  435. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  436. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  437. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  438. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  439. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  440. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  441. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  442. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  443. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  444. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  445. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  446. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  447. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  448. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  449. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  450. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  451. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  452. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  453. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  454. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  455. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +10 -6
  456. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  457. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  458. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  459. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +2 -2
  460. data/webpack/scenes/ContentViews/helpers.js +3 -0
  461. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  462. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  463. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  464. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  465. data/webpack/scenes/RedHatRepositories/components/Search.js +4 -4
  466. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +9 -2
  467. data/webpack/scenes/SmartProxy/SmartProxyContentConstants.js +1 -1
  468. data/webpack/scenes/SmartProxy/SmartProxyContentSelectors.js +10 -1
  469. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  470. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  471. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  472. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  473. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  474. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  475. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  476. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  477. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  478. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  479. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  480. data/webpack/scenes/Tasks/helpers.js +60 -5
  481. data/webpack/utils/helpers.js +2 -0
  482. metadata +183 -38
  483. data/app/models/setting/content.rb +0 -201
  484. data/db/seeds.d/107-enable_dynflow.rb +0 -8
  485. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  486. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +0 -108
  487. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerEmptyState.js +0 -42
  488. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
@@ -1,31 +1,235 @@
1
- import React, { useCallback } from 'react';
1
+ import React, { useCallback, useState } from 'react';
2
2
  import { useSelector } from 'react-redux';
3
+ import { FormattedMessage } from 'react-intl';
3
4
  import { translate as __ } from 'foremanReact/common/I18n';
4
- import { Skeleton, Label, Hint, HintBody, Button } from '@patternfly/react-core';
5
+ import { Skeleton,
6
+ Label,
7
+ Button,
8
+ Split,
9
+ SplitItem,
10
+ Spinner,
11
+ Checkbox,
12
+ Dropdown,
13
+ Text,
14
+ TextVariants,
15
+ DropdownItem,
16
+ KebabToggle,
17
+ DropdownPosition,
18
+ DropdownSeparator,
19
+ Modal,
20
+ ModalVariant } from '@patternfly/react-core';
5
21
  import PropTypes from 'prop-types';
6
- import { upperFirst } from 'lodash';
7
- import { TableText, TableVariant, Thead, Tbody, Tr, Th, Td } from '@patternfly/react-table';
22
+ import { upperFirst, lowerCase } from 'lodash';
23
+ import { TableText, TableVariant, Thead, Tbody, Tr, Td } from '@patternfly/react-table';
8
24
  import {
9
25
  LongArrowAltUpIcon,
10
26
  CheckIcon,
11
27
  } from '@patternfly/react-icons';
12
- import { urlBuilder } from 'foremanReact/common/urlHelpers';
13
28
  import { selectModuleStreamStatus, selectModuleStream } from './ModuleStreamsSelectors';
14
- import { useBulkSelect, useUrlParams } from '../../../../Table/TableHooks';
29
+ import { useBulkSelect, useTableSort, useUrlParams } from '../../../../Table/TableHooks';
15
30
  import { getHostModuleStreams } from './ModuleStreamsActions';
16
31
  import InactiveText from '../../../../../scenes/ContentViews/components/InactiveText';
17
32
  import TableWrapper from '../../../../../components/Table/TableWrapper';
18
33
  import hostIdNotReady from '../../HostDetailsActions';
19
34
  import { selectHostDetails } from '../../HostDetailsSelectors';
35
+ import SortableColumnHeaders from '../../../../Table/components/SortableColumnHeaders';
36
+ import SelectableDropdown from '../../../../SelectableDropdown/SelectableDropdown';
37
+ import {
38
+ HOST_MODULE_STREAM_STATUSES, INSTALL_STATUS_PARAM_TO_FRIENDLY_NAME, INSTALLED_STATE,
39
+ STATUS_PARAM_TO_FRIENDLY_NAME,
40
+ } from './ModuleStreamsConstants';
41
+ import { moduleStreamAction } from '../RemoteExecutionActions';
42
+ import { katelloModuleStreamActionUrl } from '../customizedRexUrlHelpers';
43
+ import { useRexJobPolling } from '../RemoteExecutionHooks';
44
+ import {
45
+ hasRequiredPermissions as can,
46
+ missingRequiredPermissions as cannot,
47
+ userPermissionsFromHostDetails,
48
+ } from '../../hostDetailsHelpers';
49
+
50
+
51
+ const EnabledIcon = ({ streamText, streamInstallStatus, upgradable }) => {
52
+ switch (true) {
53
+ case (streamInstallStatus?.length > 0 && streamText === 'disabled'):
54
+ return <TableText wrapModifier="nowrap">{INSTALLED_STATE.INSTALLED}</TableText>;
55
+ case (streamInstallStatus?.length > 0 && streamText === 'enabled' && upgradable !== true):
56
+ return <><CheckIcon color="green" /> {INSTALLED_STATE.UPTODATE}</>;
57
+ case (streamInstallStatus?.length > 0 && streamText === 'enabled' && upgradable):
58
+ return <><LongArrowAltUpIcon color="blue" /> {INSTALLED_STATE.UPGRADEABLE}</>;
59
+ default:
60
+ return <InactiveText text={INSTALLED_STATE.NOTINSTALLED} />;
61
+ }
62
+ };
63
+
64
+ EnabledIcon.propTypes = {
65
+ streamText: PropTypes.string.isRequired,
66
+ streamInstallStatus: PropTypes.arrayOf(PropTypes.string).isRequired,
67
+ upgradable: PropTypes.bool.isRequired,
68
+ };
69
+
70
+ const stateText = (moduleStreamStatus) => {
71
+ let streamText = moduleStreamStatus?.charAt(0)?.toUpperCase() + moduleStreamStatus?.slice(1);
72
+ streamText = streamText?.replace('Unknown', 'Default');
73
+ return streamText;
74
+ };
75
+
76
+ const StreamState = ({ moduleStreamStatus }) => {
77
+ const streamText = stateText(moduleStreamStatus);
78
+ switch (true) {
79
+ case (streamText === 'Default'):
80
+ return <Label color="gray" variant="outline">{streamText}</Label>;
81
+ case (streamText === 'Disabled'):
82
+ return <Label color="gray" variant="filled">{streamText}</Label>;
83
+ case (streamText === 'Enabled'):
84
+ return <Label color="green" variant="filled">{streamText}</Label>;
85
+ default:
86
+ return null;
87
+ }
88
+ };
89
+
90
+ StreamState.propTypes = {
91
+ moduleStreamStatus: PropTypes.string.isRequired,
92
+ };
93
+
94
+ const HostInstalledProfiles = ({ moduleStreamStatus, installedProfiles }) => {
95
+ let installedProfile;
96
+ if (installedProfiles?.length > 0) {
97
+ installedProfile = installedProfiles?.map(profile => upperFirst(profile)).join(', ');
98
+ } else {
99
+ installedProfile = 'No profile installed';
100
+ }
101
+ const disabledText = moduleStreamStatus === 'disabled' || moduleStreamStatus === 'unknown';
102
+ return disabledText ? <InactiveText text={installedProfile} /> : installedProfile;
103
+ };
104
+
105
+ HostInstalledProfiles.propTypes = {
106
+ moduleStreamStatus: PropTypes.string.isRequired,
107
+ installedProfiles: PropTypes.arrayOf(PropTypes.string).isRequired,
108
+ };
109
+
110
+ const ModuleActionConfirmationModal = ({
111
+ hostname, action, moduleSpec, actionModalOpen, setActionModalOpen, triggerModuleStreamAction,
112
+ }) => {
113
+ let title;
114
+ let body;
115
+ let confirmText;
116
+ switch (action) {
117
+ case 'disable':
118
+ confirmText = __('Disable');
119
+ title = __('Disable module stream');
120
+ body = (
121
+ <FormattedMessage
122
+ id="warning-message-disable"
123
+ defaultMessage={__('Selected module {moduleSpec} will become unavailable. \n' +
124
+ ' The module RPMs will become unavailable in the package set.')}
125
+ values={{
126
+ moduleSpec,
127
+ }}
128
+ />
129
+ );
130
+ break;
131
+ case 'reset':
132
+ confirmText = __('Reset');
133
+ title = __('Reset module stream');
134
+ body = (
135
+ <FormattedMessage
136
+ id="warning-message-reset"
137
+ defaultMessage={__('Selected module {moduleSpec} will be no longer enabled or disabled. \n' +
138
+ 'Consequently, all installed profiles will be removed and only RPMs from the default stream will be available in the package set.')}
139
+ values={{
140
+ moduleSpec,
141
+ }}
142
+ />
143
+ );
144
+ break;
145
+ case 'remove':
146
+ confirmText = __('Remove');
147
+ title = __('Remove module stream');
148
+ body = __(`Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed.
149
+ Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed.`);
150
+ break;
151
+ default:
152
+ // No action selected. Should not be here!
153
+ setActionModalOpen(false);
154
+ }
155
+ return (
156
+ <Modal
157
+ variant={ModalVariant.small}
158
+ isOpen={actionModalOpen}
159
+ aria-label="Module action confirmation modal"
160
+ title={title}
161
+ titleIconVariant="warning"
162
+ showClose
163
+ onClose={() => setActionModalOpen(false)}
164
+ actions={[
165
+ <Button
166
+ aria-label="confirm-module-action"
167
+ key="confirm-module-action"
168
+ onClick={() => {
169
+ triggerModuleStreamAction({ hostname, action, moduleSpec });
170
+ setActionModalOpen(false);
171
+ }}
172
+ >
173
+ {confirmText}
174
+ </Button>,
175
+ <Button
176
+ aria-label="cancel-module-action"
177
+ key="cancel-module-action"
178
+ variant="link"
179
+ onClick={() => setActionModalOpen(false)}
180
+ >
181
+ {__('Cancel')}
182
+ </Button>,
183
+ ]}
184
+ >
185
+ <Text component={TextVariants.p}>
186
+ {body}
187
+ </Text>
188
+
189
+ </Modal>
190
+ );
191
+ };
192
+
193
+ ModuleActionConfirmationModal.propTypes = {
194
+ hostname: PropTypes.string.isRequired,
195
+ action: PropTypes.string.isRequired,
196
+ moduleSpec: PropTypes.string.isRequired,
197
+ actionModalOpen: PropTypes.bool.isRequired,
198
+ setActionModalOpen: PropTypes.func.isRequired,
199
+ triggerModuleStreamAction: PropTypes.func.isRequired,
200
+ };
201
+
202
+ const invokeRexJobs = ['create_job_invocations'];
203
+ const createBookmarks = ['create_bookmarks'];
20
204
 
21
205
  export const ModuleStreamsTab = () => {
22
- const { id: hostId, name: hostName } = useSelector(selectHostDetails);
206
+ const hostDetails = useSelector(selectHostDetails);
207
+ const { id: hostId, name: hostname } = hostDetails;
208
+ const showActions = can(invokeRexJobs, userPermissionsFromHostDetails({ hostDetails }));
209
+ const [useCustomizedRex, setUseCustomizedRex] = useState('');
210
+ const [dropdownOpen, setDropdownOpen] = useState('');
211
+ const [actionModalOpen, setActionModalOpen] = useState(false);
212
+ const [actionableModuleSpec, setActionableModuleSpec] = useState(null);
213
+ const [hostModuleStreamAction, setHostModuleStreamAction] = useState(null);
23
214
 
24
215
  const emptyContentTitle = __('This host does not have any Module streams.');
25
216
  const emptyContentBody = __('Module streams will appear here when available.');
26
217
  const emptySearchTitle = __('Your search returned no matching Module streams.');
27
218
  const emptySearchBody = __('Try changing your search criteria.');
28
- const { searchParam } = useUrlParams();
219
+ const errorSearchTitle = __('Problem searching module streams');
220
+ const {
221
+ status: initialStatus,
222
+ installStatus: initialInstallStatusSelected,
223
+ searchParam,
224
+ } = useUrlParams();
225
+ const MODULE_STREAM_STATUS = __('Status');
226
+ const MODULE_STREAM_INSTALLATION_STATUS = __('Installation status');
227
+ const [statusSelected, setStatusSelected] =
228
+ useState(STATUS_PARAM_TO_FRIENDLY_NAME[initialStatus] ??
229
+ MODULE_STREAM_STATUS);
230
+ const [installStatusSelected, setInstallStatusSelected] =
231
+ useState(INSTALL_STATUS_PARAM_TO_FRIENDLY_NAME[initialInstallStatusSelected] ??
232
+ MODULE_STREAM_INSTALLATION_STATUS);
29
233
  const columnHeaders = [
30
234
  __('Name'),
31
235
  __('State'),
@@ -33,20 +237,73 @@ export const ModuleStreamsTab = () => {
33
237
  __('Installation status'),
34
238
  __('Installed profile'),
35
239
  ];
240
+ const COLUMNS_TO_SORT_PARAMS = {
241
+ [columnHeaders[0]]: 'name',
242
+ [columnHeaders[1]]: 'status',
243
+ [columnHeaders[3]]: 'installed_profiles',
244
+ };
245
+
246
+ const {
247
+ pfSortParams, apiSortParams,
248
+ activeSortColumn, activeSortDirection,
249
+ } = useTableSort({
250
+ allColumns: columnHeaders,
251
+ columnsToSortParams: COLUMNS_TO_SORT_PARAMS,
252
+ initialSortColumnName: 'Name',
253
+ });
254
+
255
+ const {
256
+ triggerJobStart: triggerModuleStreamAction, lastCompletedJob: tableJobCompleted,
257
+ isPolling: isModuleStreamActionInProgress,
258
+ } = useRexJobPolling(moduleStreamAction);
259
+
260
+ const {
261
+ triggerJobStart: triggerConfirmModalAction, lastCompletedJob: confirmModalJobCompleted,
262
+ isPolling: isConfirmModalActionInProgress,
263
+ } = useRexJobPolling(moduleStreamAction);
264
+
265
+ const actionInProgress = (isModuleStreamActionInProgress || isConfirmModalActionInProgress);
36
266
 
37
267
  const fetchItems = useCallback(
38
268
  (params) => {
269
+ let extraParams = params;
39
270
  if (!hostId) return hostIdNotReady;
271
+ if (statusSelected !== MODULE_STREAM_STATUS) {
272
+ extraParams = { ...extraParams, status: lowerCase(statusSelected) };
273
+ }
274
+ if (installStatusSelected !== MODULE_STREAM_INSTALLATION_STATUS) {
275
+ extraParams = { ...extraParams, install_status: lowerCase(installStatusSelected) };
276
+ }
40
277
  return getHostModuleStreams(
41
278
  hostId,
42
- params,
279
+ { ...apiSortParams, ...extraParams },
43
280
  );
44
281
  },
45
- [hostId],
282
+ [hostId, statusSelected, installStatusSelected,
283
+ MODULE_STREAM_STATUS, MODULE_STREAM_INSTALLATION_STATUS, apiSortParams],
46
284
  );
47
285
 
286
+ const handleModuleStreamStatusSelected = newStatus => setStatusSelected((prevStatus) => {
287
+ if (prevStatus === newStatus) {
288
+ return MODULE_STREAM_STATUS;
289
+ }
290
+ return newStatus;
291
+ });
292
+
293
+ const handleModuleStreamInstallationStatusSelected =
294
+ newInstallationStatus => setInstallStatusSelected((prevInstallationStatus) => {
295
+ if (prevInstallationStatus === newInstallationStatus) {
296
+ return MODULE_STREAM_INSTALLATION_STATUS;
297
+ }
298
+ return newInstallationStatus;
299
+ });
300
+
301
+ const customizedActionURL = (action, moduleSpec) =>
302
+ katelloModuleStreamActionUrl({ hostname, action, moduleSpec });
303
+
48
304
  const response = useSelector(selectModuleStream);
49
305
  const { results, ...metadata } = response;
306
+ const { error: errorSearchBody } = metadata;
50
307
  const status = useSelector(state => selectModuleStreamStatus(state));
51
308
  /* eslint-disable no-unused-vars */
52
309
  const {
@@ -60,103 +317,15 @@ export const ModuleStreamsTab = () => {
60
317
  });
61
318
  /* eslint-enable no-unused-vars */
62
319
 
63
- if (!hostId) return <Skeleton />;
64
-
65
- const rowActions = [
66
- {
67
- title: __('Install'), disabled: true,
68
- },
69
- {
70
- title: __('Update'), disabled: true,
71
- },
72
- {
73
- title: __('Enable'), disabled: true,
74
- },
75
- {
76
- title: __('Disable'), disabled: true,
77
- },
78
- {
79
- title: __('Reset'), disabled: true,
80
- },
81
- {
82
- title: __('Remove'), disabled: true,
83
- },
84
- ];
85
-
86
- const EnabledIcon = ({ streamText, streamInstallStatus, upgradable }) => {
87
- const INSTALLED_STATE = {
88
- INSTALLED: __('Installed'),
89
- UPGRADEABLE: __('Upgradable'),
90
- UPTODATE: __('Up-to-date'),
91
- NOTINSTALLED: __('Not installed'),
92
- };
93
-
94
- switch (true) {
95
- case (streamInstallStatus?.length > 0 && streamText === 'disabled'):
96
- return <TableText wrapModifier="nowrap">{INSTALLED_STATE.INSTALLED}</TableText>;
97
- case (streamInstallStatus?.length > 0 && streamText === 'enabled' && upgradable !== true):
98
- return <><CheckIcon color="green" /> {INSTALLED_STATE.UPTODATE}</>;
99
- case (streamInstallStatus?.length > 0 && streamText === 'enabled' && upgradable):
100
- return <><LongArrowAltUpIcon color="blue" /> {INSTALLED_STATE.UPGRADEABLE}</>;
101
- default:
102
- return <InactiveText text={INSTALLED_STATE.NOTINSTALLED} />;
103
- }
104
- };
105
-
106
- EnabledIcon.propTypes = {
107
- streamText: PropTypes.string.isRequired,
108
- streamInstallStatus: PropTypes.arrayOf(PropTypes.string).isRequired,
109
- upgradable: PropTypes.bool.isRequired,
110
- };
320
+ const hideBookmarkActions =
321
+ cannot(createBookmarks, userPermissionsFromHostDetails({ hostDetails }));
111
322
 
112
- const StreamState = ({ moduleStreamStatus }) => {
113
- let streamText = moduleStreamStatus?.charAt(0)?.toUpperCase() + moduleStreamStatus?.slice(1);
114
- streamText = streamText?.replace('Unknown', 'Default');
115
- switch (true) {
116
- case (streamText === 'Default'):
117
- return <Label color="gray" variant="outline">{streamText}</Label>;
118
- case (streamText === 'Disabled'):
119
- return <Label color="gray" variant="filled">{streamText}</Label>;
120
- case (streamText === 'Enabled'):
121
- return <Label color="green" variant="filled">{streamText}</Label>;
122
- default:
123
- return null;
124
- }
125
- };
126
-
127
- StreamState.propTypes = {
128
- moduleStreamStatus: PropTypes.string.isRequired,
129
- };
130
-
131
- const HostInstalledProfiles = ({ moduleStreamStatus, installedProfiles }) => {
132
- let installedProfile;
133
- if (installedProfiles?.length > 0) {
134
- installedProfile = installedProfiles?.map(profile => upperFirst(profile)).join(', ');
135
- } else {
136
- installedProfile = 'No profile installed';
137
- }
138
- const disabledText = moduleStreamStatus === 'disabled' || moduleStreamStatus === 'unknown';
139
- return disabledText ? <InactiveText text={installedProfile} /> : installedProfile;
140
- };
141
-
142
- HostInstalledProfiles.propTypes = {
143
- moduleStreamStatus: PropTypes.string.isRequired,
144
- installedProfiles: PropTypes.arrayOf(PropTypes.string).isRequired,
145
- };
323
+ if (!hostId) return <Skeleton />;
146
324
 
325
+ const activeFilters = [statusSelected, installStatusSelected];
326
+ const defaultFilters = [MODULE_STREAM_STATUS, MODULE_STREAM_INSTALLATION_STATUS];
147
327
  return (
148
328
  <div>
149
- <div id="modules-hint" className="margin-0-24 margin-top-16">
150
- <Hint>
151
- <HintBody>
152
- {__('Module stream management functionality on this page is incomplete')}.
153
- <br />
154
- <Button component="a" variant="link" isInline href={urlBuilder(`content_hosts/${hostId}/module-streams`, '')}>
155
- {__('Visit the previous Module stream page')}.
156
- </Button>
157
- </HintBody>
158
- </Hint>
159
- </div>
160
329
  <div id="modulestreams-tab">
161
330
  <TableWrapper
162
331
  {...{
@@ -165,22 +334,63 @@ export const ModuleStreamsTab = () => {
165
334
  emptyContentBody,
166
335
  emptySearchTitle,
167
336
  emptySearchBody,
337
+ errorSearchTitle,
338
+ errorSearchBody,
168
339
  searchQuery,
169
340
  updateSearchQuery,
170
341
  fetchItems,
342
+ activeFilters,
343
+ defaultFilters,
171
344
  status,
172
345
  }}
173
- additionalListeners={[hostId]}
346
+ ouiaId="host-module-stream-table"
347
+ additionalListeners={[hostId, activeSortColumn, activeSortDirection,
348
+ statusSelected, installStatusSelected, confirmModalJobCompleted,
349
+ tableJobCompleted]}
174
350
  fetchItems={fetchItems}
351
+ bookmarkController="katello_host_available_module_streams"
352
+ readOnlyBookmarks={hideBookmarkActions}
175
353
  autocompleteEndpoint={`/hosts/${hostId}/module_streams/auto_complete_search`}
176
354
  foremanApiAutoComplete
177
355
  rowsCount={results?.length}
178
356
  variant={TableVariant.compact}
357
+ actionButtons={
358
+ <Split hasGutter>
359
+ <SplitItem>
360
+ <SelectableDropdown
361
+ id="status-dropdown"
362
+ title={MODULE_STREAM_STATUS}
363
+ showTitle={false}
364
+ items={Object.values(HOST_MODULE_STREAM_STATUSES)}
365
+ selected={statusSelected}
366
+ setSelected={handleModuleStreamStatusSelected}
367
+ />
368
+ </SplitItem>
369
+ <SplitItem>
370
+ <SelectableDropdown
371
+ id="install-status-dropdown"
372
+ title={MODULE_STREAM_INSTALLATION_STATUS}
373
+ showTitle={false}
374
+ items={Object.values(INSTALLED_STATE)}
375
+ selected={installStatusSelected}
376
+ setSelected={handleModuleStreamInstallationStatusSelected}
377
+ />
378
+ </SplitItem>
379
+ {actionInProgress && (
380
+ <SplitItem style={{ alignSelf: 'center' }}>
381
+ <Spinner size="lg" style={{ marginTop: '2px' }} />
382
+ </SplitItem>
383
+ )}
384
+ </Split>
385
+ }
179
386
  >
180
387
  <Thead>
181
388
  <Tr>
182
- {columnHeaders.map(col =>
183
- <Th key={col}>{col}</Th>)}
389
+ <SortableColumnHeaders
390
+ columnHeaders={columnHeaders}
391
+ pfSortParams={pfSortParams}
392
+ columnsToSortParams={COLUMNS_TO_SORT_PARAMS}
393
+ />
184
394
  </Tr>
185
395
  </Thead>
186
396
  <Tbody>
@@ -191,16 +401,189 @@ export const ModuleStreamsTab = () => {
191
401
  stream,
192
402
  installed_profiles: installedProfiles,
193
403
  upgradable,
404
+ install_status: installedStatus,
194
405
  module_spec: moduleSpec,
195
- }, index) =>
196
-
197
- /* eslint-disable react/no-array-index-key */
406
+ }, index) => {
407
+ /* eslint-disable react/no-array-index-key */
408
+ const dropdownItems = [
409
+ <DropdownItem key={`dropdownItem-checkbox-${id}`}>
410
+ <Checkbox
411
+ aria-label={`customize-checkbox-${id}`}
412
+ id={`Checkbox${id}`}
413
+ label={__('Customize with Rex')}
414
+ isChecked={id === useCustomizedRex}
415
+ onChange={checked => (checked ? setUseCustomizedRex(id) : setUseCustomizedRex(''))}
416
+ />
417
+ </DropdownItem>,
418
+ <DropdownSeparator key={`separator-${id}`} />,
198
419
 
199
- (
420
+ ];
421
+ if (id === useCustomizedRex) {
422
+ dropdownItems.push(
423
+ <DropdownItem
424
+ aria-label={`enable-${id}-href`}
425
+ key={`dropdownItem-enable-url-${id}`}
426
+ component="a"
427
+ href={customizedActionURL('enable', moduleSpec)}
428
+ isDisabled={stateText(moduleStreamStatus) ===
429
+ HOST_MODULE_STREAM_STATUSES.ENABLED}
430
+ >
431
+ {__('Enable')}
432
+ </DropdownItem>,
433
+ <DropdownItem
434
+ aria-label={`disable-${id}-href`}
435
+ key={`dropdownItem-disable-url-${id}`}
436
+ component="a"
437
+ href={customizedActionURL('disable', moduleSpec)}
438
+ isDisabled={stateText(moduleStreamStatus) !==
439
+ HOST_MODULE_STREAM_STATUSES.ENABLED}
440
+ >
441
+ {__('Disable')}
442
+ <InactiveText style={{ marginBottom: '1px' }} text={__('Prevent from further updates')} />
443
+ </DropdownItem>,
444
+ <DropdownItem
445
+ aria-label={`install-${id}-href`}
446
+ key={`dropdownItem-install-url-${id}`}
447
+ component="a"
448
+ href={customizedActionURL('install', moduleSpec)}
449
+ isDisabled={(upgradable ||
450
+ (installedStatus !== INSTALLED_STATE.NOTINSTALLED) ||
451
+ !(stateText(moduleStreamStatus) === HOST_MODULE_STREAM_STATUSES.ENABLED ||
452
+ stateText(moduleStreamStatus) === HOST_MODULE_STREAM_STATUSES.DISABLED)
453
+ )}
454
+ >
455
+ {__('Install')}
456
+ </DropdownItem>,
457
+ <DropdownItem
458
+ aria-label={`update-${id}-href`}
459
+ key={`dropdownItem-update-${id}`}
460
+ component="a"
461
+ href={customizedActionURL('update', moduleSpec)}
462
+ isDisabled={!upgradable}
463
+ >
464
+ {__('Update')}
465
+ </DropdownItem>,
466
+ <DropdownItem
467
+ aria-label={`reset-${id}-href`}
468
+ key={`dropdownItem-reset-${id}`}
469
+ component="a"
470
+ href={customizedActionURL('reset', moduleSpec)}
471
+ >
472
+ {__('Reset')}
473
+ <InactiveText style={{ marginBottom: '1px' }} text={__('Reset to the default state')} />
474
+ </DropdownItem>,
475
+ <DropdownItem
476
+ aria-label={`remove-${id}-href`}
477
+ key={`dropdownItem-remove-${id}`}
478
+ component="a"
479
+ href={customizedActionURL('remove', moduleSpec)}
480
+ >
481
+ {__('Remove')}
482
+ <InactiveText style={{ marginBottom: '1px' }} text={__('Uninstall and reset')} />
483
+ </DropdownItem>,
484
+ );
485
+ } else {
486
+ dropdownItems.push(
487
+ <DropdownItem
488
+ aria-label={`enable-${id}-button`}
489
+ key={`dropdownItem-enable-${id}`}
490
+ component="button"
491
+ onClick={() => {
492
+ triggerModuleStreamAction({ hostname, action: 'enable', moduleSpec });
493
+ setUseCustomizedRex('');
494
+ setDropdownOpen('');
495
+ }}
496
+ isDisabled={actionInProgress || stateText(moduleStreamStatus) ===
497
+ HOST_MODULE_STREAM_STATUSES.ENABLED}
498
+ >
499
+ {__('Enable')}
500
+ </DropdownItem>,
501
+ <DropdownItem
502
+ aria-label={`disable-${id}-button`}
503
+ key={`dropdownItem-disable-${id}`}
504
+ component="button"
505
+ onClick={() => {
506
+ setActionableModuleSpec(moduleSpec);
507
+ setHostModuleStreamAction('disable');
508
+ setActionModalOpen(true);
509
+ setUseCustomizedRex('');
510
+ setDropdownOpen('');
511
+ }}
512
+ isDisabled={actionInProgress || stateText(moduleStreamStatus) !==
513
+ HOST_MODULE_STREAM_STATUSES.ENABLED}
514
+ >
515
+ {__('Disable')}
516
+ <InactiveText style={{ marginBottom: '1px' }} text={__('Prevent from further updates')} />
517
+ </DropdownItem>,
518
+ <DropdownItem
519
+ aria-label={`install-${id}-button`}
520
+ key={`dropdownItem-install-${id}`}
521
+ component="button"
522
+ onClick={() => {
523
+ triggerModuleStreamAction({ hostname, action: 'install', moduleSpec });
524
+ setUseCustomizedRex('');
525
+ setDropdownOpen('');
526
+ }}
527
+ isDisabled={(actionInProgress || upgradable ||
528
+ (installedStatus !== INSTALLED_STATE.NOTINSTALLED) ||
529
+ !(stateText(moduleStreamStatus) === HOST_MODULE_STREAM_STATUSES.ENABLED ||
530
+ stateText(moduleStreamStatus) === HOST_MODULE_STREAM_STATUSES.DISABLED)
531
+ )}
532
+ >
533
+ {__('Install')}
534
+ </DropdownItem>,
535
+ <DropdownItem
536
+ aria-label={`update-${id}-button`}
537
+ key={`dropdownItem-update-${id}`}
538
+ component="button"
539
+ onClick={() => {
540
+ triggerModuleStreamAction({ hostname, action: 'update', moduleSpec });
541
+ setUseCustomizedRex('');
542
+ setDropdownOpen('');
543
+ }}
544
+ isDisabled={actionInProgress || !upgradable}
545
+ >
546
+ {__('Update')}
547
+ </DropdownItem>,
548
+ <DropdownItem
549
+ aria-label={`reset-${id}-button`}
550
+ key={`dropdownItem-reset-${id}`}
551
+ component="button"
552
+ onClick={() => {
553
+ setActionableModuleSpec(moduleSpec);
554
+ setHostModuleStreamAction('reset');
555
+ setActionModalOpen(true);
556
+ setUseCustomizedRex('');
557
+ setDropdownOpen('');
558
+ }}
559
+ isDisabled={actionInProgress}
560
+ >
561
+ {__('Reset')}
562
+ <InactiveText style={{ marginBottom: '1px' }} text={__('Reset to the default state')} />
563
+ </DropdownItem>,
564
+ <DropdownItem
565
+ aria-label={`remove-${id}-button`}
566
+ key={`dropdownItem-remove-${id}`}
567
+ component="button"
568
+ onClick={() => {
569
+ setActionableModuleSpec(moduleSpec);
570
+ setHostModuleStreamAction('remove');
571
+ setActionModalOpen(true);
572
+ setUseCustomizedRex('');
573
+ setDropdownOpen('');
574
+ }}
575
+ isDisabled={actionInProgress}
576
+ >
577
+ {__('Remove')}
578
+ <InactiveText style={{ marginBottom: '1px' }} text={__('Uninstall and reset')} />
579
+ </DropdownItem>,
580
+ );
581
+ }
582
+ return (
200
583
  <Tr key={`${id} ${index}`}>
201
584
  <Td>
202
585
  <a
203
- href={`/module_streams?search=module_spec%3D${moduleSpec}+and+host%3D${hostName}`}
586
+ href={`/module_streams?search=module_spec%3D${moduleSpec}+and+host%3D${hostname}`}
204
587
  >
205
588
  {name}
206
589
  </a>
@@ -222,17 +605,38 @@ export const ModuleStreamsTab = () => {
222
605
  installedProfiles={installedProfiles}
223
606
  />
224
607
  </Td>
225
- <Td
226
- key={`rowActions-${id}`}
227
- actions={{
228
- items: rowActions,
229
- }}
230
- />
608
+ {showActions && (
609
+ <Td key={`actions-td-${id}-${dropdownOpen}`}>
610
+ <Dropdown
611
+ aria-label={`actions-dropdown-${id}`}
612
+ key={`actions-dropdown-${id}-${dropdownOpen}`}
613
+ isPlain
614
+ style={{ width: 'inherit' }}
615
+ position={DropdownPosition.right}
616
+ toggle={
617
+ <KebabToggle aria-label={`kebab-dropdown-${id}`} onToggle={() => ((dropdownOpen === id) ? setDropdownOpen('') : setDropdownOpen(id))} id={`toggle-dropdown-${id}`} />
618
+ }
619
+ isOpen={id === dropdownOpen}
620
+ dropdownItems={dropdownItems}
621
+ />
622
+ </Td>
623
+ )}
231
624
  </Tr>
232
- ))
625
+ );
626
+ })
233
627
  }
234
628
  </Tbody>
235
629
  </TableWrapper>
630
+ {actionModalOpen &&
631
+ <ModuleActionConfirmationModal
632
+ hostname={hostname}
633
+ action={hostModuleStreamAction}
634
+ moduleSpec={actionableModuleSpec}
635
+ actionModalOpen={actionModalOpen}
636
+ setActionModalOpen={setActionModalOpen}
637
+ triggerModuleStreamAction={triggerConfirmModalAction}
638
+ />
639
+ }
236
640
  </div>
237
641
  </div>
238
642
  );