872ec9e6bb
* feat: no atomic * feat: update front not atomic operations * feat: optional fields for person model & use proper gql type * Fix bug display name * Fix bug update user * Fixed bug avatar URL * Fixed display name on people cell * Fix lint * Fixed storybook display name * Fix storybook requests --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
|
|
import { peopleCityFamilyState } from '@/people/states/peopleCityFamilyState';
|
|
import { EditableCellText } from '@/ui/table/editable-cell/types/EditableCellText';
|
|
import { useCurrentRowEntityId } from '@/ui/table/hooks/useCurrentEntityId';
|
|
import { useUpdateOnePersonMutation } from '~/generated/graphql';
|
|
|
|
export function EditablePeopleCityCell() {
|
|
const currentRowEntityId = useCurrentRowEntityId();
|
|
|
|
const [updatePerson] = useUpdateOnePersonMutation();
|
|
|
|
const city = useRecoilValue(peopleCityFamilyState(currentRowEntityId ?? ''));
|
|
|
|
const [internalValue, setInternalValue] = useState(city ?? '');
|
|
|
|
useEffect(() => {
|
|
setInternalValue(city ?? '');
|
|
}, [city]);
|
|
|
|
return (
|
|
<EditableCellText
|
|
value={internalValue}
|
|
onChange={setInternalValue}
|
|
onSubmit={() =>
|
|
updatePerson({
|
|
variables: {
|
|
where: {
|
|
id: currentRowEntityId,
|
|
},
|
|
data: {
|
|
city: internalValue,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
onCancel={() => setInternalValue(city ?? '')}
|
|
/>
|
|
);
|
|
}
|