foreman_rh_cloud 11.2.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_rh_cloud/locale/fr/foreman_rh_cloud.js +50 -50
- data/app/assets/javascripts/foreman_rh_cloud/locale/ja/foreman_rh_cloud.js +52 -52
- data/app/assets/javascripts/foreman_rh_cloud/locale/ko/foreman_rh_cloud.js +50 -50
- data/app/assets/javascripts/foreman_rh_cloud/locale/zh_CN/foreman_rh_cloud.js +50 -50
- data/app/controllers/api/v2/rh_cloud/inventory_controller.rb +2 -2
- data/app/controllers/insights_cloud/api/machine_telemetries_controller.rb +2 -0
- data/app/services/foreman_rh_cloud/cloud_request_forwarder.rb +1 -1
- data/lib/foreman_inventory_upload/async/queue_for_upload_job.rb +3 -3
- data/lib/foreman_inventory_upload/async/upload_report_job.rb +4 -4
- data/lib/foreman_rh_cloud/engine.rb +1 -1
- data/lib/foreman_rh_cloud/version.rb +1 -1
- data/lib/insights_cloud/async/insights_full_sync.rb +14 -9
- data/lib/insights_cloud/async/insights_resolutions_sync.rb +5 -1
- data/locale/foreman_rh_cloud.pot +2 -2
- data/locale/fr/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/fr/foreman_rh_cloud.po +53 -53
- data/locale/ja/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/ja/foreman_rh_cloud.po +54 -53
- data/locale/ka/foreman_rh_cloud.po +1 -0
- data/locale/ko/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/ko/foreman_rh_cloud.po +53 -52
- data/locale/zh_CN/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/zh_CN/foreman_rh_cloud.po +53 -52
- data/package.json +5 -5
- data/test/controllers/insights_cloud/api/machine_telemetries_controller_test.rb +19 -16
- data/test/controllers/inventory_upload/api/inventory_controller_test.rb +1 -1
- data/test/jobs/insights_full_sync_test.rb +28 -0
- data/test/jobs/insights_resolutions_sync_test.rb +22 -0
- data/test/jobs/inventory_full_sync_test.rb +6 -5
- data/test/jobs/inventory_hosts_sync_test.rb +6 -6
- data/test/jobs/upload_report_job_test.rb +1 -1
- data/test/test_plugin_helper.rb +14 -0
- data/test/unit/archived_report_generator_test.rb +4 -4
- data/test/unit/services/foreman_rh_cloud/branch_info_test.rb +7 -6
- data/test/unit/slice_generator_test.rb +4 -5
- data/test/unit/tags_generator_test.rb +2 -12
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItem/__tests__/__snapshots__/ListItem.test.js.snap +1 -7
- data/webpack/ForemanInventoryUpload/Components/AccountList/Components/ListItemStatus/__tests__/__snapshots__/ListItemStatus.test.js.snap +1 -5
- data/webpack/ForemanInventoryUpload/Components/AccountList/accountList.scss +3 -3
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/InventoryFilter.js +1 -1
- data/webpack/ForemanInventoryUpload/Components/InventoryFilter/inventoryFilter.scss +1 -1
- data/webpack/ForemanInventoryUpload/Components/PageHeader/PageHeader.scss +5 -5
- data/webpack/ForemanInventoryUpload/Components/PageHeader/PageTitle.js +5 -4
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/CloudPingModal/index.js +18 -3
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/SyncButton.js +0 -1
- data/webpack/ForemanInventoryUpload/Components/PageHeader/components/SyncButton/__tests__/__snapshots__/SyncButton.test.js.snap +0 -1
- data/webpack/ForemanInventoryUpload/SubscriptionsPageExtension/InventoryAutoUpload/__tests__/__snapshots__/InventoryAutoUpload.test.js.snap +2 -10
- data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTable.js +5 -1
- data/webpack/InsightsCloudSync/Components/InsightsTable/InsightsTableConstants.js +1 -1
- data/webpack/InsightsCloudSync/Components/InsightsTable/Pagination.js +7 -7
- data/webpack/InsightsCloudSync/Components/InsightsTable/table.scss +1 -1
- data/webpack/InsightsCloudSync/Components/RemediationModal/RemediationModal.js +5 -1
- data/webpack/InsightsCloudSync/Components/RemediationModal/RemediationTableConstants.js +8 -1
- data/webpack/InsightsCloudSync/Components/ToolbarDropdown.js +8 -2
- data/webpack/InsightsCloudSync/InsightsCloudSync.scss +1 -1
- data/webpack/InsightsHostDetailsTab/InsightsTotalRiskChart.js +11 -2
- data/webpack/InsightsHostDetailsTab/NewHostDetailsTab.js +5 -4
- data/webpack/common/DropdownToggle.js +2 -2
- data/webpack/common/Switcher/HelpLabel.js +1 -1
- data/webpack/common/Switcher/SwitcherPF4.scss +1 -1
- data/webpack/common/Switcher/__tests__/__snapshots__/HelpLabel.test.js.snap +2 -6
- data/webpack/common/table/EmptyState.js +25 -18
- metadata +3 -9
- data/app/assets/javascripts/foreman_rh_cloud/locale/en/foreman_rh_cloud.js +0 -589
- data/locale/en/LC_MESSAGES/foreman_rh_cloud.mo +0 -0
- data/locale/en/foreman_rh_cloud.po +0 -585
@@ -3,13 +3,12 @@ require 'test_plugin_helper'
|
|
3
3
|
class SliceGeneratorTest < ActiveSupport::TestCase
|
4
4
|
include KatelloLocationFix
|
5
5
|
include CandlepinIsolation
|
6
|
+
include KatelloCVEHelper
|
6
7
|
|
7
8
|
setup do
|
8
9
|
User.current = User.find_by(login: 'secret_admin')
|
9
|
-
|
10
|
-
env =
|
11
|
-
cv = env.content_views << FactoryBot.create(:katello_content_view, organization: env.organization)
|
12
|
-
|
10
|
+
cve = make_cve
|
11
|
+
env = cve.lifecycle_environment
|
13
12
|
location = FactoryBot.create(:location)
|
14
13
|
|
15
14
|
@host = FactoryBot.create(
|
@@ -17,7 +16,7 @@ class SliceGeneratorTest < ActiveSupport::TestCase
|
|
17
16
|
:redhat,
|
18
17
|
:with_subscription,
|
19
18
|
:with_content,
|
20
|
-
content_view:
|
19
|
+
content_view: cve.content_view,
|
21
20
|
lifecycle_environment: env,
|
22
21
|
organization: env.organization,
|
23
22
|
location: location
|
@@ -3,6 +3,7 @@ require 'test_plugin_helper'
|
|
3
3
|
class TagsGeneratorTest < ActiveSupport::TestCase
|
4
4
|
include KatelloLocationFix
|
5
5
|
include CandlepinIsolation
|
6
|
+
include KatelloCVEHelper
|
6
7
|
|
7
8
|
setup do
|
8
9
|
UpstreamOnlySettingsTestHelper.set_if_available('allow_multiple_content_views')
|
@@ -25,18 +26,7 @@ class TagsGeneratorTest < ActiveSupport::TestCase
|
|
25
26
|
organization: env.organization,
|
26
27
|
location: @location2,
|
27
28
|
hostgroup: @hostgroup2,
|
28
|
-
content_view_environments: [
|
29
|
-
FactoryBot.create(
|
30
|
-
:katello_content_view_environment,
|
31
|
-
content_view: FactoryBot.create(:katello_content_view, organization: env.organization),
|
32
|
-
lifecycle_environment: env
|
33
|
-
),
|
34
|
-
FactoryBot.create(
|
35
|
-
:katello_content_view_environment,
|
36
|
-
content_view: FactoryBot.create(:katello_content_view, organization: env.organization),
|
37
|
-
lifecycle_environment: env2
|
38
|
-
),
|
39
|
-
]
|
29
|
+
content_view_environments: [make_cve(lifecycle_environment: env), make_cve(lifecycle_environment: env2)]
|
40
30
|
)
|
41
31
|
|
42
32
|
@host.organization.pools << FactoryBot.create(:katello_pool, account_number: '1234', cp_id: 1)
|
@@ -10,13 +10,7 @@ exports[`ListItem rendering render with Props 1`] = `
|
|
10
10
|
<Label
|
11
11
|
className="account-icon"
|
12
12
|
color="blue"
|
13
|
-
icon={
|
14
|
-
<UserIcon
|
15
|
-
color="currentColor"
|
16
|
-
noVerticalAlign={false}
|
17
|
-
size="sm"
|
18
|
-
/>
|
19
|
-
}
|
13
|
+
icon={<UserIcon />}
|
20
14
|
variant="outline"
|
21
15
|
/>
|
22
16
|
test
|
@@ -8,11 +8,11 @@
|
|
8
8
|
}
|
9
9
|
|
10
10
|
.account-list {
|
11
|
-
.pf-c-accordion__toggle {
|
11
|
+
.pf-v5-c-accordion__toggle {
|
12
12
|
margin-top: 10px;
|
13
13
|
}
|
14
14
|
|
15
|
-
.pf-c-accordion__toggle-text {
|
15
|
+
.pf-v5-c-accordion__toggle-text {
|
16
16
|
font-size: 16px;
|
17
17
|
display: flex;
|
18
18
|
justify-content: space-between;
|
@@ -21,7 +21,7 @@
|
|
21
21
|
.account-icon {
|
22
22
|
margin-right: 5px;
|
23
23
|
|
24
|
-
.pf-c-label__icon {
|
24
|
+
.pf-v5-c-label__icon {
|
25
25
|
margin: 0;
|
26
26
|
}
|
27
27
|
}
|
@@ -12,18 +12,18 @@
|
|
12
12
|
font-size: 16px;
|
13
13
|
}
|
14
14
|
|
15
|
-
.pf-c-dropdown__toggle {
|
15
|
+
.pf-v5-c-dropdown__toggle {
|
16
16
|
margin-right: -20px;
|
17
17
|
}
|
18
18
|
|
19
19
|
.settings-alert {
|
20
20
|
margin-bottom: 30px;
|
21
|
-
.pf-c-alert {
|
21
|
+
.pf-v5-c-alert {
|
22
22
|
margin-bottom: 5px;
|
23
23
|
|
24
|
-
.pf-c-alert__title {
|
25
|
-
font-size: var(--pf-global--FontSize--md);
|
26
|
-
line-height: var(--pf-global--LineHeight--md);
|
24
|
+
.pf-v5-c-alert__title {
|
25
|
+
font-size: var(--pf-v5-global--FontSize--md);
|
26
|
+
line-height: var(--pf-v5-global--LineHeight--md);
|
27
27
|
}
|
28
28
|
}
|
29
29
|
}
|
@@ -1,12 +1,11 @@
|
|
1
1
|
import React, { useState } from 'react';
|
2
|
+
import { Grid, GridItem } from '@patternfly/react-core';
|
2
3
|
import {
|
3
4
|
Dropdown,
|
4
5
|
DropdownItem,
|
5
6
|
KebabToggle,
|
6
7
|
DropdownPosition,
|
7
|
-
|
8
|
-
GridItem,
|
9
|
-
} from '@patternfly/react-core';
|
8
|
+
} from '@patternfly/react-core/deprecated';
|
10
9
|
import Head from 'foremanReact/components/Head';
|
11
10
|
import {
|
12
11
|
INVENTORY_PAGE_TITLE,
|
@@ -58,7 +57,9 @@ const PageTitle = () => {
|
|
58
57
|
className="title-dropdown"
|
59
58
|
onSelect={() => setIsDropdownOpen(false)}
|
60
59
|
toggle={
|
61
|
-
<KebabToggle
|
60
|
+
<KebabToggle
|
61
|
+
onToggle={(_event, isOpen) => setIsDropdownOpen(isOpen)}
|
62
|
+
/>
|
62
63
|
}
|
63
64
|
isOpen={isDropdownOpen}
|
64
65
|
isPlain
|
data/webpack/ForemanInventoryUpload/Components/PageHeader/components/CloudPingModal/index.js
CHANGED
@@ -2,7 +2,11 @@
|
|
2
2
|
import React, { useCallback, useEffect, useState } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
4
|
import { useDispatch, useSelector } from 'react-redux';
|
5
|
-
import {
|
5
|
+
import {
|
6
|
+
Table,
|
7
|
+
TableBody,
|
8
|
+
TableHeader,
|
9
|
+
} from '@patternfly/react-table/deprecated';
|
6
10
|
import {
|
7
11
|
Card,
|
8
12
|
CardTitle,
|
@@ -11,6 +15,7 @@ import {
|
|
11
15
|
ModalVariant,
|
12
16
|
Spinner,
|
13
17
|
Text,
|
18
|
+
Icon,
|
14
19
|
} from '@patternfly/react-core';
|
15
20
|
import {
|
16
21
|
CheckCircleIcon,
|
@@ -108,8 +113,18 @@ const CloudPingModal = ({ title, isOpen, toggle }) => {
|
|
108
113
|
|
109
114
|
const StatusIcon = ({ isPending, authStatus }) => {
|
110
115
|
if (isPending) return <Spinner size="sm" />;
|
111
|
-
if (authStatus.success)
|
112
|
-
|
116
|
+
if (authStatus.success)
|
117
|
+
return (
|
118
|
+
<Icon color="green">
|
119
|
+
<CheckCircleIcon />
|
120
|
+
</Icon>
|
121
|
+
);
|
122
|
+
if (authStatus.error)
|
123
|
+
return (
|
124
|
+
<Icon color="red">
|
125
|
+
<ExclamationCircleIcon />
|
126
|
+
</Icon>
|
127
|
+
);
|
113
128
|
return <Spinner size="sm" />;
|
114
129
|
};
|
115
130
|
|
@@ -56,11 +56,7 @@ exports[`InventoryAutoUpload rendering render with props 1`] = `
|
|
56
56
|
>
|
57
57
|
Show Advanced Settings
|
58
58
|
|
59
|
-
<CaretRightIcon
|
60
|
-
color="currentColor"
|
61
|
-
noVerticalAlign={false}
|
62
|
-
size="sm"
|
63
|
-
/>
|
59
|
+
<CaretRightIcon />
|
64
60
|
</Button>
|
65
61
|
</Popover>
|
66
62
|
</Col>
|
@@ -78,11 +74,7 @@ exports[`InventoryAutoUpload rendering render with props 1`] = `
|
|
78
74
|
<Text
|
79
75
|
component="p"
|
80
76
|
>
|
81
|
-
<InfoAltIcon
|
82
|
-
color="currentColor"
|
83
|
-
noVerticalAlign={false}
|
84
|
-
size="sm"
|
85
|
-
/>
|
77
|
+
<InfoAltIcon />
|
86
78
|
|
87
79
|
More details can be found in
|
88
80
|
|
@@ -1,7 +1,11 @@
|
|
1
1
|
/* eslint-disable react-hooks/exhaustive-deps */
|
2
2
|
import React, { useEffect } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
|
-
import {
|
4
|
+
import {
|
5
|
+
Table,
|
6
|
+
TableHeader,
|
7
|
+
TableBody,
|
8
|
+
} from '@patternfly/react-table/deprecated';
|
5
9
|
import { useForemanSettings } from 'foremanReact/Root/Context/ForemanContext';
|
6
10
|
import SelectAllAlert from './SelectAllAlert';
|
7
11
|
import {
|
@@ -4,7 +4,7 @@ import {
|
|
4
4
|
InsightsLabel,
|
5
5
|
Section,
|
6
6
|
} from '@redhat-cloud-services/frontend-components';
|
7
|
-
import { DropdownItem } from '@patternfly/react-core';
|
7
|
+
import { DropdownItem } from '@patternfly/react-core/deprecated';
|
8
8
|
import { sortable, cellWidth } from '@patternfly/react-table';
|
9
9
|
import { AnsibeTowerIcon, ExternalLinkAltIcon } from '@patternfly/react-icons';
|
10
10
|
import { translate as __ } from 'foremanReact/common/I18n';
|
@@ -20,13 +20,13 @@ const paginationTitles = {
|
|
20
20
|
page: '', // doesn't work well with translations as it adds 's' for plural, see: https://github.com/patternfly/patternfly-react/issues/6707
|
21
21
|
itemsPerPage: __('Items per page'),
|
22
22
|
perPageSuffix: __('per page'),
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
23
|
+
toFirstPageAriaLabel: __('Go to first page'),
|
24
|
+
toPreviousPageAriaLabel: __('Go to previous page'),
|
25
|
+
toLastPageAriaLabel: __('Go to last page'),
|
26
|
+
toNextPageAriaLabel: __('Go to next page'),
|
27
|
+
optionsToggleAriaLabel: __('Items per page'),
|
28
|
+
currPageAriaLabel: __('Current page'),
|
29
|
+
paginationAriaLabel: __('Pagination'),
|
30
30
|
};
|
31
31
|
|
32
32
|
const Pagination = ({ variant, ...props }) => {
|
@@ -1,7 +1,11 @@
|
|
1
1
|
/* eslint-disable react-hooks/exhaustive-deps */
|
2
2
|
import React, { useEffect } from 'react';
|
3
3
|
import PropTypes from 'prop-types';
|
4
|
-
import {
|
4
|
+
import {
|
5
|
+
Table,
|
6
|
+
TableHeader,
|
7
|
+
TableBody,
|
8
|
+
} from '@patternfly/react-table/deprecated';
|
5
9
|
import { Modal, ModalVariant, Button } from '@patternfly/react-core';
|
6
10
|
import { isEmpty } from 'lodash';
|
7
11
|
import { STATUS } from 'foremanReact/constants';
|
@@ -1,11 +1,18 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { cellWidth } from '@patternfly/react-table';
|
3
|
+
import { Icon } from '@patternfly/react-core';
|
3
4
|
import { CheckCircleIcon } from '@patternfly/react-icons';
|
4
5
|
import { translate as __ } from 'foremanReact/common/I18n';
|
5
6
|
import { foremanUrl } from '../../../ForemanRhCloudHelpers';
|
6
7
|
|
7
8
|
export const rebootFormatter = ({ title: reboot }) => ({
|
8
|
-
children: reboot ?
|
9
|
+
children: reboot ? (
|
10
|
+
<Icon color="green">
|
11
|
+
<CheckCircleIcon />
|
12
|
+
</Icon>
|
13
|
+
) : (
|
14
|
+
__('No')
|
15
|
+
),
|
9
16
|
});
|
10
17
|
|
11
18
|
export const columns = [
|
@@ -1,7 +1,11 @@
|
|
1
1
|
import React, { useState } from 'react';
|
2
2
|
import PropTypes from 'prop-types';
|
3
3
|
import { translate as __ } from 'foremanReact/common/I18n';
|
4
|
-
import {
|
4
|
+
import {
|
5
|
+
Dropdown,
|
6
|
+
DropdownItem,
|
7
|
+
KebabToggle,
|
8
|
+
} from '@patternfly/react-core/deprecated';
|
5
9
|
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
6
10
|
import { redHatAdvisorSystems } from '../InsightsCloudSyncHelpers';
|
7
11
|
import { useAdvisorEngineConfig } from '../../common/Hooks/ConfigHooks';
|
@@ -35,7 +39,9 @@ const ToolbarDropdown = ({ onRecommendationSync }) => {
|
|
35
39
|
<Dropdown
|
36
40
|
className="title-dropdown"
|
37
41
|
onSelect={() => setIsDropdownOpen(false)}
|
38
|
-
toggle={
|
42
|
+
toggle={
|
43
|
+
<KebabToggle onToggle={(_event, isOpen) => setIsDropdownOpen(isOpen)} />
|
44
|
+
}
|
39
45
|
isOpen={isDropdownOpen}
|
40
46
|
isPlain
|
41
47
|
dropdownItems={dropdownItems}
|
@@ -3,8 +3,14 @@ import PropTypes from 'prop-types';
|
|
3
3
|
import { useDispatch } from 'react-redux';
|
4
4
|
import { push } from 'connected-react-router';
|
5
5
|
import { useHistory } from 'react-router-dom';
|
6
|
-
import {
|
7
|
-
import {
|
6
|
+
import { Bullseye, Title } from '@patternfly/react-core';
|
7
|
+
import { DropdownItem } from '@patternfly/react-core/deprecated';
|
8
|
+
import {
|
9
|
+
ChartDonut,
|
10
|
+
ChartLegend,
|
11
|
+
ChartLabel,
|
12
|
+
ChartTooltip,
|
13
|
+
} from '@patternfly/react-charts';
|
8
14
|
import { STATUS } from 'foremanReact/constants';
|
9
15
|
import { useAPI } from 'foremanReact/common/hooks/API/APIHooks';
|
10
16
|
import CardTemplate from 'foremanReact/components/HostDetails/Templates/CardItem/CardTemplate';
|
@@ -90,6 +96,9 @@ const InsightsTotalRiskCard = ({ hostDetails: { id } }) => {
|
|
90
96
|
{ x: critical.title, y: critical.value },
|
91
97
|
]}
|
92
98
|
labels={({ datum: { x, y } }) => `${x}: ${y}`}
|
99
|
+
labelComponent={
|
100
|
+
<ChartTooltip constrainToVisibleArea renderInPortal={false} />
|
101
|
+
}
|
93
102
|
legendComponent={legend}
|
94
103
|
legendPosition="right"
|
95
104
|
subTitle="Recommendations"
|
@@ -3,13 +3,12 @@ import PropTypes from 'prop-types';
|
|
3
3
|
import { useDispatch, useSelector } from 'react-redux';
|
4
4
|
import SearchBar from 'foremanReact/components/SearchBar';
|
5
5
|
import { translate as __ } from 'foremanReact/common/I18n';
|
6
|
+
import { Grid, GridItem } from '@patternfly/react-core';
|
6
7
|
import {
|
7
|
-
Grid,
|
8
|
-
GridItem,
|
9
8
|
Dropdown,
|
10
9
|
DropdownItem,
|
11
10
|
KebabToggle,
|
12
|
-
} from '@patternfly/react-core';
|
11
|
+
} from '@patternfly/react-core/deprecated';
|
13
12
|
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
14
13
|
import InsightsTable from '../InsightsCloudSync/Components/InsightsTable';
|
15
14
|
import RemediationModal from '../InsightsCloudSync/Components/RemediationModal';
|
@@ -76,7 +75,9 @@ const NewHostDetailsTab = ({ hostName, router }) => {
|
|
76
75
|
ouiaId="insights-dropdown"
|
77
76
|
onSelect={() => setIsDropdownOpen(false)}
|
78
77
|
toggle={
|
79
|
-
<KebabToggle
|
78
|
+
<KebabToggle
|
79
|
+
onToggle={(_event, isOpen) => setIsDropdownOpen(isOpen)}
|
80
|
+
/>
|
80
81
|
}
|
81
82
|
isOpen={isDropdownOpen}
|
82
83
|
isPlain
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import React, { useState } from 'react';
|
2
2
|
import PropTypes from 'prop-types';
|
3
|
-
import { Dropdown, KebabToggle } from '@patternfly/react-core';
|
3
|
+
import { Dropdown, KebabToggle } from '@patternfly/react-core/deprecated';
|
4
4
|
|
5
5
|
const DropdownToggle = ({ items, ...props }) => {
|
6
6
|
const [isOpen, setOpen] = useState(false);
|
7
7
|
return (
|
8
8
|
<Dropdown
|
9
9
|
onSelect={() => setOpen(false)}
|
10
|
-
toggle={<KebabToggle onToggle={value => setOpen(value)} />}
|
10
|
+
toggle={<KebabToggle onToggle={(_event, value) => setOpen(value)} />}
|
11
11
|
isOpen={isOpen}
|
12
12
|
isPlain
|
13
13
|
dropdownItems={items}
|
@@ -9,7 +9,7 @@ export const HelpLabel = ({ text, id, className }) => {
|
|
9
9
|
<Popover id={`${id}-help`} bodyContent={text} aria-label="help-text">
|
10
10
|
<button
|
11
11
|
onClick={e => e.preventDefault()}
|
12
|
-
className={`pf-c-form__group-label-help ${className}`}
|
12
|
+
className={`pf-v5-c-form__group-label-help ${className}`}
|
13
13
|
>
|
14
14
|
<HelpIcon />
|
15
15
|
</button>
|
@@ -7,14 +7,10 @@ exports[`InsightsCloudSync helpers should return insights cloud Url 1`] = `
|
|
7
7
|
id="some-id-help"
|
8
8
|
>
|
9
9
|
<button
|
10
|
-
className="pf-c-form__group-label-help some-class"
|
10
|
+
className="pf-v5-c-form__group-label-help some-class"
|
11
11
|
onClick={[Function]}
|
12
12
|
>
|
13
|
-
<HelpIcon
|
14
|
-
color="currentColor"
|
15
|
-
noVerticalAlign={false}
|
16
|
-
size="sm"
|
17
|
-
/>
|
13
|
+
<HelpIcon />
|
18
14
|
</button>
|
19
15
|
</Popover>
|
20
16
|
`;
|
@@ -5,7 +5,7 @@ import {
|
|
5
5
|
EmptyStateIcon,
|
6
6
|
Spinner,
|
7
7
|
EmptyStateVariant,
|
8
|
-
|
8
|
+
EmptyStateHeader,
|
9
9
|
} from '@patternfly/react-core';
|
10
10
|
import { ExclamationCircleIcon, CheckIcon } from '@patternfly/react-icons';
|
11
11
|
|
@@ -16,33 +16,40 @@ const TableEmptyState = ({ status, error, rowsLength }) => {
|
|
16
16
|
switch (status) {
|
17
17
|
case STATUS.PENDING:
|
18
18
|
return (
|
19
|
-
<EmptyState variant={EmptyStateVariant.
|
20
|
-
<
|
21
|
-
|
22
|
-
{
|
23
|
-
|
19
|
+
<EmptyState variant={EmptyStateVariant.sm}>
|
20
|
+
<EmptyStateHeader
|
21
|
+
titleText={<>{__('Loading')}</>}
|
22
|
+
icon={<EmptyStateIcon icon={Spinner} />}
|
23
|
+
headingLevel="h2"
|
24
|
+
/>
|
24
25
|
</EmptyState>
|
25
26
|
);
|
26
27
|
case STATUS.ERROR:
|
27
28
|
return (
|
28
|
-
<EmptyState variant={EmptyStateVariant.
|
29
|
-
<
|
30
|
-
|
31
|
-
|
29
|
+
<EmptyState variant={EmptyStateVariant.sm}>
|
30
|
+
<EmptyStateHeader
|
31
|
+
titleText={
|
32
|
+
<>
|
33
|
+
{sprintf(
|
34
|
+
__('The server returned the following error: %s'),
|
35
|
+
error
|
36
|
+
)}
|
37
|
+
</>
|
38
|
+
}
|
39
|
+
icon={<EmptyStateIcon icon={ExclamationCircleIcon} />}
|
40
|
+
headingLevel="h2"
|
32
41
|
/>
|
33
|
-
<Title headingLevel="h2" size="lg">
|
34
|
-
{sprintf(__('The server returned the following error: %s'), error)}
|
35
|
-
</Title>
|
36
42
|
</EmptyState>
|
37
43
|
);
|
38
44
|
case STATUS.RESOLVED:
|
39
45
|
if (rowsLength > 0) return null;
|
40
46
|
return (
|
41
|
-
<EmptyState variant={EmptyStateVariant.
|
42
|
-
<
|
43
|
-
|
44
|
-
{
|
45
|
-
|
47
|
+
<EmptyState variant={EmptyStateVariant.lg}>
|
48
|
+
<EmptyStateHeader
|
49
|
+
titleText={<>{__('There are no recommendations for your hosts')}</>}
|
50
|
+
icon={<EmptyStateIcon icon={CheckIcon} />}
|
51
|
+
headingLevel="h2"
|
52
|
+
/>
|
46
53
|
</EmptyState>
|
47
54
|
);
|
48
55
|
default:
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_rh_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 12.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Foreman Red Hat Cloud team
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-04-01 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: foreman_ansible
|
@@ -90,7 +89,6 @@ files:
|
|
90
89
|
- LICENSE
|
91
90
|
- README.md
|
92
91
|
- Rakefile
|
93
|
-
- app/assets/javascripts/foreman_rh_cloud/locale/en/foreman_rh_cloud.js
|
94
92
|
- app/assets/javascripts/foreman_rh_cloud/locale/fr/foreman_rh_cloud.js
|
95
93
|
- app/assets/javascripts/foreman_rh_cloud/locale/ja/foreman_rh_cloud.js
|
96
94
|
- app/assets/javascripts/foreman_rh_cloud/locale/ka/foreman_rh_cloud.js
|
@@ -220,8 +218,6 @@ files:
|
|
220
218
|
- lib/tasks/insights.rake
|
221
219
|
- lib/tasks/rh_cloud_inventory.rake
|
222
220
|
- locale/Makefile
|
223
|
-
- locale/en/LC_MESSAGES/foreman_rh_cloud.mo
|
224
|
-
- locale/en/foreman_rh_cloud.po
|
225
221
|
- locale/foreman_rh_cloud.pot
|
226
222
|
- locale/fr/LC_MESSAGES/foreman_rh_cloud.mo
|
227
223
|
- locale/fr/foreman_rh_cloud.po
|
@@ -652,7 +648,6 @@ homepage: https://github.com/theforeman/foreman_rh_cloud
|
|
652
648
|
licenses:
|
653
649
|
- GPL-3.0
|
654
650
|
metadata: {}
|
655
|
-
post_install_message:
|
656
651
|
rdoc_options: []
|
657
652
|
require_paths:
|
658
653
|
- lib
|
@@ -670,8 +665,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
670
665
|
- !ruby/object:Gem::Version
|
671
666
|
version: '0'
|
672
667
|
requirements: []
|
673
|
-
rubygems_version: 3.2
|
674
|
-
signing_key:
|
668
|
+
rubygems_version: 3.6.2
|
675
669
|
specification_version: 4
|
676
670
|
summary: Summary of ForemanRhCloud.
|
677
671
|
test_files:
|