Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>pull/528/head
parent
6103afcc09
commit
029a0e4e20
@ -0,0 +1,21 @@
|
|||||||
|
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);
|
@ -0,0 +1,21 @@
|
|||||||
|
import { connect } from 'react-redux';
|
||||||
|
import { createSelector } from 'reselect';
|
||||||
|
import { testAllImportLists } from 'Store/Actions/settingsActions';
|
||||||
|
import ImportListSettings from './ImportListSettings';
|
||||||
|
|
||||||
|
function createMapStateToProps() {
|
||||||
|
return createSelector(
|
||||||
|
(state) => state.settings.importLists.isTestingAll,
|
||||||
|
(isTestingAll) => {
|
||||||
|
return {
|
||||||
|
isTestingAll
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapDispatchToProps = {
|
||||||
|
dispatchTestAllImportLists: testAllImportLists
|
||||||
|
};
|
||||||
|
|
||||||
|
export default connect(createMapStateToProps, mapDispatchToProps)(ImportListSettings);
|
@ -0,0 +1,21 @@
|
|||||||
|
import { connect } from 'react-redux';
|
||||||
|
import { createSelector } from 'reselect';
|
||||||
|
import { testAllIndexers } from 'Store/Actions/settingsActions';
|
||||||
|
import IndexerSettings from './IndexerSettings';
|
||||||
|
|
||||||
|
function createMapStateToProps() {
|
||||||
|
return createSelector(
|
||||||
|
(state) => state.settings.indexers.isTestingAll,
|
||||||
|
(isTestingAll) => {
|
||||||
|
return {
|
||||||
|
isTestingAll
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapDispatchToProps = {
|
||||||
|
dispatchTestAllIndexers: testAllIndexers
|
||||||
|
};
|
||||||
|
|
||||||
|
export default connect(createMapStateToProps, mapDispatchToProps)(IndexerSettings);
|
@ -0,0 +1,34 @@
|
|||||||
|
import createAjaxRequest from 'Utilities/createAjaxRequest';
|
||||||
|
import { set } from '../baseActions';
|
||||||
|
|
||||||
|
function createTestAllProvidersHandler(section, url) {
|
||||||
|
return function(getState, payload, dispatch) {
|
||||||
|
dispatch(set({ section, isTestingAll: true }));
|
||||||
|
|
||||||
|
const ajaxOptions = {
|
||||||
|
url: `${url}/testall`,
|
||||||
|
method: 'POST',
|
||||||
|
contentType: 'application/json',
|
||||||
|
dataType: 'json'
|
||||||
|
};
|
||||||
|
|
||||||
|
const { request } = createAjaxRequest(ajaxOptions);
|
||||||
|
|
||||||
|
request.done((data) => {
|
||||||
|
dispatch(set({
|
||||||
|
section,
|
||||||
|
isTestingAll: false,
|
||||||
|
saveError: null
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
|
||||||
|
request.fail((xhr) => {
|
||||||
|
dispatch(set({
|
||||||
|
section,
|
||||||
|
isTestingAll: false
|
||||||
|
}));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default createTestAllProvidersHandler;
|
Loading…
Reference in new issue