* 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>
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
|
|
import { companyEmployeesFamilyState } from '@/companies/states/companyEmployeesFamilyState';
|
|
import { EditableCellText } from '@/ui/table/editable-cell/types/EditableCellText';
|
|
import { useCurrentRowEntityId } from '@/ui/table/hooks/useCurrentEntityId';
|
|
import { useUpdateOneCompanyMutation } from '~/generated/graphql';
|
|
|
|
export function EditableCompanyEmployeesCell() {
|
|
const currentRowEntityId = useCurrentRowEntityId();
|
|
|
|
const [updateCompany] = useUpdateOneCompanyMutation();
|
|
|
|
const employees = useRecoilValue(
|
|
companyEmployeesFamilyState(currentRowEntityId ?? ''),
|
|
);
|
|
|
|
const [internalValue, setInternalValue] = useState(employees ?? '');
|
|
|
|
useEffect(() => {
|
|
setInternalValue(employees ?? '');
|
|
}, [employees]);
|
|
|
|
return (
|
|
// TODO: Create an EditableCellNumber component
|
|
<EditableCellText
|
|
value={internalValue}
|
|
onChange={setInternalValue}
|
|
onSubmit={() =>
|
|
updateCompany({
|
|
variables: {
|
|
where: {
|
|
id: currentRowEntityId,
|
|
},
|
|
data: {
|
|
employees: parseInt(internalValue),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
onCancel={() => setInternalValue(employees ?? '')}
|
|
/>
|
|
);
|
|
}
|