mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 15:50:32 +00:00
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
import React, { useCallback } from 'react';
|
|
import classNames from 'classnames';
|
|
import { FormGroup, Classes, Intent } from '@blueprintjs/core';
|
|
|
|
import PaymentReceiveListField from 'components/PaymentReceiveListField';
|
|
import { CellType } from 'common';
|
|
function PaymentReceiveListFieldCell({
|
|
column: { id },
|
|
row: { index },
|
|
cell: { value: initialValue },
|
|
payload: { invoices, updateData, errors },
|
|
}) {
|
|
const handleInvoicesSelected = useCallback(
|
|
(_item) => {
|
|
updateData(index, id, _item.id);
|
|
},
|
|
[updateData, index, id],
|
|
);
|
|
|
|
const error = errors?.[index]?.[id];
|
|
|
|
return (
|
|
<FormGroup
|
|
intent={error ? Intent.DANGER : null}
|
|
className={classNames('form-group--selcet-list', Classes.FILL)}
|
|
>
|
|
<PaymentReceiveListField
|
|
invoices={invoices}
|
|
onInvoiceSelected={handleInvoicesSelected}
|
|
selectedInvoiceId={initialValue}
|
|
/>
|
|
</FormGroup>
|
|
);
|
|
}
|
|
|
|
PaymentReceiveListFieldCell.cellType = CellType.Field;
|
|
|
|
export default PaymentReceiveListFieldCell;
|