import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { connect } from 'react-redux'; import { createSelector } from 'reselect'; import * as commandNames from 'Commands/commandNames'; import { executeCommand } from 'Store/Actions/commandActions'; import { fetchOrganizePreview } from 'Store/Actions/organizePreviewActions'; import { fetchNamingSettings } from 'Store/Actions/settingsActions'; import createAuthorSelector from 'Store/Selectors/createAuthorSelector'; import OrganizePreviewModalContent from './OrganizePreviewModalContent'; function createMapStateToProps() { return createSelector( (state) => state.organizePreview, (state) => state.settings.naming, createAuthorSelector(), (organizePreview, naming, author) => { const props = { ...organizePreview }; props.isFetching = organizePreview.isFetching || naming.isFetching; props.isPopulated = organizePreview.isPopulated && naming.isPopulated; props.error = organizePreview.error || naming.error; props.trackFormat = naming.item.standardBookFormat; props.path = author.path; return props; } ); } const mapDispatchToProps = { fetchOrganizePreview, fetchNamingSettings, executeCommand }; class OrganizePreviewModalContentConnector extends Component { // // Lifecycle componentDidMount() { const { authorId, bookId } = this.props; this.props.fetchOrganizePreview({ authorId, bookId }); this.props.fetchNamingSettings(); } // // Listeners onOrganizePress = (files) => { this.props.executeCommand({ name: commandNames.RENAME_FILES, authorId: this.props.authorId, files }); this.props.onModalClose(); } // // Render render() { return ( ); } } OrganizePreviewModalContentConnector.propTypes = { authorId: PropTypes.number.isRequired, bookId: PropTypes.number, fetchOrganizePreview: PropTypes.func.isRequired, fetchNamingSettings: PropTypes.func.isRequired, executeCommand: PropTypes.func.isRequired, onModalClose: PropTypes.func.isRequired }; export default connect(createMapStateToProps, mapDispatchToProps)(OrganizePreviewModalContentConnector);