import React from 'react'; import { Button, EmptyState, EmptyStateBody, EmptyStateIcon, EmptyStateVariant, Text, EmptyStateActions, EmptyStateHeader, EmptyStateFooter, Bullseye, } from '@patternfly/react-core'; import { ExternalLinkAltIcon, PlusCircleIcon, SearchIcon, } from '@patternfly/react-icons'; import { CREATING_IMAGES_WITH_IB_SERVICE_URL, MANAGING_WITH_DNF_URL, } from '../../constants'; import { BuildImagesButtonEmptyState } from '../Blueprints/BuildImagesButton'; type ImagesEmptyStateProps = { selectedBlueprint?: string; }; const EmptyBlueprintsImagesTable = () => ( } titleText="No images" data-testid="empty-state-header" /> The selected blueprint version doesn't contain any images. Build an image from this version, or adjust the filters. Build latest images ); const EmptyImagesTable = () => { return ( <> } headingLevel="h4" /> Image builder is a tool for creating deployment-ready customized system images: installation disks, virtual machines, cloud vendor-specific images, and others. By using image builder, you can create these images faster than with manual procedures because it eliminates the specific configurations required for each output type. There are no images yet. Create a blueprint to create images. ); }; const ImagesEmptyState = ({ selectedBlueprint }: ImagesEmptyStateProps) => { if (selectedBlueprint) { return ; } return ; }; export default ImagesEmptyState;