import { localizeUrl, useHasEnTranslation } from '@automattic/i18n-utils';
import styled from '@emotion/styled';
import { SelectControl } from '@wordpress/components';
import { localize, LocalizeProps, translate } from 'i18n-calypso';
import { useState } from 'react';
interface ExternalProps {
value: string;
onChange: ( newValue: string ) => void;
onClickHidePicker?: () => void;
onClickShowPicker?: () => void;
compact?: boolean;
}
type Props = ExternalProps & LocalizeProps;
const DataCenterOptions = [
{
value: '',
get label(): string {
return translate( 'Optimal data center' );
},
},
{
value: 'bur',
get label(): string {
return translate( 'US West' );
},
},
{
value: 'dfw',
get label(): string {
return translate( 'US Central' );
},
},
{
value: 'dca',
get label(): string {
return translate( 'US East' );
},
},
{
value: 'ams',
get label(): string {
return translate( 'EU West' );
},
},
];
const Form = styled.div( {
maxWidth: '564px',
border: '1px solid var( --color-border-subtle )',
borderRadius: '4px',
padding: '24px',
} );
const FormHidden = styled.div( {
fontSize: '0.75rem',
} );
const CustomizeLink = styled.a`
text-decoration: underline;
cursor: pointer;
`;
const SupportLink = styled.a`
text-decoration: underline;
`;
const StyledLabel = styled.div`
text-transform: none;
font-size: 0.875rem;
color: var( --studio-gray-50 );
text-wrap: wrap;
`;
const DataCenterPicker = ( {
onChange,
onClickShowPicker = () => null,
translate,
value,
}: Props ) => {
const [ isFormShowing, setIsFormShowing ] = useState( false );
const hasEnTranslation = useHasEnTranslation();
const supportLinkComponent = (