* [PersonShow] use fieldDefinition for editable fields * remove unused files * fix company chip display field
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import { SingleEntitySelect } from '@/ui/input/relation-picker/components/SingleEntitySelect';
|
|
import { relationPickerSearchFilterScopedState } from '@/ui/input/relation-picker/states/relationPickerSearchFilterScopedState';
|
|
import { EntityForSelect } from '@/ui/input/relation-picker/types/EntityForSelect';
|
|
import { useRecoilScopedState } from '@/ui/utilities/recoil-scope/hooks/useRecoilScopedState';
|
|
|
|
import { useFilteredSearchCompanyQuery } from '../queries';
|
|
|
|
export type OwnProps = {
|
|
companyId: string | null;
|
|
onSubmit: (newCompanyId: EntityForSelect | null) => void;
|
|
onCancel?: () => void;
|
|
};
|
|
|
|
export function CompanyPicker({ companyId, onSubmit, onCancel }: OwnProps) {
|
|
const [searchFilter] = useRecoilScopedState(
|
|
relationPickerSearchFilterScopedState,
|
|
);
|
|
|
|
const companies = useFilteredSearchCompanyQuery({
|
|
searchFilter,
|
|
selectedIds: companyId ? [companyId] : [],
|
|
});
|
|
|
|
async function handleEntitySelected(
|
|
selectedCompany: EntityForSelect | null | undefined,
|
|
) {
|
|
onSubmit(selectedCompany ?? null);
|
|
}
|
|
|
|
return (
|
|
<SingleEntitySelect
|
|
onEntitySelected={handleEntitySelected}
|
|
onCancel={onCancel}
|
|
entities={{
|
|
loading: companies.loading,
|
|
entitiesToSelect: companies.entitiesToSelect,
|
|
selectedEntity: companies.selectedEntities[0],
|
|
}}
|
|
/>
|
|
);
|
|
}
|