File size: 3,545 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
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 = (
<SupportLink
target="_blank"
href={ localizeUrl( 'https://wordpress.com/support/choose-your-sites-primary-data-center/' ) }
/>
);
return (
<div>
{ ! isFormShowing && (
<FormHidden>
{ translate(
'Your site will be placed in the optimal data center, but you can {{customizeLink}}customize it{{/customizeLink}}.',
{
components: {
customizeLink: (
<CustomizeLink
onClick={ () => {
onClickShowPicker();
setIsFormShowing( ! isFormShowing );
} }
/>
),
},
}
) }
</FormHidden>
) }
{ isFormShowing && (
<Form>
<SelectControl
__nextHasNoMarginBottom
label={ <StyledLabel>{ translate( 'Pick your primary data center' ) }</StyledLabel> }
help={
hasEnTranslation(
'For redundancy, your site will be replicated in real-time to another region. {{supportLink}}Learn more{{/supportLink}}.'
)
? translate(
'For redundancy, your site will be replicated in real-time to another region. {{supportLink}}Learn more{{/supportLink}}.',
{
components: {
supportLink: supportLinkComponent,
},
}
)
: translate(
'For redundancy, your site will replicate in real-time to a second data center in a different region. {{supportLink}}Learn more{{/supportLink}}.',
{
components: {
supportLink: supportLinkComponent,
},
}
)
}
options={ DataCenterOptions.map( ( option ) => ( {
label: option.label,
value: option.value,
} ) ) }
onChange={ ( value ) => onChange( value ) }
value={ value }
/>
</Form>
) }
</div>
);
};
export default localize( DataCenterPicker );
|