|
|
|
import { push } from 'connected-react-router';
|
|
|
|
import _ from 'lodash';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
|
|
|
|
import NotFound from 'Components/NotFound';
|
|
|
|
import PageContent from 'Components/Page/PageContent';
|
|
|
|
import PageContentBody from 'Components/Page/PageContentBody';
|
|
|
|
import getErrorMessage from 'Utilities/Object/getErrorMessage';
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
import ArtistDetailsConnector from './ArtistDetailsConnector';
|
|
|
|
import styles from './ArtistDetails.css';
|
|
|
|
|
|
|
|
function createMapStateToProps() {
|
|
|
|
return createSelector(
|
|
|
|
(state, { match }) => match,
|
|
|
|
(state) => state.artist,
|
|
|
|
(match, artist) => {
|
|
|
|
const foreignArtistId = match.params.foreignArtistId;
|
|
|
|
const {
|
|
|
|
isFetching,
|
|
|
|
isPopulated,
|
|
|
|
error,
|
|
|
|
items
|
|
|
|
} = artist;
|
|
|
|
|
|
|
|
const artistIndex = _.findIndex(items, { foreignArtistId });
|
|
|
|
|
|
|
|
if (artistIndex > -1) {
|
|
|
|
return {
|
|
|
|
isFetching,
|
|
|
|
isPopulated,
|
|
|
|
foreignArtistId
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
isFetching,
|
|
|
|
isPopulated,
|
|
|
|
error
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = {
|
|
|
|
push
|
|
|
|
};
|
|
|
|
|
|
|
|
class ArtistDetailsPageConnector extends Component {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Lifecycle
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (!this.props.foreignArtistId) {
|
|
|
|
this.props.push(`${window.Lidarr.urlBase}/`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Render
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
foreignArtistId,
|
|
|
|
isFetching,
|
|
|
|
isPopulated,
|
|
|
|
error
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
if (isFetching && !isPopulated) {
|
|
|
|
return (
|
|
|
|
<PageContent title={translate('Loading')}>
|
|
|
|
<PageContentBody>
|
|
|
|
<LoadingIndicator />
|
|
|
|
</PageContentBody>
|
|
|
|
</PageContent>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isFetching && !!error) {
|
|
|
|
return (
|
|
|
|
<div className={styles.errorMessage}>
|
|
|
|
{getErrorMessage(error, 'Failed to load artist from API')}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!foreignArtistId) {
|
|
|
|
return (
|
|
|
|
<NotFound
|
|
|
|
message={translate('SorryThatArtistCannotBeFound')}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ArtistDetailsConnector
|
|
|
|
foreignArtistId={foreignArtistId}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ArtistDetailsPageConnector.propTypes = {
|
|
|
|
foreignArtistId: PropTypes.string,
|
|
|
|
isFetching: PropTypes.bool.isRequired,
|
|
|
|
isPopulated: PropTypes.bool.isRequired,
|
|
|
|
error: PropTypes.object,
|
|
|
|
match: PropTypes.shape({ params: PropTypes.shape({ foreignArtistId: PropTypes.string.isRequired }).isRequired }).isRequired,
|
|
|
|
push: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(ArtistDetailsPageConnector);
|