File size: 2,242 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
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
);
}
// Set up the locale if there is one
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();
}
// Set up meta tags.
function setupMetaTags( context, next ) {
const i18n = context.i18n || defaultI18n;
const translate = i18n.translate.bind( i18n );
/**
* Get the meta tags, excluding `description` and `robots` meta items, to prevent duplications.
*/
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 );
/**
* Only the main `/start` and `/start/[mag-16-locale]` pages should be indexed. See 3065-gh-Automattic/martech.
*/
if ( hasQueryString || pathSegments.length > ( hasMag16LocaleParam ? 2 : 1 ) ) {
meta.push( {
name: 'robots',
content: 'noindex',
} );
}
context.store.dispatch( setDocumentHeadMeta( meta ) );
next();
}
|