Closes https://github.com/twentyhq/core-team-issues/issues/271 This PR - Removes the feature flag IS_COMMAND_MENU_V2_ENABLED - Removes all old Right drawer components - Removes the Action menu bar - Removes unused Copilot page
145 lines
4.3 KiB
TypeScript
145 lines
4.3 KiB
TypeScript
import { useTheme } from '@emotion/react';
|
|
import styled from '@emotion/styled';
|
|
import {
|
|
Checkbox,
|
|
CheckboxShape,
|
|
IconCalendar,
|
|
OverflowingTextWithTooltip,
|
|
} from 'twenty-ui';
|
|
|
|
import { ActivityTargetsInlineCell } from '@/activities/inline-cell/components/ActivityTargetsInlineCell';
|
|
import { getActivitySummary } from '@/activities/utils/getActivitySummary';
|
|
import { beautifyExactDate, hasDatePassed } from '~/utils/date-utils';
|
|
|
|
import { ActivityRow } from '@/activities/components/ActivityRow';
|
|
import { Task } from '@/activities/types/Task';
|
|
import { useCommandMenu } from '@/command-menu/hooks/useCommandMenu';
|
|
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
|
|
import { useFieldContext } from '@/object-record/hooks/useFieldContext';
|
|
import { useCompleteTask } from '../hooks/useCompleteTask';
|
|
|
|
const StyledTaskBody = styled.div`
|
|
color: ${({ theme }) => theme.font.color.tertiary};
|
|
display: flex;
|
|
max-width: calc(80% - ${({ theme }) => theme.spacing(2)});
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
padding-bottom: ${({ theme }) => theme.spacing(0.25)};
|
|
`;
|
|
|
|
const StyledTaskTitle = styled.div<{
|
|
completed: boolean;
|
|
}>`
|
|
color: ${({ theme }) => theme.font.color.primary};
|
|
font-weight: ${({ theme }) => theme.font.weight.medium};
|
|
padding: 0 ${({ theme }) => theme.spacing(2)};
|
|
padding-bottom: ${({ theme }) => theme.spacing(0.25)};
|
|
text-decoration: ${({ completed }) => (completed ? 'line-through' : 'none')};
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
align-items: center;
|
|
`;
|
|
|
|
const StyledDueDate = styled.div<{
|
|
isPast: boolean;
|
|
}>`
|
|
align-items: center;
|
|
color: ${({ theme, isPast }) =>
|
|
isPast ? theme.font.color.danger : theme.font.color.secondary};
|
|
display: flex;
|
|
gap: ${({ theme }) => theme.spacing(1)};
|
|
padding-left: ${({ theme }) => theme.spacing(1)};
|
|
white-space: nowrap;
|
|
`;
|
|
|
|
const StyledRightSideContainer = styled.div`
|
|
align-items: center;
|
|
display: inline-flex;
|
|
max-width: 50%;
|
|
`;
|
|
|
|
const StyledPlaceholder = styled.div`
|
|
color: ${({ theme }) => theme.font.color.light};
|
|
`;
|
|
|
|
const StyledLeftSideContainer = styled.div`
|
|
align-items: center;
|
|
display: inline-flex;
|
|
display: flex;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
`;
|
|
|
|
const StyledCheckboxContainer = styled.div`
|
|
display: flex;
|
|
`;
|
|
|
|
export const TaskRow = ({ task }: { task: Task }) => {
|
|
const theme = useTheme();
|
|
const { openRecordInCommandMenu } = useCommandMenu();
|
|
|
|
const body = getActivitySummary(task?.bodyV2?.blocknote ?? null);
|
|
|
|
const { completeTask } = useCompleteTask(task);
|
|
|
|
const { FieldContextProvider: TaskTargetsContextProvider } = useFieldContext({
|
|
objectNameSingular: CoreObjectNameSingular.Task,
|
|
objectRecordId: task.id,
|
|
fieldMetadataName: 'taskTargets',
|
|
fieldPosition: 0,
|
|
});
|
|
|
|
return (
|
|
<ActivityRow
|
|
onClick={() => {
|
|
openRecordInCommandMenu({
|
|
recordId: task.id,
|
|
objectNameSingular: CoreObjectNameSingular.Task,
|
|
});
|
|
}}
|
|
>
|
|
<StyledLeftSideContainer>
|
|
<StyledCheckboxContainer
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
<Checkbox
|
|
checked={task.status === 'DONE'}
|
|
shape={CheckboxShape.Rounded}
|
|
onCheckedChange={completeTask}
|
|
/>
|
|
</StyledCheckboxContainer>
|
|
<StyledTaskTitle completed={task.status === 'DONE'}>
|
|
{task.title || <StyledPlaceholder>Task title</StyledPlaceholder>}
|
|
</StyledTaskTitle>
|
|
<StyledTaskBody>
|
|
<OverflowingTextWithTooltip text={body} />
|
|
</StyledTaskBody>
|
|
</StyledLeftSideContainer>
|
|
<StyledRightSideContainer>
|
|
{task.dueAt && (
|
|
<StyledDueDate
|
|
isPast={hasDatePassed(task.dueAt) && task.status === 'TODO'}
|
|
>
|
|
<IconCalendar size={theme.icon.size.md} />
|
|
{beautifyExactDate(task.dueAt)}
|
|
</StyledDueDate>
|
|
)}
|
|
{TaskTargetsContextProvider && (
|
|
<TaskTargetsContextProvider>
|
|
<ActivityTargetsInlineCell
|
|
activityObjectNameSingular={CoreObjectNameSingular.Task}
|
|
activity={task}
|
|
showLabel={false}
|
|
maxWidth={200}
|
|
/>
|
|
</TaskTargetsContextProvider>
|
|
)}
|
|
</StyledRightSideContainer>
|
|
</ActivityRow>
|
|
);
|
|
};
|