File size: 1,770 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 |
import page from '@automattic/calypso-router';
import { useTranslate } from 'i18n-calypso';
import HostingInformation from 'calypso/site-profiler/components/hosting-information';
import { MetricsSection } from 'calypso/site-profiler/components/metrics-section';
import { getTitleTranslateOptions } from 'calypso/site-profiler/utils/get-title-translate-options';
import type { UrlData } from 'calypso/blocks/import/types';
import type { DNS, HostingProvider } from 'calypso/data/site-profiler/types';
interface HostingSectionProps {
dns: DNS[];
url?: string;
urlData?: UrlData;
hostingProvider?: HostingProvider;
hostingRef: React.RefObject< HTMLObjectElement >;
}
export const HostingSection: React.FC< HostingSectionProps > = ( props ) => {
const translate = useTranslate();
const { dns = [], url, urlData, hostingProvider, hostingRef } = props;
const isWPcom = hostingProvider?.slug?.toLowerCase() === 'automattic';
return (
<MetricsSection
name={ translate( 'Hosting' ) }
title={
isWPcom
? translate(
'Your hosting {{good}}speed and uptime is excellent{{/good}}, providing a reliable and enjoyable user experience.',
getTitleTranslateOptions()
)
: translate(
'Struggles with hosting {{poor}}speed and uptime{{/poor}} deter visitors. A switch to WordPress.com could transform the user experience.',
getTitleTranslateOptions()
)
}
subtitle={ ! isWPcom ? translate( 'Upgrade your hosting with WordPress.com' ) : null }
subtitleOnClick={ () => page( `/setup/site-migration?ref=site-profiler&from=${ url }` ) }
ref={ hostingRef }
>
<HostingInformation
dns={ dns }
urlData={ urlData }
hostingProvider={ hostingProvider }
hideTitle
/>
</MetricsSection>
);
};
|