File size: 1,380 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 |
import { SegmentedControl } from '@automattic/components';
import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import { TabType } from 'calypso/performance-profiler/components/header';
import './style.scss';
type DeviceTabControlsProps = {
onDeviceTabChange: ( tab: TabType ) => void;
value: TabType;
showTitle?: boolean;
disabled?: boolean;
};
export const DeviceTabControls = ( {
onDeviceTabChange,
value,
showTitle,
disabled,
}: DeviceTabControlsProps ) => {
const translate = useTranslate();
const options: { value: TabType; label: string }[] = [
{
value: 'mobile',
label: translate( 'Mobile' ),
},
{
value: 'desktop',
label: translate( 'Desktop' ),
},
];
return (
<div className="site-performance-device-tab__container">
{ showTitle && (
<div className="site-performance-device-tab__heading">{ translate( 'Device' ) }</div>
) }
<SegmentedControl
className={ clsx( 'site-performance-device-tab__controls', { [ 'disabled' ]: disabled } ) }
>
{ options.map( ( option ) => {
return (
<SegmentedControl.Item
key={ option.value }
value={ option.value }
selected={ value === option.value }
onClick={ () => onDeviceTabChange( option.value ) }
>
{ option.label }
</SegmentedControl.Item>
);
} ) }
</SegmentedControl>
</div>
);
};
|