import React from 'react'; import ErrorPage from 'components/ErrorPage'; import ShowAssetLite from 'components/ShowAssetLite'; import ShowAssetDetails from 'components/ShowAssetDetails'; import { ASSET } from 'constants/show_request_types'; function requestIsAnAssetRequest ({ requestType }) { return requestType === ASSET; } function requestIsNewRequest (nextProps, props) { return (nextProps.requestId !== props.requestId); } class ShowAsset extends React.Component { componentDidMount () { const { requestId, requestName, requestModifier, assetRequests } = this.props; const existingRequest = assetRequests[requestId]; if (existingRequest) { // case: the assetRequest exists this.onRepeatRequest(existingRequest); } else { // case: the asset request does not exist this.onNewRequest(requestId, requestName, requestModifier); } } componentWillReceiveProps (nextProps) { // case where componentDidMount triggered new props if (requestIsNewRequest(nextProps, this.props)) { const { requestId, requestName, requestModifier, assetRequests } = nextProps; const existingRequest = assetRequests[requestId]; if (existingRequest) { // case: the assetRequest exists this.onRepeatRequest(existingRequest); } else { // case: the asset request does not exist this.onNewRequest(requestId, requestName, requestModifier); } } else { console.log('show.assetRequestId did not update'); } } onNewRequest (id, requestName, requestModifier) { console.log('new request'); this.props.onNewRequest(id, requestName, requestModifier); } onRepeatRequest ({ error, name, claimId }) { console.log('repeat request'); // if error, return and update state with error if (error) { return this.props.onRequestError(error); } // update the showAsset data in the store const { assetList } = this.props; const assetId = `a#${name}#${claimId}`; const existingAssetRecord = assetList[assetId]; if (existingAssetRecord) { // case: the asset data already exists this.showExistingAsset(existingAssetRecord); } else { // case: the asset data does not exist yet this.showNewAsset(assetId, name, claimId); } } showNewAsset (assetId, name, claimId) { this.props.onShowNewAsset(assetId, name, claimId); } showExistingAsset (existingAssetRecord) { let { error, name, claimId, shortId, claimData } = existingAssetRecord; this.props.onShowExistingAsset(error, name, claimId, shortId, claimData); } componentWillUnmount () { this.props.onLeaveShowAsset(); } render () { const { error, name, requestExtension } = this.props; if (error) { return ( ); } if (name) { // direct requests are passing because name is present so it just goes if (requestExtension) { return ( ); } else { return ( ); } }; return (
); } }; export default ShowAsset;