mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 15:20:34 +00:00
166 lines
4.5 KiB
TypeScript
166 lines
4.5 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import {
|
|
Button,
|
|
Classes,
|
|
NavbarDivider,
|
|
NavbarGroup,
|
|
Alignment,
|
|
} from '@blueprintjs/core';
|
|
import { useHistory } from 'react-router-dom';
|
|
import {
|
|
Icon,
|
|
Can,
|
|
FormattedMessage as T,
|
|
DashboardActionViewsList,
|
|
AdvancedFilterPopover,
|
|
DashboardFilterButton,
|
|
DashboardRowsHeightButton,
|
|
DashboardActionsBar,
|
|
} from '@/components';
|
|
|
|
import { useCreditNoteListContext } from './CreditNotesListProvider';
|
|
import { CreditNoteAction, AbilitySubject } from '@/constants/abilityOption';
|
|
import withCreditNotes from './withCreditNotes';
|
|
import withCreditNotesActions from './withCreditNotesActions';
|
|
import withSettings from '@/containers/Settings/withSettings';
|
|
import withSettingsActions from '@/containers/Settings/withSettingsActions';
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
|
|
import { compose } from '@/utils';
|
|
import { DialogsName } from '@/constants/dialogs';
|
|
|
|
/**
|
|
* Credit note table actions bar.
|
|
*/
|
|
function CreditNotesActionsBar({
|
|
// #withCreditNotes
|
|
creditNoteFilterRoles,
|
|
|
|
// #withCreditNotesActions
|
|
setCreditNotesTableState,
|
|
|
|
// #withSettings
|
|
creditNoteTableSize,
|
|
|
|
// #withSettingsActions
|
|
addSetting,
|
|
|
|
// #withDialogActions
|
|
openDialog,
|
|
}) {
|
|
const history = useHistory();
|
|
|
|
// credit note list context.
|
|
const { CreditNotesView, fields, refresh } = useCreditNoteListContext();
|
|
|
|
// Handle view tab change.
|
|
const handleTabChange = (view) => {
|
|
setCreditNotesTableState({ viewSlug: view ? view.slug : null });
|
|
};
|
|
|
|
// Handle click a new Credit.
|
|
const handleClickNewCreateNote = () => {
|
|
history.push('/credit-notes/new');
|
|
};
|
|
|
|
// Handle click a refresh credit note.
|
|
const handleRefreshBtnClick = () => {
|
|
refresh();
|
|
};
|
|
|
|
// Handle table row size change.
|
|
const handleTableRowSizeChange = (size) => {
|
|
addSetting('creditNote', 'tableSize', size);
|
|
};
|
|
|
|
// Handle import button click.
|
|
const handleImportBtnClick = () => {
|
|
history.push('/credit-notes/import');
|
|
};
|
|
|
|
// Handle the export button click.
|
|
const handleExportBtnClick = () => {
|
|
openDialog(DialogsName.Export, { resource: 'credit_note' });
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<DashboardActionViewsList
|
|
allMenuItem={true}
|
|
resourceName={'credit_notes'}
|
|
views={CreditNotesView}
|
|
onChange={handleTabChange}
|
|
/>
|
|
<NavbarDivider />
|
|
<Can I={CreditNoteAction.Create} a={AbilitySubject.CreditNote}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'plus'} />}
|
|
text={<T id={'credit_note.label.new_credit_note'} />}
|
|
onClick={handleClickNewCreateNote}
|
|
/>
|
|
</Can>
|
|
<AdvancedFilterPopover
|
|
advancedFilterProps={{
|
|
conditions: creditNoteFilterRoles,
|
|
defaultFieldKey: 'created_at',
|
|
fields: fields,
|
|
onFilterChange: (filterConditions) => {
|
|
setCreditNotesTableState({ filterRoles: filterConditions });
|
|
},
|
|
}}
|
|
>
|
|
<DashboardFilterButton
|
|
conditionsCount={creditNoteFilterRoles.length}
|
|
/>
|
|
</AdvancedFilterPopover>
|
|
|
|
<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'} />}
|
|
onClick={handleImportBtnClick}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'file-export-16'} iconSize={'16'} />}
|
|
text={<T id={'export'} />}
|
|
onClick={handleExportBtnClick}
|
|
/>
|
|
<NavbarDivider />
|
|
<DashboardRowsHeightButton
|
|
initialValue={creditNoteTableSize}
|
|
onChange={handleTableRowSizeChange}
|
|
/>
|
|
<NavbarDivider />
|
|
</NavbarGroup>
|
|
<NavbarGroup align={Alignment.RIGHT}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="refresh-16" iconSize={14} />}
|
|
onClick={handleRefreshBtnClick}
|
|
/>
|
|
</NavbarGroup>
|
|
</DashboardActionsBar>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withCreditNotesActions,
|
|
withSettingsActions,
|
|
withCreditNotes(({ creditNoteTableState }) => ({
|
|
creditNoteFilterRoles: creditNoteTableState.filterRoles,
|
|
})),
|
|
withSettings(({ creditNoteSettings }) => ({
|
|
creditNoteTableSize: creditNoteSettings?.tableSize,
|
|
})),
|
|
withDialogActions,
|
|
)(CreditNotesActionsBar);
|