import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { Grid, Col, Row, Tabs, Tab, FormControl, ControlLabel } from 'react-bootstrap'; import { Button, Spinner } from 'patternfly-react'; import ForemanModal from 'foremanReact/components/ForemanModal'; import Slot from 'foremanReact/components/common/Slot'; import { translate as __ } from 'foremanReact/common/I18n'; import TooltipButton from '../../../components/TooltipButton'; import { LoadingState } from '../../../components/LoadingState'; import { Table } from '../../../components/pf3Table'; import { columns } from './ManifestHistoryTableSchema'; import DeleteManifestModalText from './DeleteManifestModalText'; import { MANAGE_MANIFEST_MODAL_ID, DELETE_MANIFEST_MODAL_ID } from './ManifestConstants'; import { CONTENT_CREDENTIAL_CERT_TYPE } from '../../ContentCredentials/ContentCredentialConstants'; import SimpleContentAccess from './SimpleContentAccess'; import CdnConfigurationForm from './CdnConfigurationTab'; import './ManageManifestModal.scss'; class ManageManifestModal extends Component { componentDidMount() { this.props.loadManifestHistory(); this.props.getContentCredentials({ content_type: CONTENT_CREDENTIAL_CERT_TYPE }); } componentDidUpdate(prevProps) { if (!prevProps.taskInProgress && this.props.taskInProgress) { this.hideModal(); } if (prevProps.taskInProgress && !this.props.taskInProgress) { this.props.loadOrganization(); this.props.loadManifestHistory(); } if (!prevProps.manifestActionStarted && this.props.manifestActionStarted) { this.hideDeleteManifestModal(); } } hideModal = () => { this.props.setModalClosed({ id: MANAGE_MANIFEST_MODAL_ID }); }; showDeleteManifestModal = () => this.props.setModalOpen({ id: DELETE_MANIFEST_MODAL_ID }); hideDeleteManifestModal = () => { if (this.props.deleteManifestModalExists) { this.props.setModalClosed({ id: DELETE_MANIFEST_MODAL_ID }); } }; reloadOrganization = () => { this.props.loadOrganization(); } uploadManifest = (fileList) => { if (fileList.length > 0) { this.props.upload(fileList[0]); } }; refreshManifest = () => { this.props.refresh(); }; deleteManifest = () => { this.props.delete(); }; disabledTooltipText = () => { if (this.props.taskInProgress) { return __('This is disabled because a manifest task is in progress'); } return __('This is disabled because no manifest exists'); }; render() { const { manifestHistory, organization, disableManifestActions, disabledReason, canImportManifest, canDeleteManifest, isManifestImported, canEditOrganizations, simpleContentAccess, simpleContentAccessEligible, enableSimpleContentAccess, disableSimpleContentAccess, taskInProgress, manifestActionStarted, contentCredentials, } = this.props; const actionInProgress = (taskInProgress || manifestActionStarted); const showCdnConfigurationTab = canEditOrganizations; const showSubscriptionManifest = (canImportManifest || canDeleteManifest); const showManifestTab = (canEditOrganizations || showSubscriptionManifest); const disableSCASwitch = ( // allow users to turn SCA off even if they are not eligible to turn it back on (!simpleContentAccessEligible && !simpleContentAccess) || disableManifestActions || !isManifestImported || actionInProgress || organization.loading ); const emptyStateData = () => ({ header: __('There is no Manifest History to display.'), description: __('Import a Manifest using the manifest tab above.'), documentation: { label: __('Learn more about adding Subscription Manifests'), url: 'http://redhat.com', }, }); const getManifestName = () => { let name = __('No Manifest Uploaded'); if ( organization.owner_details && organization.owner_details.upstreamConsumer ) { const link = [ 'https://', organization.owner_details.upstreamConsumer.webUrl, organization.owner_details.upstreamConsumer.uuid, ].join('/'); name = ( {organization.owner_details.upstreamConsumer.name} ); } return name; }; return ( {showManifestTab && {showSubscriptionManifest &&

{__('Subscription Manifest')}


{ isManifestImported && } {__('Subscription Allocation')} {getManifestName()} {canImportManifest &&
{__('Import New Manifest')}
} {canImportManifest && this.uploadManifest(e.target.files)} /> }
{canImportManifest && } {canDeleteManifest && }
}
} {showCdnConfigurationTab &&

{__('CDN Configuration for Red Hat Content')}


} ); } } ManageManifestModal.propTypes = { upload: PropTypes.func.isRequired, refresh: PropTypes.func.isRequired, delete: PropTypes.func.isRequired, enableSimpleContentAccess: PropTypes.func.isRequired, disableSimpleContentAccess: PropTypes.func.isRequired, loadManifestHistory: PropTypes.func.isRequired, getContentCredentials: PropTypes.func.isRequired, organization: PropTypes.shape({ id: PropTypes.number, loading: PropTypes.bool, cdn_configuration: PropTypes.shape({ url: PropTypes.string, username: PropTypes.string, upstream_organization_label: PropTypes.string, ssl_ca_credential_id: PropTypes.number, password_exists: PropTypes.bool, }), owner_details: PropTypes.shape({ upstreamConsumer: PropTypes.shape({ uuid: PropTypes.string, name: PropTypes.string, webUrl: PropTypes.string, }), }), }).isRequired, canImportManifest: PropTypes.bool, canDeleteManifest: PropTypes.bool, isManifestImported: PropTypes.bool, deleteManifestModalExists: PropTypes.bool, canEditOrganizations: PropTypes.bool, disableManifestActions: PropTypes.bool, disabledReason: PropTypes.string, loadOrganization: PropTypes.func.isRequired, taskInProgress: PropTypes.bool.isRequired, simpleContentAccess: PropTypes.bool, simpleContentAccessEligible: PropTypes.bool, manifestHistory: PropTypes.shape({ loading: PropTypes.bool, // Disabling rule as existing code failed due to an eslint-plugin-react update // eslint-disable-next-line react/forbid-prop-types results: PropTypes.array, }).isRequired, setModalClosed: PropTypes.func.isRequired, setModalOpen: PropTypes.func.isRequired, manifestActionStarted: PropTypes.bool, contentCredentials: PropTypes.arrayOf(PropTypes.shape({ id: PropTypes.number, name: PropTypes.string, })), }; ManageManifestModal.defaultProps = { disableManifestActions: false, disabledReason: '', canImportManifest: false, canDeleteManifest: false, isManifestImported: false, deleteManifestModalExists: false, canEditOrganizations: false, simpleContentAccess: false, simpleContentAccessEligible: undefined, manifestActionStarted: false, contentCredentials: [], }; export default ManageManifestModal;