|
|
import { |
|
|
getLanguage, |
|
|
getLanguageRouteParam, |
|
|
isDefaultLocale, |
|
|
isMagnificentLocale, |
|
|
} from '@automattic/i18n-utils'; |
|
|
import defaultI18n from 'i18n-calypso'; |
|
|
import { ssrSetupLocale } from 'calypso/controller'; |
|
|
import { setDocumentHeadMeta } from 'calypso/state/document-head/actions'; |
|
|
import { getDocumentHeadMeta } from 'calypso/state/document-head/selectors'; |
|
|
|
|
|
export default function ( router ) { |
|
|
const lang = getLanguageRouteParam(); |
|
|
|
|
|
router( |
|
|
[ |
|
|
`/start/${ lang }`, |
|
|
`/start/:flowName/${ lang }`, |
|
|
`/start/:flowName/:stepName/${ lang }`, |
|
|
`/start/:flowName/:stepName/:stepSectionName/${ lang }`, |
|
|
], |
|
|
setUpLocale, |
|
|
setupMetaTags |
|
|
); |
|
|
} |
|
|
|
|
|
|
|
|
function setUpLocale( context, next ) { |
|
|
const language = getLanguage( context.params.lang ); |
|
|
if ( language ) { |
|
|
context.lang = context.params.lang; |
|
|
} |
|
|
|
|
|
const shouldSetupLocaleData = |
|
|
isDefaultLocale( context.lang ) || isMagnificentLocale( context.lang ); |
|
|
|
|
|
if ( shouldSetupLocaleData ) { |
|
|
return ssrSetupLocale( context, next ); |
|
|
} |
|
|
|
|
|
next(); |
|
|
} |
|
|
|
|
|
|
|
|
function setupMetaTags( context, next ) { |
|
|
const i18n = context.i18n || defaultI18n; |
|
|
const translate = i18n.translate.bind( i18n ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const meta = getDocumentHeadMeta( context.store.getState() ).filter( |
|
|
( { name } ) => name !== 'description' && name !== 'robots' |
|
|
); |
|
|
|
|
|
meta.push( { |
|
|
name: 'description', |
|
|
content: translate( |
|
|
'Sign up for a free WordPress.com account to start building your new website. Get access to powerful tools and customizable designs to bring your ideas to life.' |
|
|
), |
|
|
} ); |
|
|
|
|
|
const pathSegments = context.pathname.replace( /^[/]|[/]$/g, '' ).split( '/' ); |
|
|
const hasQueryString = Object.keys( context.query ).length > 0; |
|
|
const hasMag16LocaleParam = isMagnificentLocale( context.params?.lang ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( hasQueryString || pathSegments.length > ( hasMag16LocaleParam ? 2 : 1 ) ) { |
|
|
meta.push( { |
|
|
name: 'robots', |
|
|
content: 'noindex', |
|
|
} ); |
|
|
} |
|
|
|
|
|
context.store.dispatch( setDocumentHeadMeta( meta ) ); |
|
|
next(); |
|
|
} |
|
|
|