mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
192 lines
5.0 KiB
TypeScript
192 lines
5.0 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
import {
|
|
NavbarGroup,
|
|
NavbarDivider,
|
|
Button,
|
|
Classes,
|
|
Intent,
|
|
Switch,
|
|
Alignment,
|
|
} from '@blueprintjs/core';
|
|
import {
|
|
DashboardActionsBar,
|
|
DashboardRowsHeightButton,
|
|
FormattedMessage as T,
|
|
} from '@/components';
|
|
import {
|
|
If,
|
|
Can,
|
|
Icon,
|
|
DashboardActionViewsList,
|
|
AdvancedFilterPopover,
|
|
DashboardFilterButton,
|
|
} from '@/components';
|
|
|
|
import { ItemAction, AbilitySubject } from '@/constants/abilityOption';
|
|
import { useItemsListContext } from './ItemsListProvider';
|
|
import { useRefreshItems } from '@/hooks/query/items';
|
|
|
|
import withItems from './withItems';
|
|
import withItemsActions from './withItemsActions';
|
|
import withAlertActions from '@/containers/Alert/withAlertActions';
|
|
import withSettings from '@/containers/Settings/withSettings';
|
|
import withSettingsActions from '@/containers/Settings/withSettingsActions';
|
|
|
|
import { compose } from '@/utils';
|
|
|
|
/**
|
|
* Items actions bar.
|
|
*/
|
|
function ItemsActionsBar({
|
|
// #withItems
|
|
itemsSelectedRows,
|
|
itemsFilterRoles,
|
|
|
|
// #withItemActions
|
|
setItemsTableState,
|
|
itemsInactiveMode,
|
|
|
|
// #withAlertActions
|
|
openAlert,
|
|
|
|
// #withSettings
|
|
itemsTableSize,
|
|
|
|
// #withSettingsActions
|
|
addSetting,
|
|
}) {
|
|
// Items list context.
|
|
const { itemsViews, fields } = useItemsListContext();
|
|
|
|
// Items refresh action.
|
|
const { refresh } = useRefreshItems();
|
|
|
|
// History context.
|
|
const history = useHistory();
|
|
|
|
// Handle `new item` button click.
|
|
const onClickNewItem = () => {
|
|
history.push('/items/new');
|
|
};
|
|
|
|
// Handle tab changing.
|
|
const handleTabChange = (view) => {
|
|
setItemsTableState({ viewSlug: view ? view.slug : null });
|
|
};
|
|
|
|
// Handle cancel/confirm items bulk.
|
|
const handleBulkDelete = () => {
|
|
openAlert('items-bulk-delete', { itemsIds: itemsSelectedRows });
|
|
};
|
|
|
|
// Handle inactive switch changing.
|
|
const handleInactiveSwitchChange = (event) => {
|
|
const checked = event.target.checked;
|
|
setItemsTableState({ inactiveMode: checked });
|
|
};
|
|
// Handle refresh button click.
|
|
const handleRefreshBtnClick = () => {
|
|
refresh();
|
|
};
|
|
// Handle table row size change.
|
|
const handleTableRowSizeChange = (size) => {
|
|
addSetting('items', 'tableSize', size);
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<DashboardActionViewsList
|
|
resourceName={'items'}
|
|
allMenuItem={true}
|
|
allMenuItemText={<T id={'all_items'} />}
|
|
views={itemsViews}
|
|
onChange={handleTabChange}
|
|
/>
|
|
<NavbarDivider />
|
|
|
|
<Can I={ItemAction.Create} a={AbilitySubject.Item}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="plus" />}
|
|
text={<T id={'new_item'} />}
|
|
onClick={onClickNewItem}
|
|
/>
|
|
</Can>
|
|
<AdvancedFilterPopover
|
|
advancedFilterProps={{
|
|
conditions: itemsFilterRoles,
|
|
defaultFieldKey: 'name',
|
|
fields: fields,
|
|
onFilterChange: (filterConditions) => {
|
|
setItemsTableState({ filterRoles: filterConditions });
|
|
},
|
|
}}
|
|
>
|
|
<DashboardFilterButton conditionsCount={itemsFilterRoles.length} />
|
|
</AdvancedFilterPopover>
|
|
|
|
<NavbarDivider />
|
|
|
|
<If condition={itemsSelectedRows.length}>
|
|
<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="file-import-16" iconSize={16} />}
|
|
text={<T id={'import'} />}
|
|
/>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="file-export-16" iconSize={16} />}
|
|
text={<T id={'export'} />}
|
|
/>
|
|
<NavbarDivider />
|
|
<DashboardRowsHeightButton
|
|
initialValue={itemsTableSize}
|
|
onChange={handleTableRowSizeChange}
|
|
/>
|
|
<NavbarDivider />
|
|
<Can I={ItemAction.Edit} a={AbilitySubject.Item}>
|
|
<Switch
|
|
labelElement={<T id={'inactive'} />}
|
|
defaultChecked={itemsInactiveMode}
|
|
onChange={handleInactiveSwitchChange}
|
|
/>
|
|
</Can>
|
|
</NavbarGroup>
|
|
|
|
<NavbarGroup align={Alignment.RIGHT}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="refresh-16" iconSize={14} />}
|
|
onClick={handleRefreshBtnClick}
|
|
/>
|
|
</NavbarGroup>
|
|
</DashboardActionsBar>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withSettingsActions,
|
|
withItems(({ itemsSelectedRows, itemsTableState }) => ({
|
|
itemsSelectedRows,
|
|
itemsInactiveMode: itemsTableState.inactiveMode,
|
|
itemsFilterRoles: itemsTableState.filterRoles,
|
|
})),
|
|
withSettings(({ itemsSettings }) => ({
|
|
itemsTableSize: itemsSettings.tableSize,
|
|
})),
|
|
withItemsActions,
|
|
withAlertActions,
|
|
)(ItemsActionsBar);
|