-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #38013 - Add Image mode card on host details tab
- Loading branch information
Showing
2 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
webpack/components/extensions/HostDetails/DetailsTabCards/ImageModeCard.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
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'; | ||
import FontAwesomeImageModeIcon from '../../../../components/extensions/Hosts/FontAwesomeImageModeIcon'; | ||
|
||
const ImageModeCard = ({ isExpandedGlobal, hostDetails }) => { | ||
const imageMode = hostDetails?.content_facet_attributes?.bootc_booted_image; | ||
const header = ( | ||
<> | ||
<span style={{ marginRight: '0.5rem' }}>{__('Image mode host')}</span> | ||
<FontAwesomeImageModeIcon /> | ||
</> | ||
); | ||
if (!imageMode) return null; | ||
return ( | ||
<CardTemplate | ||
header={header} | ||
expandable | ||
masonryLayout | ||
isExpandedGlobal={isExpandedGlobal} | ||
> | ||
<DescriptionList isHorizontal> | ||
<DescriptionListGroup> | ||
<Dt>{__('Running image')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_booted_image}</Dd> | ||
<Dt>{__('Running image digest')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_booted_digest}</Dd> | ||
|
||
<Dt>{__('Staged image')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_staged_image}</Dd> | ||
<Dt>{__('Staged image digest')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_staged_digest}</Dd> | ||
|
||
<Dt>{__('Available image')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_available_image}</Dd> | ||
<Dt>{__('Available image digest')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_available_digest}</Dd> | ||
|
||
<Dt>{__('Rollback image')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_rollback_image}</Dd> | ||
<Dt>{__('Rollback image digest')}</Dt> | ||
<Dd>{hostDetails.content_facet_attributes.bootc_rollback_digest}</Dd> | ||
</DescriptionListGroup> | ||
</DescriptionList> | ||
</CardTemplate> | ||
); | ||
}; | ||
|
||
ImageModeCard.propTypes = { | ||
isExpandedGlobal: PropTypes.bool, | ||
hostDetails: PropTypes.shape({ | ||
content_facet_attributes: PropTypes.shape({ | ||
bootc_booted_image: PropTypes.string, | ||
bootc_booted_digest: PropTypes.string, | ||
bootc_staged_image: PropTypes.string, | ||
bootc_staged_digest: PropTypes.string, | ||
bootc_available_image: PropTypes.string, | ||
bootc_available_digest: PropTypes.string, | ||
bootc_rollback_image: PropTypes.string, | ||
bootc_rollback_digest: PropTypes.string, | ||
}), | ||
}), | ||
}; | ||
|
||
ImageModeCard.defaultProps = { | ||
isExpandedGlobal: false, | ||
hostDetails: {}, | ||
}; | ||
|
||
export default ImageModeCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters