File size: 746 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 |
import IconButton from '@mui/material/IconButton';
import VerticalAlignTopIcon from '@mui/icons-material/VerticalAlignTop';
import React from 'react';
import {
useFocusCell,
useParentCellId,
useUiTranslator,
} from '../../core/components/hooks';
export const SelectParentButton: React.FC<{
nodeId: string;
}> = React.memo(({ nodeId }) => {
const parentCellId = useParentCellId(nodeId);
const { t } = useUiTranslator();
const focusParent = useFocusCell(parentCellId);
return parentCellId ? (
<IconButton
className="bottomToolbar__selectParentButton"
onClick={() => focusParent()}
color="default"
title={t('Select parent') ?? ''}
>
<VerticalAlignTopIcon />
</IconButton>
) : null;
});
|