mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
76 lines
2.0 KiB
JavaScript
76 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
import { NavbarGroup, Button, Classes, NavbarDivider } from '@blueprintjs/core';
|
|
import { FormattedMessage as T } from 'react-intl';
|
|
import classNames from 'classnames';
|
|
|
|
import Icon from 'components/Icon';
|
|
import DashboardActionsBar from 'components/Dashboard/DashboardActionsBar';
|
|
|
|
import { If } from 'components';
|
|
import withProfitLossActions from './withProfitLossActions';
|
|
import withProfitLoss from './withProfitLoss';
|
|
|
|
import { compose } from 'utils';
|
|
|
|
|
|
function ProfitLossActionsBar({
|
|
// #withProfitLoss
|
|
profitLossSheetFilter,
|
|
|
|
// #withProfitLossActions
|
|
toggleProfitLossSheetFilter,
|
|
}) {
|
|
const handleFilterClick = () => {
|
|
toggleProfitLossSheetFilter();
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<Button
|
|
className={classNames(Classes.MINIMAL, 'button--table-views')}
|
|
icon={<Icon icon="cog" />}
|
|
text={<T id={'customize_report'} />}
|
|
/>
|
|
<NavbarDivider />
|
|
|
|
<If condition={profitLossSheetFilter}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
text={<T id={'hide_filter'} />}
|
|
icon={<Icon icon="arrow-to-top" />}
|
|
onClick={handleFilterClick}
|
|
/>
|
|
</If>
|
|
|
|
<If condition={!profitLossSheetFilter}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
text={<T id={'show_filter'} />}
|
|
icon={<Icon icon="arrow-to-bottom" />}
|
|
onClick={handleFilterClick}
|
|
/>
|
|
</If>
|
|
|
|
<NavbarDivider />
|
|
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="file-export" />}
|
|
text={<T id={'print'} />}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="file-export" />}
|
|
text={<T id={'export'} />}
|
|
/>
|
|
</NavbarGroup>
|
|
</DashboardActionsBar>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withProfitLoss(({ profitLossSheetFilter }) => ({ profitLossSheetFilter })),
|
|
withProfitLossActions,
|
|
)(ProfitLossActionsBar);
|