mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
113 lines
3.1 KiB
JavaScript
113 lines
3.1 KiB
JavaScript
import React 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 } from 'components';
|
|
|
|
import DashboardActionsBar from 'components/Dashboard/DashboardActionsBar';
|
|
|
|
import { If, DashboardActionViewsList } from 'components';
|
|
|
|
import withPaymentReceivesActions from './withPaymentReceivesActions';
|
|
import withPaymentReceives from './withPaymentReceives';
|
|
|
|
import { compose } from 'utils';
|
|
import { usePaymentReceivesListContext } from './PaymentReceiptsListProvider';
|
|
|
|
/**
|
|
* Payment receives actions bar.
|
|
*/
|
|
function PaymentReceiveActionsBar({
|
|
// #withPaymentReceivesActions
|
|
setPaymentReceivesTableState,
|
|
}) {
|
|
// History context.
|
|
const history = useHistory();
|
|
|
|
// Payment receives list context.
|
|
const { paymentReceivesViews } = usePaymentReceivesListContext();
|
|
|
|
// Handle new payment button click.
|
|
const handleClickNewPaymentReceive = () => {
|
|
history.push('/payment-receives/new');
|
|
};
|
|
|
|
// Handle tab changing.
|
|
const handleTabChange = (viewId) => {
|
|
setPaymentReceivesTableState({ customViewId: viewId.id || null });
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<DashboardActionViewsList
|
|
resourceName={'payment_receives'}
|
|
views={paymentReceivesViews}
|
|
onChange={handleTabChange}
|
|
/>
|
|
<NavbarDivider />
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'plus'} />}
|
|
text={<T id={'new_payment_receive'} />}
|
|
onClick={handleClickNewPaymentReceive}
|
|
/>
|
|
<Popover
|
|
minimal={true}
|
|
// content={filterDropdown}
|
|
interactionKind={PopoverInteractionKind.CLICK}
|
|
position={Position.BOTTOM_LEFT}
|
|
>
|
|
<Button
|
|
className={classNames(Classes.MINIMAL)}
|
|
text={<T id={'filter'} />}
|
|
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}
|
|
// onClick={handleBulkDelete}
|
|
/>
|
|
</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(
|
|
withPaymentReceivesActions,
|
|
withPaymentReceives(({ paymentReceivesTableState }) => ({
|
|
paymentReceivesTableState,
|
|
})),
|
|
)(PaymentReceiveActionsBar);
|