File size: 2,007 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 |
import IconZoomOut from '@mui/icons-material/ZoomOut';
import IconZoomIn from '@mui/icons-material/ZoomIn';
import React from 'react';
import {
useCanZoomIn,
useCanZoomOut,
useIsSmallScreen,
useZoomIn,
useZoomOut,
} from '../../../core/components/hooks';
import Button from '../Button/index';
type Props = {
labelZoomIn: string;
labelZoomOut: string;
};
const Zoom: React.FC<Props> = ({ labelZoomIn, labelZoomOut }) => {
const canZoomIn = useCanZoomIn();
const canZoomOut = useCanZoomOut();
const zoomOut = useZoomOut();
const zoomIn = useZoomIn();
const isSmall = useIsSmallScreen();
return (
<div
style={{
height: isSmall ? 56 : 80,
float: 'right',
display: 'flex',
direction: 'ltr',
transform: 'scale(1.2)',
}}
>
<div
style={{
width: isSmall ? 29 : 36,
overflow: 'hidden',
marginRight: isSmall ? 1 : 2,
}}
>
<Button
active
disabled={!canZoomIn}
style={{
transform: `translateX(${isSmall ? 27 : 35}px)`,
}}
icon={
<IconZoomIn
style={{ transform: `translateX(-${isSmall ? 6 : 12}px)` }}
/>
}
description={labelZoomIn}
onClick={zoomIn}
activeColor="default"
/>
</div>
<div
style={{
width: isSmall ? 28 : 36,
overflow: 'hidden',
marginLeft: 1,
}}
>
<Button
style={{
position: 'relative',
transform: 'translateX(1px)',
}}
active
disabled={!canZoomOut}
icon={
<IconZoomOut
style={{ transform: `translateX(${isSmall ? 6 : 12}px)` }}
/>
}
description={labelZoomOut}
onClick={zoomOut}
activeColor="default"
/>
</div>
</div>
);
};
export default React.memo(Zoom);
|