Skip to content

Commit

Permalink
Fixes #38013 - Add Image mode card on host details tab
Browse files Browse the repository at this point in the history
  • Loading branch information
lfu committed Nov 14, 2024
1 parent da090f3 commit 1e5e0a0
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import React from 'react';
import PropTypes from 'prop-types';
import { translate as __ } from 'foremanReact/common/I18n';
import {
DescriptionList,
DescriptionListGroup,
DescriptionListDescription as Dd,
DescriptionListTerm as Dt,
} from '@patternfly/react-core';
import CardTemplate from 'foremanReact/components/HostDetails/Templates/CardItem/CardTemplate';

const ImageModeCard = ({ isExpandedGlobal, hostDetails }) => {
const imageMode = hostDetails?.content_facet_attributes?.bootc_booted_image;

Check failure on line 13 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_booted_image' is missing in props validation

Check failure on line 13 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_booted_image' is missing in props validation
if (!imageMode) return null;
return (
<CardTemplate
header={__('Image information')}
expandable
masonryLayout
isExpandedGlobal={isExpandedGlobal}
>
<DescriptionList isHorizontal>
<DescriptionListGroup>
<Dt>{__('Running image')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_booted_image}</Dd>

Check failure on line 25 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_booted_image' is missing in props validation

Check failure on line 25 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_booted_image' is missing in props validation
<Dt>{__('Running image digest')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_booted_digest}</Dd>

Check failure on line 27 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_booted_digest' is missing in props validation

Check failure on line 27 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_booted_digest' is missing in props validation
<Dt>{__('Staged image')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_staged_image}</Dd>

Check failure on line 29 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_staged_image' is missing in props validation

Check failure on line 29 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_staged_image' is missing in props validation
<Dt>{__('Staged image digest')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_staged_digest}</Dd>

Check failure on line 31 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_staged_digest' is missing in props validation

Check failure on line 31 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_staged_digest' is missing in props validation
<Dt>{__('Available image')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_available_image}</Dd>

Check failure on line 33 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_available_image' is missing in props validation

Check failure on line 33 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_available_image' is missing in props validation
<Dt>{__('Available image digest')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_available_digest}</Dd>

Check failure on line 35 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_available_digest' is missing in props validation

Check failure on line 35 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_available_digest' is missing in props validation
<Dt>{__('Rollback image')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_rollback_image}</Dd>

Check failure on line 37 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_rollback_image' is missing in props validation

Check failure on line 37 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_rollback_image' is missing in props validation
<Dt>{__('Rollback image digest')}</Dt>
<Dd>{hostDetails.content_facet_attributes.bootc_rollback_digest}</Dd>

Check failure on line 39 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 14

'hostDetails.content_facet_attributes.bootc_rollback_digest' is missing in props validation

Check failure on line 39 in webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js

View workflow job for this annotation

GitHub Actions / react-tests / Foreman develop Ruby 2.7 and Node 18

'hostDetails.content_facet_attributes.bootc_rollback_digest' is missing in props validation
</DescriptionListGroup>
</DescriptionList>
</CardTemplate>
);
};

ImageModeCard.propTypes = {
isExpandedGlobal: PropTypes.bool,
hostDetails: PropTypes.shape({
content_facet_attributes: PropTypes.shape({
content_source_name: PropTypes.string,
}),
}),
};

ImageModeCard.defaultProps = {
isExpandedGlobal: false,
hostDetails: {},
};

export default ImageModeCard;
4 changes: 3 additions & 1 deletion webpack/global_index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import ErrataOverviewCard from './components/extensions/HostDetails/Cards/Errata
import InstalledProductsCard from './components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard';
import RegistrationCard from './components/extensions/HostDetails/DetailsTabCards/RegistrationCard';
import HwPropertiesCard from './components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard';
import ImageModeCard from './components/extensions/HostDetails/DetailsTabCards/ImageModeCard';

import TracesTab from './components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js';
import extendReducer from './components/extensions/reducers';
Expand Down Expand Up @@ -71,6 +72,8 @@ addGlobalFill('recent-communication-card-item', 'Recent communication', <RecentC
// Details tab cards & card extensions
addGlobalFill('host-tab-details-cards', 'Installed products', <InstalledProductsCard key="installed-products" />, 100);
addGlobalFill('host-tab-details-cards', 'Registration details', <RegistrationCard key="registration-details" />, 200);
addGlobalFill('host-tab-details-cards', 'HW properties', <HwPropertiesCard key="hw-properties" />, 200);
addGlobalFill('host-tab-details-cards', 'Image information', <ImageModeCard key="image-mode" />, 3000);
addGlobalFill('host-details-tab-properties-1', 'Subscription UUID', <SystemPropertiesCardSubscription key="subscription-uuid" />);
addGlobalFill('host-details-tab-properties-2', 'Tracer', <SystemPropertiesCardTracer key="tracer-status" />);
addGlobalFill('host-details-tab-properties-3', 'Virtualization', <SystemPropertiesCardVirtualization key="virtualization" />);
Expand All @@ -89,7 +92,6 @@ addGlobalFill(
100,
);

addGlobalFill('host-tab-details-cards', 'HW properties', <HwPropertiesCard key="hw-properties" />, 200);

// Hosts Index page extensions
addGlobalFill('_all-hosts-modals', 'BulkChangeHostCVModal', <BulkChangeHostCVModal key="bulk-change-host-cv-modal" />, 100);
Expand Down

0 comments on commit 1e5e0a0

Please sign in to comment.