New: Readarr 0.1

This commit is contained in:
ta264
2020-05-06 21:14:11 +01:00
parent 476f2d6047
commit 08496c82af
911 changed files with 14837 additions and 24442 deletions
@@ -0,0 +1,86 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { createSelector } from 'reselect';
import { fetchArtistHistory, clearArtistHistory, artistHistoryMarkAsFailed } from 'Store/Actions/artistHistoryActions';
function createMapStateToProps() {
return createSelector(
(state) => state.artistHistory,
(artistHistory) => {
return artistHistory;
}
);
}
const mapDispatchToProps = {
fetchArtistHistory,
clearArtistHistory,
artistHistoryMarkAsFailed
};
class ArtistHistoryContentConnector extends Component {
//
// Lifecycle
componentDidMount() {
const {
authorId,
bookId
} = this.props;
this.props.fetchArtistHistory({
authorId,
bookId
});
}
componentWillUnmount() {
this.props.clearArtistHistory();
}
//
// Listeners
onMarkAsFailedPress = (historyId) => {
const {
authorId,
bookId
} = this.props;
this.props.artistHistoryMarkAsFailed({
historyId,
authorId,
bookId
});
}
//
// Render
render() {
const {
component: ViewComponent,
...otherProps
} = this.props;
return (
<ViewComponent
{...otherProps}
onMarkAsFailedPress={this.onMarkAsFailedPress}
/>
);
}
}
ArtistHistoryContentConnector.propTypes = {
component: PropTypes.elementType.isRequired,
authorId: PropTypes.number.isRequired,
bookId: PropTypes.number,
fetchArtistHistory: PropTypes.func.isRequired,
clearArtistHistory: PropTypes.func.isRequired,
artistHistoryMarkAsFailed: PropTypes.func.isRequired
};
export default connect(createMapStateToProps, mapDispatchToProps)(ArtistHistoryContentConnector);