|
|
@ -1,8 +1,11 @@
|
|
|
|
|
|
|
|
import $ from 'jquery';
|
|
|
|
|
|
|
|
import _ from 'lodash';
|
|
|
|
import createAjaxRequest from 'Utilities/createAjaxRequest';
|
|
|
|
import createAjaxRequest from 'Utilities/createAjaxRequest';
|
|
|
|
import getProviderState from 'Utilities/State/getProviderState';
|
|
|
|
import getProviderState from 'Utilities/State/getProviderState';
|
|
|
|
import { set } from '../baseActions';
|
|
|
|
import { set } from '../baseActions';
|
|
|
|
|
|
|
|
|
|
|
|
const abortCurrentRequests = {};
|
|
|
|
const abortCurrentRequests = {};
|
|
|
|
|
|
|
|
let lastTestData = null;
|
|
|
|
|
|
|
|
|
|
|
|
export function createCancelTestProviderHandler(section) {
|
|
|
|
export function createCancelTestProviderHandler(section) {
|
|
|
|
return function(getState, payload, dispatch) {
|
|
|
|
return function(getState, payload, dispatch) {
|
|
|
@ -17,10 +20,25 @@ function createTestProviderHandler(section, url) {
|
|
|
|
return function(getState, payload, dispatch) {
|
|
|
|
return function(getState, payload, dispatch) {
|
|
|
|
dispatch(set({ section, isTesting: true }));
|
|
|
|
dispatch(set({ section, isTesting: true }));
|
|
|
|
|
|
|
|
|
|
|
|
const testData = getProviderState(payload, getState, section);
|
|
|
|
const {
|
|
|
|
|
|
|
|
queryParams = {},
|
|
|
|
|
|
|
|
...otherPayload
|
|
|
|
|
|
|
|
} = payload;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const testData = getProviderState({ ...otherPayload }, getState, section);
|
|
|
|
|
|
|
|
const params = { ...queryParams };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If the user is re-testing the same provider without changes
|
|
|
|
|
|
|
|
// force it to be tested.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (_.isEqual(testData, lastTestData)) {
|
|
|
|
|
|
|
|
params.forceTest = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lastTestData = testData;
|
|
|
|
|
|
|
|
|
|
|
|
const ajaxOptions = {
|
|
|
|
const ajaxOptions = {
|
|
|
|
url: `${url}/test`,
|
|
|
|
url: `${url}/test?${$.param(params, true)}`,
|
|
|
|
method: 'POST',
|
|
|
|
method: 'POST',
|
|
|
|
contentType: 'application/json',
|
|
|
|
contentType: 'application/json',
|
|
|
|
dataType: 'json',
|
|
|
|
dataType: 'json',
|
|
|
@ -32,6 +50,8 @@ function createTestProviderHandler(section, url) {
|
|
|
|
abortCurrentRequests[section] = abortRequest;
|
|
|
|
abortCurrentRequests[section] = abortRequest;
|
|
|
|
|
|
|
|
|
|
|
|
request.done((data) => {
|
|
|
|
request.done((data) => {
|
|
|
|
|
|
|
|
lastTestData = null;
|
|
|
|
|
|
|
|
|
|
|
|
dispatch(set({
|
|
|
|
dispatch(set({
|
|
|
|
section,
|
|
|
|
section,
|
|
|
|
isTesting: false,
|
|
|
|
isTesting: false,
|
|
|
|