Your IP : 18.226.177.86


Current Path : /proc/self/root/home/sudancam/public_html3/games/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/reducer/
Upload File :
Current File : //proc/self/root/home/sudancam/public_html3/games/wp-content/plugins/jetpack/jetpack_vendor/automattic/jetpack-wordads/src/dashboard/store/reducer/jetpack-settings.js

import { SET_WORDADS_SETTINGS } from '../actions/jetpack-settings';

const jetpackSettings = ( state = {}, action ) => {
	switch ( action.type ) {
		case SET_WORDADS_SETTINGS:
			return {
				...state,
				...action.options,
				is_toggling_module:
					state.module_active !== action.options.module_active && !! action.options.is_updating,
				is_toggling_instant_search:
					state.instant_search_enabled !== action.options.instant_search_enabled &&
					!! action.options.is_updating,
			};
	}
	return state;
};

export default jetpackSettings;