Your IP : 216.73.216.138


Current Path : /home/ereika83/public_html/wp-content/plugins/wp-hummingbird/_src/react/data/minify/
Upload File :
Current File : /home/ereika83/public_html/wp-content/plugins/wp-hummingbird/_src/react/data/minify/reducer.js

/**
 * WordPress dependencies
 */
import { combineReducers } from '@wordpress/data';

export const options = ( state = {}, action ) => {
	if ( action?.type === 'SET_CDN_STATUS' ) {
		return {
			...state,
			cdn: action.options.cdn,
		};
	}

	if ( action?.type === 'LOAD_OPTIONS' ) {
		return action.options;
	}

	return state;
};

export const assets = ( state = {}, action ) => {
	if ( action?.type === 'LOAD_ASSETS' ) {
		return action.assets;
	}

	return state;
};

// export const minify => GET_ASSETS, UPDATE_ASSETS

export default combineReducers( {
	options,
	assets,
} );