import React from 'react'; import { NavbarGroup, Button, Classes, NavbarDivider, Popover, PopoverInteractionKind, Position, } from '@blueprintjs/core'; import { FormattedMessage as T } from 'components'; import classNames from 'classnames'; import { Icon } from 'components'; import DashboardActionsBar from 'components/Dashboard/DashboardActionsBar'; import NumberFormatDropdown from 'components/NumberFormatDropdown'; import { useInventoryItemDetailsContext } from './InventoryItemDetailsProvider'; import withInventoryItemDetails from './withInventoryItemDetails'; import withInventoryItemDetailsActions from './withInventoryItemDetailsActions'; import { compose, saveInvoke } from 'utils'; /** * Inventory item details actions bar. */ function InventoryItemDetailsActionsBar({ // #ownProps numberFormat, onNumberFormatSubmit, //#withInventoryItemDetails isFilterDrawerOpen, //#withInventoryItemDetailsActions toggleInventoryItemDetailsFilterDrawer: toggleFilterDrawer, }) { const { isInventoryItemDetailsLoading, inventoryItemDetailsRefetch } = useInventoryItemDetailsContext(); // Handle filter toggle click. const handleFilterToggleClick = () => { toggleFilterDrawer(); }; //Handle recalculate the report button. const handleRecalcReport = () => { inventoryItemDetailsRefetch(); }; // Handle number format form submit. const handleNumberFormatSubmit = (values) => { saveInvoke(onNumberFormatSubmit, values); }; return (