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.
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { createSelector } from 'reselect';
|
|
|
|
import { deleteTrackFile } from 'Store/Actions/trackFileActions';
|
|
|
|
import createTrackFileSelector from 'Store/Selectors/createTrackFileSelector';
|
|
|
|
import TrackRow from './TrackRow';
|
|
|
|
|
|
|
|
function createMapStateToProps() {
|
|
|
|
return createSelector(
|
|
|
|
(state, { id }) => id,
|
|
|
|
createTrackFileSelector(),
|
|
|
|
(id, trackFile) => {
|
|
|
|
return {
|
|
|
|
trackFilePath: trackFile ? trackFile.path : null,
|
|
|
|
customFormats: trackFile ? trackFile.customFormats : [],
|
|
|
|
customFormatScore: trackFile ? trackFile.customFormatScore : 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = {
|
|
|
|
deleteTrackFile
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(TrackRow);
|