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