mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
86 lines
2.1 KiB
TypeScript
86 lines
2.1 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
import {
|
|
Button,
|
|
NavbarGroup,
|
|
Classes,
|
|
NavbarDivider,
|
|
Intent,
|
|
} from '@blueprintjs/core';
|
|
|
|
import { useItemDetailDrawerContext } from './ItemDetailDrawerProvider';
|
|
import { ItemAction, AbilitySubject } from '@/constants/abilityOption';
|
|
|
|
import withAlertsActions from '@/containers/Alert/withAlertActions';
|
|
import withDrawerActions from '@/containers/Drawer/withDrawerActions';
|
|
|
|
import {
|
|
DashboardActionsBar,
|
|
Icon,
|
|
FormattedMessage as T,
|
|
Can,
|
|
} from '@/components';
|
|
import { ItemDetailActionsMoreBtn } from './ItemDetailActionsMoreBtn';
|
|
|
|
import { compose } from '@/utils';
|
|
import { DRAWERS } from '@/constants/drawers';
|
|
|
|
/**
|
|
* Item action-bar of readonly details drawer.
|
|
*/
|
|
function ItemDetailActionsBar({
|
|
// #withAlertsActions
|
|
openAlert,
|
|
|
|
// #withDrawerActions
|
|
closeDrawer,
|
|
}) {
|
|
// Item readonly drawer context.
|
|
const { itemId } = useItemDetailDrawerContext();
|
|
|
|
const history = useHistory();
|
|
|
|
// Handle edit item.
|
|
const handleEditItem = () => {
|
|
history.push(`/items/${itemId}/edit`);
|
|
closeDrawer(DRAWERS.ITEM_DETAILS);
|
|
};
|
|
|
|
// Handle delete item.
|
|
const handleDeleteItem = () => {
|
|
openAlert('item-delete', { itemId });
|
|
};
|
|
|
|
return (
|
|
<DashboardActionsBar>
|
|
<NavbarGroup>
|
|
<Can I={ItemAction.Edit} a={AbilitySubject.Item}>
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon="pen-18" />}
|
|
text={<T id={'edit_item'} />}
|
|
onClick={handleEditItem}
|
|
/>
|
|
</Can>
|
|
<Can I={ItemAction.Delete} a={AbilitySubject.Item}>
|
|
<NavbarDivider />
|
|
<Button
|
|
className={Classes.MINIMAL}
|
|
icon={<Icon icon={'trash-16'} iconSize={16} />}
|
|
text={<T id={'delete'} />}
|
|
intent={Intent.DANGER}
|
|
onClick={handleDeleteItem}
|
|
/>
|
|
</Can>
|
|
<ItemDetailActionsMoreBtn />
|
|
</NavbarGroup>
|
|
</DashboardActionsBar>
|
|
);
|
|
}
|
|
|
|
export default compose(
|
|
withDrawerActions,
|
|
withAlertsActions,
|
|
)(ItemDetailActionsBar);
|