Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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>
);
};