mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-16 21:16:24 -04:00
27 lines
670 B
JavaScript
27 lines
670 B
JavaScript
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import { removeBlocklistItem } from 'Store/Actions/blocklistActions';
|
|
import createAuthorSelector from 'Store/Selectors/createAuthorSelector';
|
|
import BlocklistRow from './BlocklistRow';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
createAuthorSelector(),
|
|
(author) => {
|
|
return {
|
|
author
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
function createMapDispatchToProps(dispatch, props) {
|
|
return {
|
|
onRemovePress() {
|
|
dispatch(removeBlocklistItem({ id: props.id }));
|
|
}
|
|
};
|
|
}
|
|
|
|
export default connect(createMapStateToProps, createMapDispatchToProps)(BlocklistRow);
|