You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/frontend/src/Artist/Index/ArtistIndexItemConnector.js

87 lines
2.3 KiB

/* eslint max-params: 0 */
import _ from 'lodash';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
import { isCommandExecuting } from 'Utilities/Command';
import createArtistSelector from 'Store/Selectors/createArtistSelector';
import createCommandsSelector from 'Store/Selectors/createCommandsSelector';
import createQualityProfileSelector from 'Store/Selectors/createQualityProfileSelector';
import createLanguageProfileSelector from 'Store/Selectors/createLanguageProfileSelector';
import createMetadataProfileSelector from 'Store/Selectors/createMetadataProfileSelector';
import { executeCommand } from 'Store/Actions/commandActions';
import * as commandNames from 'Commands/commandNames';
function createMapStateToProps() {
return createSelector(
createArtistSelector(),
createQualityProfileSelector(),
createLanguageProfileSelector(),
createMetadataProfileSelector(),
createCommandsSelector(),
(artist, qualityProfile, languageProfile, metadataProfile, commands) => {
const isRefreshingArtist = commands.some((command) => {
return (
command.name === commandNames.REFRESH_ARTIST &&
command.body.artistId === artist.id &&
isCommandExecuting(command)
);
});
const latestAlbum = _.maxBy(artist.albums, (album) => album.releaseDate);
return {
...artist,
qualityProfile,
languageProfile,
metadataProfile,
latestAlbum,
isRefreshingArtist
};
}
);
}
const mapDispatchToProps = {
executeCommand
};
class ArtistIndexItemConnector extends Component {
//
// Listeners
onRefreshArtistPress = () => {
this.props.executeCommand({
name: commandNames.REFRESH_ARTIST,
artistId: this.props.id
});
}
//
// Render
render() {
const {
component: ItemComponent,
...otherProps
} = this.props;
return (
<ItemComponent
{...otherProps}
onRefreshArtistPress={this.onRefreshArtistPress}
/>
);
}
}
ArtistIndexItemConnector.propTypes = {
id: PropTypes.number.isRequired,
component: PropTypes.func.isRequired,
executeCommand: PropTypes.func.isRequired
};
export default connect(createMapStateToProps, mapDispatchToProps)(ArtistIndexItemConnector);