import React from 'react'; import { useHistory } from 'react-router-dom'; import { Button, NavbarGroup, Classes, NavbarDivider, Intent, } from '@blueprintjs/core'; import { useWarehouseDetailDrawerContext } from './WarehouseTransferDetailDrawerProvider'; import { DrawerActionsBar, Can, Icon, FormattedMessage as T, If, } from 'components'; import withDialogActions from 'containers/Dialog/withDialogActions'; import withAlertsActions from 'containers/Alert/withAlertActions'; import withDrawerActions from 'containers/Drawer/withDrawerActions'; import { compose } from 'utils'; /** * Warehouse transfer detail actions bar. */ function WarehouseTransferDetailActionsBar({ // #withAlertsActions openAlert, // #withDrawerActions closeDrawer, }) { const history = useHistory(); const { warehouseTransferId } = useWarehouseDetailDrawerContext(); // Handle edit warehosue transfer. const handleEditWarehosueTransfer = () => { history.push(`/warehouses-transfers/${warehouseTransferId}/edit`); closeDrawer('warehouse-transfer-detail-drawer'); }; // Handle delete warehouse transfer. const handleDeletetWarehosueTransfer = () => { openAlert('warehouse-transfer-delete', { warehouseTransferId }); }; return (