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.
Readarr/frontend/src/Search/Author/AddNewAuthorModalContentCon...

106 lines
2.7 KiB

import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
import { addAuthor, setAuthorAddDefault } from 'Store/Actions/searchActions';
import createDimensionsSelector from 'Store/Selectors/createDimensionsSelector';
import selectSettings from 'Store/Selectors/selectSettings';
import AddNewAuthorModalContent from './AddNewAuthorModalContent';
function createMapStateToProps() {
return createSelector(
(state) => state.search,
(state) => state.settings.metadataProfiles,
createDimensionsSelector(),
(searchState, metadataProfiles, dimensions) => {
const {
isAdding,
addError,
authorDefaults
} = searchState;
const {
settings,
validationErrors,
validationWarnings
} = selectSettings(authorDefaults, {}, addError);
return {
isAdding,
addError,
showMetadataProfile: metadataProfiles.items.length > 2, // NONE (not allowed for authors) and one other
isSmallScreen: dimensions.isSmallScreen,
validationErrors,
validationWarnings,
...settings
};
}
);
}
const mapDispatchToProps = {
setAuthorAddDefault,
addAuthor
};
class AddNewAuthorModalContentConnector extends Component {
//
// Listeners
onInputChange = ({ name, value }) => {
this.props.setAuthorAddDefault({ [name]: value });
}
onAddAuthorPress = (searchForMissingBooks) => {
const {
foreignAuthorId,
rootFolderPath,
monitor,
monitorNewItems,
qualityProfileId,
metadataProfileId,
tags
} = this.props;
this.props.addAuthor({
foreignAuthorId,
rootFolderPath: rootFolderPath.value,
monitor: monitor.value,
monitorNewItems: monitorNewItems.value,
qualityProfileId: qualityProfileId.value,
metadataProfileId: metadataProfileId.value,
tags: tags.value,
searchForMissingBooks
});
}
//
// Render
render() {
return (
<AddNewAuthorModalContent
{...this.props}
onInputChange={this.onInputChange}
onAddAuthorPress={this.onAddAuthorPress}
/>
);
}
}
AddNewAuthorModalContentConnector.propTypes = {
foreignAuthorId: PropTypes.string.isRequired,
rootFolderPath: PropTypes.object,
monitor: PropTypes.object.isRequired,
monitorNewItems: PropTypes.object.isRequired,
qualityProfileId: PropTypes.object,
metadataProfileId: PropTypes.object,
tags: PropTypes.object.isRequired,
onModalClose: PropTypes.func.isRequired,
setAuthorAddDefault: PropTypes.func.isRequired,
addAuthor: PropTypes.func.isRequired
};
export default connect(createMapStateToProps, mapDispatchToProps)(AddNewAuthorModalContentConnector);