File size: 1,412 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 | import debugFactory from 'debug';
import {
ALL_DOMAINS_REQUEST,
ALL_DOMAINS_REQUEST_FAILURE,
ALL_DOMAINS_REQUEST_SUCCESS,
} from 'calypso/state/action-types';
import 'calypso/state/all-domains/init';
import 'calypso/state/data-layer/wpcom/all-domains/index';
/**
* Module vars
*/
const debug = debugFactory( 'calypso:state:all-domains:actions' );
/**
* Returns an action object to request a user's domains.
* @returns {Object} siteId - action object
*/
export const getAllDomainsRequest = () => {
const action = {
type: ALL_DOMAINS_REQUEST,
};
debug( 'returning action: %o', action );
return action;
};
/**
* Returns an action object for signalling that a request was successful and domains received.
* @param {Object} domains - domains array gotten from WP REST-API response
* @returns {Object} siteId - action object
*/
export const getAllDomainsRequestSuccess = ( domains ) => {
const action = {
type: ALL_DOMAINS_REQUEST_SUCCESS,
domains,
};
debug( 'returning action: %o', action );
return action;
};
/**
* Returns an action object for signalling that a request failed.
* @param {Object} error - error message according to REST-API error response
* @returns {Object} action object
*/
export const getAllDomainsRequestFailure = ( error ) => {
const action = {
type: ALL_DOMAINS_REQUEST_FAILURE,
error,
};
debug( 'returning action: %o', action );
return action;
};
|