mirror of https://github.com/Radarr/Radarr
22 lines
602 B
JavaScript
22 lines
602 B
JavaScript
|
import { connect } from 'react-redux';
|
||
|
import { createSelector } from 'reselect';
|
||
|
import { testAllDownloadClients } from 'Store/Actions/settingsActions';
|
||
|
import DownloadClientSettings from './DownloadClientSettings';
|
||
|
|
||
|
function createMapStateToProps() {
|
||
|
return createSelector(
|
||
|
(state) => state.settings.downloadClients.isTestingAll,
|
||
|
(isTestingAll) => {
|
||
|
return {
|
||
|
isTestingAll
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = {
|
||
|
dispatchTestAllDownloadClients: testAllDownloadClients
|
||
|
};
|
||
|
|
||
|
export default connect(createMapStateToProps, mapDispatchToProps)(DownloadClientSettings);
|