// @ts-nocheck 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, Icon, FormattedMessage as T } from '@/components'; import withDialogActions from '@/containers/Dialog/withDialogActions'; import withAlertsActions from '@/containers/Alert/withAlertActions'; import withDrawerActions from '@/containers/Drawer/withDrawerActions'; import { DRAWERS } from '@/constants/drawers'; 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(DRAWERS.WAREHOUSE_TRANSFER_DETAILS); }; // Handle delete warehouse transfer. const handleDeletetWarehosueTransfer = () => { openAlert('warehouse-transfer-delete', { warehouseTransferId }); }; return (