mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
189 lines
4.3 KiB
JavaScript
189 lines
4.3 KiB
JavaScript
import React from 'react';
|
|
import {
|
|
Intent,
|
|
Button,
|
|
Classes,
|
|
Popover,
|
|
Tooltip,
|
|
Position,
|
|
Tag,
|
|
MenuItem,
|
|
Menu,
|
|
MenuDivider,
|
|
} from '@blueprintjs/core';
|
|
import moment from 'moment';
|
|
import { FormattedMessage as T } from 'components';
|
|
import { Money, Icon, If } from 'components';
|
|
import intl from 'react-intl-universal';
|
|
import { safeCallback } from 'utils';
|
|
|
|
/**
|
|
* Description accessor.
|
|
*/
|
|
export function DescriptionAccessor(row) {
|
|
return (
|
|
<If condition={row.description}>
|
|
<Tooltip
|
|
className={Classes.TOOLTIP_INDICATOR}
|
|
content={row.description}
|
|
position={Position.TOP}
|
|
hoverOpenDelay={250}
|
|
>
|
|
<Icon icon={'file-alt'} iconSize={16} />
|
|
</Tooltip>
|
|
</If>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Actions menu.
|
|
*/
|
|
export function ActionsMenu({
|
|
row: { original },
|
|
payload: { onPublish, onEdit, onDelete, onViewDetails },
|
|
}) {
|
|
return (
|
|
<Menu>
|
|
<MenuItem
|
|
icon={<Icon icon="reader-18" />}
|
|
text={intl.get('view_details')}
|
|
onClick={safeCallback(onViewDetails, original)}
|
|
/>
|
|
<MenuDivider />
|
|
<If condition={!original.is_published}>
|
|
<MenuItem
|
|
icon={<Icon icon={'arrow-to-top'} size={16} />}
|
|
text={intl.get('publish_expense')}
|
|
onClick={safeCallback(onPublish, original)}
|
|
/>
|
|
</If>
|
|
<MenuItem
|
|
icon={<Icon icon="pen-18" />}
|
|
text={intl.get('edit_expense')}
|
|
onClick={safeCallback(onEdit, original)}
|
|
/>
|
|
<MenuItem
|
|
icon={<Icon icon="trash-16" iconSize={16} />}
|
|
text={intl.get('delete_expense')}
|
|
intent={Intent.DANGER}
|
|
onClick={safeCallback(onDelete, original)}
|
|
/>
|
|
</Menu>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Actions cell.
|
|
*/
|
|
export function ActionsCell(props) {
|
|
return (
|
|
<Popover
|
|
content={<ActionsMenu {...props} />}
|
|
position={Position.RIGHT_BOTTOM}
|
|
>
|
|
<Button icon={<Icon icon="more-h-16" iconSize={16} />} />
|
|
</Popover>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Total amount accessor.
|
|
*/
|
|
export function TotalAmountAccessor(row) {
|
|
return <Money amount={row.total_amount} currency={row.currency_code} />;
|
|
}
|
|
|
|
/**
|
|
* Publish accessor.
|
|
*/
|
|
export function PublishAccessor(row) {
|
|
return row.is_published ? (
|
|
<Tag minimal={true}>
|
|
<T id={'published'} />
|
|
</Tag>
|
|
) : (
|
|
<Tag minimal={true} intent={Intent.WARNING}>
|
|
<T id={'draft'} />
|
|
</Tag>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Expense account accessor.
|
|
*/
|
|
export function ExpenseAccountAccessor(expense) {
|
|
if (expense.categories.length === 1) {
|
|
return expense.categories[0].expense_account.name;
|
|
} else if (expense.categories.length > 1) {
|
|
const mutliCategories = expense.categories.map((category) => (
|
|
<div>
|
|
- {category.expense_account.name} ${category.amount}
|
|
</div>
|
|
));
|
|
return (
|
|
<Tooltip content={mutliCategories}>{'- Multi Categories -'}</Tooltip>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Retrieve the expenses table columns.
|
|
*/
|
|
export function useExpensesTableColumns() {
|
|
return React.useMemo(
|
|
() => [
|
|
{
|
|
id: 'payment_date',
|
|
Header: intl.get('payment_date'),
|
|
accessor: (r) => moment(r.payment_date).format('YYYY MMM DD'),
|
|
width: 140,
|
|
className: 'payment_date',
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'amount',
|
|
Header: intl.get('full_amount'),
|
|
accessor: TotalAmountAccessor,
|
|
className: 'amount',
|
|
width: 150,
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'payment_account',
|
|
Header: intl.get('payment_account'),
|
|
accessor: 'payment_account.name',
|
|
className: 'payment_account',
|
|
width: 150,
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'expense_account',
|
|
Header: intl.get('expense_account'),
|
|
accessor: ExpenseAccountAccessor,
|
|
width: 160,
|
|
className: 'expense_account',
|
|
disableSortBy: true,
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'published',
|
|
Header: intl.get('publish'),
|
|
accessor: PublishAccessor,
|
|
width: 100,
|
|
className: 'publish',
|
|
clickable: true,
|
|
},
|
|
{
|
|
id: 'description',
|
|
Header: intl.get('description'),
|
|
accessor: DescriptionAccessor,
|
|
width: 150,
|
|
className: 'description',
|
|
disableSortBy: true,
|
|
clickable: true,
|
|
},
|
|
],
|
|
[],
|
|
);
|
|
}
|