File size: 4,744 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
import { translate } from 'i18n-calypso';
import { WORDADS_SETTINGS_REQUEST, WORDADS_SETTINGS_SAVE } from 'calypso/state/action-types';
import { registerHandlers } from 'calypso/state/data-layer/handler-registry';
import { http } from 'calypso/state/data-layer/wpcom-http/actions';
import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils';
import { saveJetpackSettings } from 'calypso/state/jetpack/settings/actions';
import { errorNotice, removeNotice, successNotice } from 'calypso/state/notices/actions';
import getWordadsSettings from 'calypso/state/selectors/get-wordads-settings';
import { isJetpackSite } from 'calypso/state/sites/selectors';
import {
saveWordadsSettingsFailure,
saveWordadsSettingsSuccess,
updateWordadsSettings,
} from 'calypso/state/wordads/settings/actions';
const noop = () => {};
const fromApi = ( data ) => {
if ( ! data.hasOwnProperty( 'settings' ) ) {
throw new Error( 'Missing settings field in response' );
}
return data.settings;
};
const receiveWordadsSettings = ( { siteId }, settings ) =>
updateWordadsSettings( siteId, settings );
/**
* Dispatches a request to fetch WordAds settings for a given site
* @param {Object} action Redux action
* @returns {Object} Dispatched http action
*/
export const requestWordadsSettings = ( action ) => {
const { siteId } = action;
return http(
{
apiVersion: '1.1',
method: 'GET',
path: '/sites/' + siteId + '/wordads/settings/',
},
action
);
};
/**
* Dispatches a request to save particular settings on a site
* @param {Object} action Redux action
* @returns {Object} Dispatched http action
*/
export const saveWordadsSettings = ( action ) => ( dispatch, getState ) => {
const { settings, siteId } = action;
const state = getState();
const previousSettings = getWordadsSettings( state, siteId );
// WordAds settings on Jetpack sites are not updatable on the WordAds API endpoint, so we
// update them from the site settings endpoints.
const isJetpack = isJetpackSite( state, siteId );
if ( isJetpack ) {
let jetpackSettings = {
wordads: settings.jetpack_module_enabled,
};
if ( settings.jetpack_module_enabled ) {
jetpackSettings = {
...jetpackSettings,
wordads_display_front_page: settings.display_options.display_front_page,
wordads_display_post: settings.display_options.display_post,
wordads_display_page: settings.display_options.display_page,
wordads_display_archive: settings.display_options.display_archive,
enable_header_ad: settings.display_options.enable_header_ad,
wordads_second_belowpost: settings.display_options.second_belowpost,
wordads_inline_enabled: settings.display_options.inline_enabled,
wordads_ccpa_enabled: settings.ccpa_enabled,
wordads_ccpa_privacy_policy_url: settings.ccpa_privacy_policy_url,
wordads_custom_adstxt_enabled: settings.custom_adstxt_enabled,
wordads_custom_adstxt: settings.custom_adstxt,
wordads_cmp_enabled: settings.cmp_enabled,
};
}
dispatch( saveJetpackSettings( siteId, jetpackSettings ) );
}
// Optimistically update settings to the new ones
dispatch( updateWordadsSettings( siteId, settings ) );
dispatch( removeNotice( `wordads-notice-success-${ siteId }` ) );
dispatch( removeNotice( `wordads-notice-error-${ siteId }` ) );
dispatch(
http(
{
apiVersion: '1.1',
method: 'POST',
path: '/sites/' + siteId + '/wordads/settings/',
body: settings,
},
{
...action,
meta: { ...action.meta, settings: previousSettings },
}
)
);
};
export const handleSaveSuccess = ( { siteId } ) => [
saveWordadsSettingsSuccess( siteId ),
successNotice( translate( 'WordAds settings saved successfully!' ), {
id: `wordads-notice-success-${ siteId }`,
duration: 5000,
} ),
];
export const handleSaveFailure = ( {
siteId,
meta: {
settings: previousSettings,
dataLayer: {
error: { error },
},
},
} ) => [
saveWordadsSettingsFailure( siteId ),
updateWordadsSettings( siteId, previousSettings ),
errorNotice(
error === 'invalid_paypal'
? translate(
'Your account needs a valid PayPal email to receive earnings. Enter one below, then try saving again.'
)
: translate( 'An unexpected error occurred. Please try again later.' ),
{ id: `wordads-notice-error-${ siteId }`, duration: 10000 }
),
];
registerHandlers( 'state/data-layer/wpcom/wordads/settings/index.js', {
[ WORDADS_SETTINGS_REQUEST ]: [
dispatchRequest( {
fetch: requestWordadsSettings,
onSuccess: receiveWordadsSettings,
onError: noop,
fromApi,
} ),
],
[ WORDADS_SETTINGS_SAVE ]: [
dispatchRequest( {
fetch: saveWordadsSettings,
onSuccess: handleSaveSuccess,
onError: handleSaveFailure,
} ),
],
} );
|