mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import React, { useCallback, useRef } from 'react';
|
|
import classNames from 'classnames';
|
|
import { FormGroup, Classes, Intent } from '@blueprintjs/core';
|
|
import intl from 'react-intl-universal';
|
|
|
|
import ItemsSuggestField from 'components/ItemsSuggestField';
|
|
|
|
import { useCellAutoFocus } from 'hooks';
|
|
|
|
/**
|
|
* Items list cell.
|
|
*/
|
|
export default function ItemsListCell({
|
|
column: { id, filterSellable, filterPurchasable, fieldProps, formGroupProps },
|
|
row: { index },
|
|
cell: { value: initialValue },
|
|
payload: { items, updateData, errors, autoFocus },
|
|
}) {
|
|
const fieldRef = useRef();
|
|
|
|
// Auto-focus the items list input field.
|
|
useCellAutoFocus(fieldRef, autoFocus, id, index);
|
|
|
|
// Handle the item selected.
|
|
const handleItemSelected = 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--select-list', Classes.FILL)}
|
|
{...formGroupProps}
|
|
>
|
|
<ItemsSuggestField
|
|
items={items}
|
|
onItemSelected={handleItemSelected}
|
|
selectedItemId={initialValue}
|
|
sellable={filterSellable}
|
|
purchasable={filterPurchasable}
|
|
inputProps={{
|
|
inputRef: (ref) => (fieldRef.current = ref),
|
|
placeholder: intl.get('enter_an_item'),
|
|
}}
|
|
openOnKeyDown={true}
|
|
blurOnSelectClose={false}
|
|
{...fieldProps}
|
|
/>
|
|
</FormGroup>
|
|
);
|
|
}
|