File size: 860 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 |
import type { StorageAddOnSlug } from '../add-ons/types';
import type { PlanSlug, WPComPlanStorageFeatureSlug } from '@automattic/calypso-products';
export const setShowDomainUpsellDialog = ( show: boolean ) =>
( {
type: 'WPCOM_PLANS_UI_DOMAIN_UPSELL_DIALOG_SET_SHOW' as const,
show,
} ) as const;
export const resetStore = () =>
( {
type: 'WPCOM_PLANS_UI_RESET_STORE',
} ) as const;
export const setSelectedStorageOptionForPlan = ( {
addOnSlug,
planSlug,
siteId,
}: {
addOnSlug: StorageAddOnSlug | WPComPlanStorageFeatureSlug;
planSlug: PlanSlug;
siteId?: number | null;
} ) =>
( {
type: 'WPCOM_PLANS_UI_SET_SELECTED_STORAGE_OPTION_FOR_PLAN',
addOnSlug,
planSlug,
siteId,
} ) as const;
export type WpcomPlansUIAction = ReturnType<
typeof setShowDomainUpsellDialog | typeof resetStore | typeof setSelectedStorageOptionForPlan
>;
|