Closes https://github.com/twentyhq/core-team-issues/issues/584 This PR: - Migrates the component state `activeTabIdComponentState` from the deprecated V1 version to V2. - Allows the active tab state to be preserved during navigation inside the side panel and reset when the side panel is closed. - Allows the active tab state to be preserved when we open a record in full page from the side panel https://github.com/user-attachments/assets/f2329d7a-ea15-4bd8-81dc-e98ce11edbd0 https://github.com/user-attachments/assets/474bffd5-29e0-40ba-97f4-fa5e9be34dc2
118 lines
3.8 KiB
TypeScript
118 lines
3.8 KiB
TypeScript
import styled from '@emotion/styled';
|
|
import {
|
|
AnimatedPlaceholder,
|
|
AnimatedPlaceholderEmptyContainer,
|
|
AnimatedPlaceholderEmptySubTitle,
|
|
AnimatedPlaceholderEmptyTextContainer,
|
|
AnimatedPlaceholderEmptyTitle,
|
|
Button,
|
|
EMPTY_PLACEHOLDER_TRANSITION_PROPS,
|
|
IconPlus,
|
|
} from 'twenty-ui';
|
|
|
|
import { SkeletonLoader } from '@/activities/components/SkeletonLoader';
|
|
import { useOpenCreateActivityDrawer } from '@/activities/hooks/useOpenCreateActivityDrawer';
|
|
import { useTasks } from '@/activities/tasks/hooks/useTasks';
|
|
import { ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
|
|
import { Task } from '@/activities/types/Task';
|
|
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
|
|
import { useHasObjectReadOnlyPermission } from '@/settings/roles/hooks/useHasObjectReadOnlyPermission';
|
|
import { activeTabIdComponentState } from '@/ui/layout/tab/states/activeTabIdComponentState';
|
|
import { useRecoilComponentValueV2 } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValueV2';
|
|
import groupBy from 'lodash.groupby';
|
|
import { AddTaskButton } from './AddTaskButton';
|
|
import { TaskList } from './TaskList';
|
|
|
|
const StyledContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
`;
|
|
|
|
type TaskGroupsProps = {
|
|
filterDropdownId?: string;
|
|
targetableObjects?: ActivityTargetableObject[];
|
|
};
|
|
|
|
export const TaskGroups = ({ targetableObjects }: TaskGroupsProps) => {
|
|
const { tasks, tasksLoading } = useTasks({
|
|
targetableObjects: targetableObjects ?? [],
|
|
});
|
|
|
|
const hasObjectReadOnlyPermission = useHasObjectReadOnlyPermission();
|
|
|
|
const openCreateActivity = useOpenCreateActivityDrawer({
|
|
activityObjectNameSingular: CoreObjectNameSingular.Task,
|
|
});
|
|
|
|
const activeTabId = useRecoilComponentValueV2(activeTabIdComponentState);
|
|
|
|
const isLoading =
|
|
(activeTabId !== 'done' && tasksLoading) ||
|
|
(activeTabId === 'done' && tasksLoading);
|
|
|
|
const isTasksEmpty =
|
|
(activeTabId !== 'done' && tasks?.length === 0) ||
|
|
(activeTabId === 'done' && tasks?.length === 0);
|
|
|
|
if (isLoading && isTasksEmpty) {
|
|
return <SkeletonLoader />;
|
|
}
|
|
|
|
if (isTasksEmpty) {
|
|
return (
|
|
<AnimatedPlaceholderEmptyContainer
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
{...EMPTY_PLACEHOLDER_TRANSITION_PROPS}
|
|
>
|
|
<AnimatedPlaceholder type="noTask" />
|
|
<AnimatedPlaceholderEmptyTextContainer>
|
|
<AnimatedPlaceholderEmptyTitle>
|
|
Mission accomplished!
|
|
</AnimatedPlaceholderEmptyTitle>
|
|
<AnimatedPlaceholderEmptySubTitle>
|
|
All tasks addressed. Maintain the momentum.
|
|
</AnimatedPlaceholderEmptySubTitle>
|
|
</AnimatedPlaceholderEmptyTextContainer>
|
|
{!hasObjectReadOnlyPermission && (
|
|
<Button
|
|
Icon={IconPlus}
|
|
title="New task"
|
|
variant={'secondary'}
|
|
onClick={() =>
|
|
openCreateActivity({
|
|
targetableObjects: targetableObjects ?? [],
|
|
})
|
|
}
|
|
/>
|
|
)}
|
|
</AnimatedPlaceholderEmptyContainer>
|
|
);
|
|
}
|
|
|
|
const sortedTasksByStatus = Object.entries(
|
|
groupBy(tasks, ({ status }) => status),
|
|
).sort(([statusA], [statusB]) => statusB.localeCompare(statusA));
|
|
|
|
const hasTodoStatus = sortedTasksByStatus.some(
|
|
([status]) => status === 'TODO',
|
|
);
|
|
|
|
return (
|
|
<StyledContainer>
|
|
{sortedTasksByStatus.map(([status, tasksByStatus]: [string, Task[]]) => (
|
|
<TaskList
|
|
key={status}
|
|
title={status}
|
|
tasks={tasksByStatus}
|
|
button={
|
|
(status === 'TODO' || !hasTodoStatus) && (
|
|
<AddTaskButton activityTargetableObjects={targetableObjects} />
|
|
)
|
|
}
|
|
/>
|
|
))}
|
|
</StyledContainer>
|
|
);
|
|
};
|