|
|
import { DomainTransferData } from './types'; |
|
|
import type { State } from './reducer'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const getBulkDomainsData = ( state: State ) => { |
|
|
if ( ! state.domainTransferNames ) { |
|
|
return undefined; |
|
|
} |
|
|
const domainTransferData: DomainTransferData = {}; |
|
|
for ( const key in state.domainTransferNames ) { |
|
|
domainTransferData[ key ] = { |
|
|
domain: state.domainTransferNames[ key ], |
|
|
auth: state.domainTransferAuthCodes?.[ key ].auth ?? '', |
|
|
valid: state.domainTransferAuthCodes?.[ key ].valid ?? false, |
|
|
rawPrice: state.domainTransferAuthCodes?.[ key ].rawPrice ?? 0, |
|
|
saleCost: state.domainTransferAuthCodes?.[ key ].saleCost, |
|
|
currencyCode: state.domainTransferAuthCodes?.[ key ].currencyCode ?? 'USD', |
|
|
}; |
|
|
} |
|
|
return domainTransferData; |
|
|
}; |
|
|
export const getBulkDomainsImportDnsRecords = ( state: State ) => |
|
|
state.shouldImportDomainTransferDnsRecords; |
|
|
export const getIsRedirecting = ( state: State ) => state.isRedirecting; |
|
|
export const getPlanProductId = ( state: State ) => state.planProductId; |
|
|
export const getPlanCartItem = ( state: State ) => state.planCartItem; |
|
|
export const getProductCartItems = ( state: State ) => state.productCartItems; |
|
|
export const getLastLocation = ( state: State ) => state.lastLocation; |
|
|
export const getRandomizedDesigns = ( state: State ) => state.randomizedDesigns; |
|
|
export const getSelectedDesign = ( state: State ) => state.selectedDesign; |
|
|
export const getSelectedStyleVariation = ( state: State ) => state.selectedStyleVariation; |
|
|
export const getSelectedGlobalStyles = ( state: State ) => state.selectedGlobalStyles; |
|
|
export const getSelectedDomain = ( state: State ) => state.domain; |
|
|
export const getSelectedFeatures = ( state: State ) => state.selectedFeatures; |
|
|
export const getSelectedSite = ( state: State ) => state.selectedSite; |
|
|
export const getSelectedSiteTitle = ( state: State ) => state.siteTitle; |
|
|
export const getSelectedSiteLogo = ( state: State ) => state.siteLogo; |
|
|
export const getSelectedSiteDescription = ( state: State ) => state.siteDescription; |
|
|
export const getSelectedSiteAccentColor = ( state: State ) => state.siteAccentColor; |
|
|
export const getSelectedReadymadeTemplate = ( state: State ) => state.readymadeTemplate; |
|
|
export const getIntent = ( state: State ) => state.intent; |
|
|
export const getStartingPoint = ( state: State ) => state.startingPoint; |
|
|
export const getStoreType = ( state: State ) => state.storeType; |
|
|
export const getPendingAction = ( state: State ) => state.pendingAction; |
|
|
export const getProgress = ( state: State ) => state.progress; |
|
|
export const getProgressTitle = ( state: State ) => state.progressTitle; |
|
|
export const getGoals = ( state: State ) => state.goals; |
|
|
export const getEcommerceFlowRecurType = ( state: State ) => state.ecommerceFlowRecurType; |
|
|
export const getCouponCode = ( state: State ) => state.couponCode; |
|
|
export const getStorageAddonSlug = ( state: State ) => state.storageAddonSlug; |
|
|
export const getState = ( state: State ) => state; |
|
|
export const hasPaidDesign = ( state: State ): boolean => { |
|
|
if ( ! state.selectedDesign ) { |
|
|
return false; |
|
|
} |
|
|
return state.selectedDesign?.design_tier !== 'free'; |
|
|
}; |
|
|
export const hasPaidDomain = ( state: State ): boolean => { |
|
|
if ( ! state.domain ) { |
|
|
return false; |
|
|
} |
|
|
return ! state.domain.is_free; |
|
|
}; |
|
|
export const hasSiteTitle = ( state: State ) => state.siteTitle.trim().length > 1; |
|
|
|
|
|
|
|
|
export const hasSelectedDesign = ( state: State ) => !! state.selectedDesign; |
|
|
|
|
|
export const getDomainForm = ( state: State ) => state.domainForm; |
|
|
export const getDomainCartItem = ( state: State ) => state.domainCartItem; |
|
|
export const getDomainCartItems = ( state: State ) => state.domainCartItems; |
|
|
export const getSignupDomainOrigin = ( state: State ) => state.signupDomainOrigin; |
|
|
export const getSiteUrl = ( state: State ) => state.siteUrl; |
|
|
export const getHideFreePlan = ( state: State ) => state.hideFreePlan; |
|
|
export const getHidePlansFeatureComparison = ( state: State ) => state.hidePlansFeatureComparison; |
|
|
export const getPluginsToVerify = ( state: State ) => state.pluginsToVerify; |
|
|
export const getProfilerData = ( state: State ) => state.profilerData; |
|
|
export const getPaidSubscribers = ( state: State ) => state.paidSubscribers; |
|
|
export const getPartnerBundle = ( state: State ) => state.partnerBundle; |
|
|
|