|
|
import { isLocaleRtl } from '@automattic/i18n-utils'; |
|
|
import clsx from 'clsx'; |
|
|
import Head from 'calypso/components/head'; |
|
|
import { jsonStringifyForHtml } from 'calypso/server/sanitize'; |
|
|
import { chunkCssLinks } from './utils'; |
|
|
|
|
|
function DomainsLanding( { |
|
|
branchName, |
|
|
clientData, |
|
|
domainsLandingData, |
|
|
inlineScriptNonce, |
|
|
env, |
|
|
entrypoint, |
|
|
head, |
|
|
i18nLocaleScript, |
|
|
lang, |
|
|
manifests, |
|
|
} ) { |
|
|
const isRTL = isLocaleRtl( lang ); |
|
|
return ( |
|
|
<html lang={ lang } dir={ isRTL ? 'rtl' : 'ltr' }> |
|
|
<Head title={ head.title } branchName={ branchName } inlineScriptNonce={ inlineScriptNonce }> |
|
|
{ head.metas.map( ( props, index ) => ( |
|
|
<meta { ...props } key={ index } /> |
|
|
) ) } |
|
|
{ head.links.map( ( props, index ) => ( |
|
|
<link { ...props } key={ index } /> |
|
|
) ) } |
|
|
{ chunkCssLinks( entrypoint, isRTL ) } |
|
|
</Head> |
|
|
<body |
|
|
className={ clsx( { |
|
|
rtl: isRTL, |
|
|
} ) } |
|
|
> |
|
|
{ /* eslint-disable wpcalypso/jsx-classname-namespace, react/no-danger */ } |
|
|
<div id="wpcom" className="wpcom-site"> |
|
|
<div className="wp has-no-sidebar"> |
|
|
<div className="domains-landing layout__content" id="content"> |
|
|
<div className="layout__primary" id="primary" /> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
{ domainsLandingData && ( |
|
|
<script |
|
|
type="text/javascript" |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: `var domainsLandingData = ${ jsonStringifyForHtml( domainsLandingData ) };`, |
|
|
} } |
|
|
/> |
|
|
) } |
|
|
{ clientData && ( |
|
|
<script |
|
|
type="text/javascript" |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: `var configData = ${ jsonStringifyForHtml( clientData ) };`, |
|
|
} } |
|
|
/> |
|
|
) } |
|
|
{ i18nLocaleScript && <script src={ i18nLocaleScript } /> } |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
{ env === 'development' && <script src="/calypso/evergreen/runtime.js" /> } |
|
|
{ env !== 'development' && |
|
|
manifests.map( ( manifest ) => ( |
|
|
<script |
|
|
nonce={ inlineScriptNonce } |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: manifest, |
|
|
} } |
|
|
/> |
|
|
) ) } |
|
|
{ entrypoint.js.map( ( asset ) => ( |
|
|
<script key={ asset } src={ asset } /> |
|
|
) ) } |
|
|
<script |
|
|
nonce={ inlineScriptNonce } |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: ` |
|
|
(function() { |
|
|
if ( window.console && window.configData && 'development' !== window.configData.env ) { |
|
|
console.log( "%cSTOP!", "color:#f00;font-size:xx-large" ); |
|
|
console.log( |
|
|
"%cWait! This browser feature runs code that can alter your website or its security, " + |
|
|
"and is intended for developers. If you've been told to copy and paste something here " + |
|
|
"to enable a feature, someone may be trying to compromise your account. Please make " + |
|
|
"sure you understand the code and trust the source before adding anything here.", |
|
|
"font-size:large;" |
|
|
); |
|
|
} |
|
|
})(); |
|
|
`, |
|
|
} } |
|
|
/> |
|
|
<script |
|
|
nonce={ inlineScriptNonce } |
|
|
dangerouslySetInnerHTML={ { |
|
|
__html: ` |
|
|
if ('serviceWorker' in navigator) { |
|
|
window.addEventListener('load', function() { |
|
|
navigator.serviceWorker.register('/service-worker.js'); |
|
|
}); |
|
|
} |
|
|
`, |
|
|
} } |
|
|
/> |
|
|
<noscript className="wpcom-site__global-noscript"> |
|
|
Please enable JavaScript in your browser to enjoy WordPress.com. |
|
|
</noscript> |
|
|
{ } |
|
|
{ } |
|
|
</body> |
|
|
</html> |
|
|
); |
|
|
} |
|
|
|
|
|
export default DomainsLanding; |
|
|
|