* - show task tab - tab bar * - add notes tab * - fixed unused style * - add button - fixed company edit note test * - fixed merge & dropdown * - added Tests - refactored directory structure activities - moved Task/Note Pages to corresponding modules - fixed TabList * lint
93 lines
2.8 KiB
TypeScript
93 lines
2.8 KiB
TypeScript
import React from 'react';
|
|
import styled from '@emotion/styled';
|
|
|
|
import { ActivityCreateButton } from '@/activities/components/ActivityCreateButton';
|
|
import { useOpenCreateActivityDrawer } from '@/activities/hooks/useOpenCreateActivityDrawer';
|
|
import { ActivityForDrawer } from '@/activities/types/ActivityForDrawer';
|
|
import { ActivityTargetableEntity } from '@/activities/types/ActivityTargetableEntity';
|
|
import { useIsMobile } from '@/ui/utilities/responsive/hooks/useIsMobile';
|
|
import {
|
|
ActivityType,
|
|
SortOrder,
|
|
useGetActivitiesByTargetsQuery,
|
|
} from '~/generated/graphql';
|
|
|
|
import { TimelineItemsContainer } from './TimelineItemsContainer';
|
|
|
|
const StyledMainContainer = styled.div`
|
|
align-items: flex-start;
|
|
align-self: stretch;
|
|
border-top: ${({ theme }) =>
|
|
useIsMobile() ? `1px solid ${theme.border.color.medium}` : 'none'};
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
`;
|
|
|
|
const StyledTimelineEmptyContainer = styled.div`
|
|
align-items: center;
|
|
align-self: stretch;
|
|
display: flex;
|
|
flex: 1 0 0;
|
|
flex-direction: column;
|
|
gap: ${({ theme }) => theme.spacing(2)};
|
|
justify-content: center;
|
|
`;
|
|
|
|
const StyledEmptyTimelineTitle = styled.div`
|
|
color: ${({ theme }) => theme.font.color.secondary};
|
|
font-size: ${({ theme }) => theme.font.size.xxl};
|
|
font-weight: ${({ theme }) => theme.font.weight.semiBold};
|
|
line-height: ${({ theme }) => theme.text.lineHeight.md};
|
|
`;
|
|
|
|
const StyledEmptyTimelineSubTitle = styled.div`
|
|
color: ${({ theme }) => theme.font.color.extraLight};
|
|
font-size: ${({ theme }) => theme.font.size.xxl};
|
|
font-weight: ${({ theme }) => theme.font.weight.semiBold};
|
|
line-height: ${({ theme }) => theme.text.lineHeight.md};
|
|
margin-bottom: ${({ theme }) => theme.spacing(2)};
|
|
`;
|
|
|
|
export function Timeline({ entity }: { entity: ActivityTargetableEntity }) {
|
|
const { data: queryResult, loading } = useGetActivitiesByTargetsQuery({
|
|
variables: {
|
|
activityTargetIds: [entity.id],
|
|
orderBy: [
|
|
{
|
|
createdAt: SortOrder.Desc,
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
const openCreateActivity = useOpenCreateActivityDrawer();
|
|
|
|
const activities: ActivityForDrawer[] = queryResult?.findManyActivities ?? [];
|
|
|
|
if (loading) {
|
|
return <></>;
|
|
}
|
|
|
|
if (!activities.length) {
|
|
return (
|
|
<StyledTimelineEmptyContainer>
|
|
<StyledEmptyTimelineTitle>No activity yet</StyledEmptyTimelineTitle>
|
|
<StyledEmptyTimelineSubTitle>Create one:</StyledEmptyTimelineSubTitle>
|
|
<ActivityCreateButton
|
|
onNoteClick={() => openCreateActivity(ActivityType.Note, [entity])}
|
|
onTaskClick={() => openCreateActivity(ActivityType.Task, [entity])}
|
|
/>
|
|
</StyledTimelineEmptyContainer>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledMainContainer>
|
|
<TimelineItemsContainer activities={activities} />
|
|
</StyledMainContainer>
|
|
);
|
|
}
|