import React from 'react'; import { NavbarDivider, NavbarGroup, Classes, Button, Popover, PopoverInteractionKind, Position, } from "@blueprintjs/core"; import { FormattedMessage as T } from 'react-intl'; import classNames from 'classnames'; import DashboardActionsBar from "components/Dashboard/DashboardActionsBar"; import Icon from 'components/Icon'; import { If } from 'components'; import withReceivableAging from './withReceivableAgingSummary'; import withReceivableAgingActions from './withReceivableAgingSummaryActions'; import { compose } from 'utils'; function ReceivableAgingSummaryActionsBar({ // #withReceivableAging receivableAgingFilter, // #withReceivableAgingActions toggleFilterReceivableAgingSummary, refreshReceivableAgingSummary, }) { const handleFilterToggleClick = () => { toggleFilterReceivableAgingSummary(); }; const handleRecalcReport = () => { refreshReceivableAgingSummary(true); }; return (