File size: 1,941 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 |
import IconRedo from '@mui/icons-material/Redo';
import IconUndo from '@mui/icons-material/Undo';
import React from 'react';
import {
useCanRedo,
useCanUndo,
useIsSmallScreen,
useRedo,
useUndo,
} from '../../../core/components/hooks';
import Button from '../Button/index';
type Props = {
labelUndo: string;
labelRedo: string;
};
const UndoRedo: React.FC<Props> = ({ labelUndo, labelRedo }) => {
const undo = useUndo();
const canUndo = useCanUndo();
const canRedo = useCanRedo();
const redo = useRedo();
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={!canUndo}
style={{
transform: `translateX(${isSmall ? 27 : 35}px)`,
}}
icon={
<IconUndo
style={{ transform: `translateX(-${isSmall ? 6 : 12}px)` }}
/>
}
description={labelUndo}
onClick={undo}
activeColor="primary"
/>
</div>
<div
style={{
width: isSmall ? 28 : 36,
overflow: 'hidden',
marginLeft: 1,
}}
>
<Button
style={{
position: 'relative',
transform: 'translateX(1px)',
}}
active
disabled={!canRedo}
icon={
<IconRedo
style={{ transform: `translateX(${isSmall ? 6 : 12}px)` }}
/>
}
description={labelRedo}
onClick={redo}
activeColor="primary"
/>
</div>
</div>
);
};
export default React.memo(UndoRedo);
|