mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 20:00:33 +00:00
119 lines
3.0 KiB
TypeScript
119 lines
3.0 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { MenuItem, Intent } from '@blueprintjs/core';
|
|
|
|
import { Icon, Choose, T, TextStatus } from '@/components';
|
|
|
|
import { RESOURCES_TYPES } from '@/constants/resourcesTypes';
|
|
import withDrawerActions from '@/containers/Drawer/withDrawerActions';
|
|
import { AbilitySubject, CreditNoteAction } from '@/constants/abilityOption';
|
|
import { DRAWERS } from '@/constants/drawers';
|
|
|
|
/**
|
|
* Credit note universal search item select action.
|
|
*/
|
|
function CreditNoteUniversalSearchSelectComponent({
|
|
// #ownProps
|
|
resourceType,
|
|
resourceId,
|
|
onAction,
|
|
|
|
// #withDrawerActions
|
|
openDrawer,
|
|
}) {
|
|
if (resourceType === RESOURCES_TYPES.CREDIT_NOTE) {
|
|
openDrawer(DRAWERS.CREDIT_NOTE_DETAILS, { creditNoteId: resourceId });
|
|
onAction && onAction();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
export const CreditNoteUniversalSearchSelect = withDrawerActions(
|
|
CreditNoteUniversalSearchSelectComponent,
|
|
);
|
|
|
|
/**
|
|
* Status accessor.
|
|
*/
|
|
function CreditNoteUniversalSearchStatus({ receipt }) {
|
|
return (
|
|
<Choose>
|
|
<Choose.When condition={receipt.is_closed}>
|
|
<TextStatus intent={Intent.SUCCESS}>
|
|
<T id={'closed'} />
|
|
</TextStatus>
|
|
</Choose.When>
|
|
|
|
<Choose.When condition={receipt.is_open}>
|
|
<TextStatus intent={Intent.WARNING}>
|
|
<T id={'open'} />
|
|
</TextStatus>
|
|
</Choose.When>
|
|
|
|
<Choose.Otherwise>
|
|
<TextStatus intent={Intent.NONE}>
|
|
<T id={'draft'} />
|
|
</TextStatus>
|
|
</Choose.Otherwise>
|
|
</Choose>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Credit note universal search item.
|
|
*/
|
|
export function CreditNoteUniversalSearchItem(
|
|
item,
|
|
{ handleClick, modifiers, query },
|
|
) {
|
|
return (
|
|
<MenuItem
|
|
active={modifiers.active}
|
|
text={
|
|
<div>
|
|
<div>{item.text}</div>
|
|
<span class="bp4-text-muted">
|
|
{item.reference.credit_note_number}{' '}
|
|
<Icon icon={'caret-right-16'} iconSize={16} />
|
|
{item.reference.formatted_credit_note_date}
|
|
</span>
|
|
</div>
|
|
}
|
|
label={
|
|
<>
|
|
<div class="amount">${item.reference.amount}</div>
|
|
<CreditNoteUniversalSearchStatus receipt={item.reference} />
|
|
</>
|
|
}
|
|
onClick={handleClick}
|
|
className={'universal-search__item--receipt'}
|
|
/>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Transformes receipt resource item to search item.
|
|
*/
|
|
const transformReceiptsToSearch = (creditNote) => ({
|
|
id: creditNote.id,
|
|
text: creditNote.customer.display_name,
|
|
label: creditNote.formatted_amount,
|
|
reference: creditNote,
|
|
});
|
|
|
|
/**
|
|
* Credit note universal search bind configuration.
|
|
*/
|
|
export const universalSearchCreditNoteBind = () => ({
|
|
resourceType: RESOURCES_TYPES.CREDIT_NOTE,
|
|
optionItemLabel: intl.get('credit_note.label'),
|
|
selectItemAction: CreditNoteUniversalSearchSelect,
|
|
itemRenderer: CreditNoteUniversalSearchItem,
|
|
itemSelect: transformReceiptsToSearch,
|
|
permission: {
|
|
ability: CreditNoteAction.View,
|
|
subject: AbilitySubject.CreditNote,
|
|
},
|
|
});
|