import React from 'react'; import AsyncComponent from '@redhat-cloud-services/frontend-components/AsyncComponent'; import ErrorState from '@redhat-cloud-services/frontend-components/ErrorState'; import Unavailable from '@redhat-cloud-services/frontend-components/Unavailable'; import { useFlag } from '@unleash/proxy-client-react'; import { useDispatch } from 'react-redux'; import { useNavigate, useLocation } from 'react-router-dom'; import { CREATING_IMAGES_WITH_IB_URL } from '../../constants'; import { getNotificationProp, manageEdgeImagesUrlName, } from '../../Utilities/edge'; import { resolveRelPath } from '../../Utilities/path'; const ImagesTable = () => { const dispatch = useDispatch(); const notificationProp = getNotificationProp(dispatch); // Feature flag for the federated modules const edgeParityFlag = useFlag('edgeParity.image-list'); // Feature flag to access the 'local' images table list const edgeLocalImageTable = useFlag('image-builder.edge.local-image-table'); if (edgeLocalImageTable) { return
; } if (edgeParityFlag) { return ( } navigateProp={useNavigate} locationProp={useLocation} showHeaderProp={false} docLinkProp={CREATING_IMAGES_WITH_IB_URL} notificationProp={notificationProp} pathPrefix={resolveRelPath('')} urlName={manageEdgeImagesUrlName} /> ); } return ; }; export default ImagesTable;