mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
117 lines
3.1 KiB
JavaScript
117 lines
3.1 KiB
JavaScript
import React, { useState } from 'react';
|
|
import Icon from 'components/Icon';
|
|
import {
|
|
Button,
|
|
Classes,
|
|
Popover,
|
|
NavbarDivider,
|
|
NavbarGroup,
|
|
PopoverInteractionKind,
|
|
Position,
|
|
Intent,
|
|
} from '@blueprintjs/core';
|
|
|
|
import classNames from 'classnames';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { FormattedMessage as T, useIntl } from 'react-intl';
|
|
|
|
import { If, DashboardActionViewsList } from 'components';
|
|
import DashboardActionsBar from 'components/Dashboard/DashboardActionsBar';
|
|
|
|
import withReceiptsActions from './withReceiptsActions';
|
|
import { useReceiptsListContext } from './ReceiptsListProvider';
|
|
|
|
import { compose } from 'utils';
|
|
|
|
/**
|
|
* Receipts actions bar.
|
|
*/
|
|
function ReceiptActionsBar({
|
|
// #withReceiptsActions
|
|
setReceiptsTableState,
|
|
}) {
|
|
const history = useHistory();
|
|
const { formatMessage } = useIntl();
|
|
|
|
const [filterCount, setFilterCount] = useState(0);
|
|
|
|
// Sale receipts list context.
|
|
const { receiptsViews } = useReceiptsListContext();
|
|
|
|
// Handle new receipt button click.
|
|
const onClickNewReceipt = () => {
|
|
history.push('/receipts/new');
|
|
};
|
|
|
|
// Handle the active tab change.
|
|
const handleTabChange = (viewId) => {
|
|
setReceiptsTableState({
|
|
csutomViewId: viewId.id || null,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<DashboardActionViewsList
|
|
resourceName={'receipts'}
|
|
views={receiptsViews}
|
|
onChange={handleTabChange}
|
|
/>
|
|
|
|
<NavbarDivider />
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'plus'} />}
|
|
text={<T id={'new_receipt'} />}
|
|
onClick={onClickNewReceipt}
|
|
/>
|
|
<Popover
|
|
minimal={true}
|
|
// content={filterDropdown}
|
|
interactionKind={PopoverInteractionKind.CLICK}
|
|
position={Position.BOTTOM_LEFT}
|
|
>
|
|
<Button
|
|
className={classNames(Classes.MINIMAL, 'button--filter')}
|
|
text={
|
|
filterCount <= 0 ? (
|
|
<T id={'filter'} />
|
|
) : (
|
|
`${filterCount} ${formatMessage({ id: 'filters_applied' })}`
|
|
)
|
|
}
|
|
icon={<Icon icon={'filter-16'} iconSize={16} />}
|
|
/>
|
|
</Popover>
|
|
<If condition={false}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'trash-16'} iconSize={16} />}
|
|
text={<T id={'delete'} />}
|
|
intent={Intent.DANGER}
|
|
/>
|
|
</If>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'print-16'} iconSize={'16'} />}
|
|
text={<T id={'print'} />}
|
|
/>
|
|
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'file-import-16'} />}
|
|
text={<T id={'import'} />}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'file-export-16'} iconSize={'16'} />}
|
|
text={<T id={'export'} />}
|
|
/>
|
|
</NavbarGroup>
|
|
</DashboardActionsBar>
|
|
);
|
|
}
|
|
|
|
export default compose(withReceiptsActions)(ReceiptActionsBar);
|