import { useRecoilValue } from 'recoil'; import { peopleJobTitleFamilyState } from '@/people/states/peopleJobTitleFamilyState'; import { EditableCellText } from '@/ui/table/editable-cell/types/EditableCellText'; import { useCurrentRowEntityId } from '@/ui/table/hooks/useCurrentEntityId'; import { useUpdateOnePersonMutation } from '~/generated/graphql'; export function EditablePeopleJobTitleCell() { const currentRowEntityId = useCurrentRowEntityId(); const [updatePerson] = useUpdateOnePersonMutation(); const jobTitle = useRecoilValue( peopleJobTitleFamilyState(currentRowEntityId ?? ''), ); return ( updatePerson({ variables: { where: { id: currentRowEntityId, }, data: { jobTitle: newText, }, }, }) } /> ); }