69 lines
1.4 KiB
TypeScript
69 lines
1.4 KiB
TypeScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { TYPES } from './action-types';
|
|
import {
|
|
ApiFetchError,
|
|
RegisteredChannel,
|
|
RecommendedChannel,
|
|
Campaign,
|
|
} from './types';
|
|
|
|
export const receiveRegisteredChannelsSuccess = (
|
|
channels: Array< RegisteredChannel >
|
|
) => {
|
|
return {
|
|
type: TYPES.RECEIVE_REGISTERED_CHANNELS_SUCCESS,
|
|
payload: channels,
|
|
};
|
|
};
|
|
|
|
export const receiveRegisteredChannelsError = ( error: ApiFetchError ) => {
|
|
return {
|
|
type: TYPES.RECEIVE_REGISTERED_CHANNELS_ERROR,
|
|
payload: error,
|
|
error: true,
|
|
};
|
|
};
|
|
|
|
export const receiveRecommendedChannelsSuccess = (
|
|
channels: Array< RecommendedChannel >
|
|
) => {
|
|
return {
|
|
type: TYPES.RECEIVE_RECOMMENDED_CHANNELS_SUCCESS,
|
|
payload: channels,
|
|
};
|
|
};
|
|
|
|
export const receiveRecommendedChannelsError = ( error: ApiFetchError ) => {
|
|
return {
|
|
type: TYPES.RECEIVE_RECOMMENDED_CHANNELS_ERROR,
|
|
payload: error,
|
|
error: true,
|
|
};
|
|
};
|
|
|
|
export const receiveCampaignsSuccess = ( campaigns: Array< Campaign > ) => {
|
|
return {
|
|
type: TYPES.RECEIVE_CAMPAIGNS_SUCCESS,
|
|
payload: campaigns,
|
|
};
|
|
};
|
|
|
|
export const receiveCampaignsError = ( error: ApiFetchError ) => {
|
|
return {
|
|
type: TYPES.RECEIVE_CAMPAIGNS_ERROR,
|
|
payload: error,
|
|
error: true,
|
|
};
|
|
};
|
|
|
|
export type Action = ReturnType<
|
|
| typeof receiveRegisteredChannelsSuccess
|
|
| typeof receiveRegisteredChannelsError
|
|
| typeof receiveRecommendedChannelsSuccess
|
|
| typeof receiveRecommendedChannelsError
|
|
| typeof receiveCampaignsSuccess
|
|
| typeof receiveCampaignsError
|
|
>;
|