90 lines
2.2 KiB
TypeScript
90 lines
2.2 KiB
TypeScript
import styled from '@emotion/styled';
|
|
|
|
import { useOpenTimelineRightDrawer } from '@/activities/hooks/useOpenTimelineRightDrawer';
|
|
import { CellCommentChip } from '@/activities/table/components/CellCommentChip';
|
|
import { EditableCellDoubleText } from '@/ui/table/editable-cell/types/EditableCellDoubleText';
|
|
import { CommentableType, Person } from '~/generated/graphql';
|
|
|
|
import { PersonChip } from './PersonChip';
|
|
|
|
type OwnProps = {
|
|
person:
|
|
| Partial<
|
|
Pick<Person, 'id' | 'firstName' | 'lastName' | '_commentThreadCount'>
|
|
>
|
|
| null
|
|
| undefined;
|
|
onChange: (firstName: string, lastName: string) => void;
|
|
onSubmit?: () => void;
|
|
onCancel?: () => void;
|
|
};
|
|
|
|
const NoEditModeContainer = styled.div`
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
`;
|
|
|
|
const RightContainer = styled.div`
|
|
margin-left: ${(props) => props.theme.spacing(1)};
|
|
`;
|
|
|
|
export function EditablePeopleFullName({
|
|
person,
|
|
onChange,
|
|
onSubmit,
|
|
onCancel,
|
|
}: OwnProps) {
|
|
const openCommentRightDrawer = useOpenTimelineRightDrawer();
|
|
|
|
function handleDoubleTextChange(
|
|
firstValue: string,
|
|
secondValue: string,
|
|
): void {
|
|
onChange(firstValue, secondValue);
|
|
}
|
|
|
|
function handleCommentClick(event: React.MouseEvent<HTMLDivElement>) {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
|
|
if (!person) {
|
|
return;
|
|
}
|
|
|
|
openCommentRightDrawer([
|
|
{
|
|
type: CommentableType.Person,
|
|
id: person.id ?? '',
|
|
},
|
|
]);
|
|
}
|
|
|
|
return (
|
|
<EditableCellDoubleText
|
|
firstValue={person?.firstName ?? ''}
|
|
secondValue={person?.lastName ?? ''}
|
|
firstValuePlaceholder="First name"
|
|
secondValuePlaceholder="Last name"
|
|
onChange={handleDoubleTextChange}
|
|
onSubmit={onSubmit}
|
|
onCancel={onCancel}
|
|
nonEditModeContent={
|
|
<NoEditModeContainer>
|
|
<PersonChip
|
|
name={person?.firstName + ' ' + person?.lastName}
|
|
id={person?.id ?? ''}
|
|
/>
|
|
<RightContainer>
|
|
<CellCommentChip
|
|
count={person?._commentThreadCount ?? 0}
|
|
onClick={handleCommentClick}
|
|
/>
|
|
</RightContainer>
|
|
</NoEditModeContainer>
|
|
}
|
|
/>
|
|
);
|
|
}
|