6b1548ebbe
Closes https://github.com/twentyhq/twenty/issues/5656 https://github.com/twentyhq/twenty/assets/22936103/3e4beea2-9aa9-4015-bb99-ee22adb53b63
95 lines
2.7 KiB
TypeScript
95 lines
2.7 KiB
TypeScript
import styled from '@emotion/styled';
|
|
import { IconPlus } from 'twenty-ui';
|
|
|
|
import { SkeletonLoader } from '@/activities/components/SkeletonLoader';
|
|
import { useOpenCreateActivityDrawer } from '@/activities/hooks/useOpenCreateActivityDrawer';
|
|
import { NoteList } from '@/activities/notes/components/NoteList';
|
|
import { useNotes } from '@/activities/notes/hooks/useNotes';
|
|
import { ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
|
|
import { Button } from '@/ui/input/button/components/Button';
|
|
import AnimatedPlaceholder from '@/ui/layout/animated-placeholder/components/AnimatedPlaceholder';
|
|
import {
|
|
AnimatedPlaceholderEmptyContainer,
|
|
AnimatedPlaceholderEmptySubTitle,
|
|
AnimatedPlaceholderEmptyTextContainer,
|
|
AnimatedPlaceholderEmptyTitle,
|
|
EMPTY_PLACEHOLDER_TRANSITION_PROPS,
|
|
} from '@/ui/layout/animated-placeholder/components/EmptyPlaceholderStyled';
|
|
|
|
const StyledNotesContainer = styled.div`
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
overflow: auto;
|
|
`;
|
|
|
|
export const Notes = ({
|
|
targetableObject,
|
|
}: {
|
|
targetableObject: ActivityTargetableObject;
|
|
}) => {
|
|
const { notes, loading } = useNotes(targetableObject);
|
|
|
|
const openCreateActivity = useOpenCreateActivityDrawer();
|
|
|
|
const isNotesEmpty = !notes || notes.length === 0;
|
|
|
|
if (loading && isNotesEmpty) {
|
|
return <SkeletonLoader />;
|
|
}
|
|
|
|
if (isNotesEmpty) {
|
|
return (
|
|
<AnimatedPlaceholderEmptyContainer
|
|
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
{...EMPTY_PLACEHOLDER_TRANSITION_PROPS}
|
|
>
|
|
<AnimatedPlaceholder type="noNote" />
|
|
<AnimatedPlaceholderEmptyTextContainer>
|
|
<AnimatedPlaceholderEmptyTitle>
|
|
No notes
|
|
</AnimatedPlaceholderEmptyTitle>
|
|
<AnimatedPlaceholderEmptySubTitle>
|
|
There are no associated notes with this record.
|
|
</AnimatedPlaceholderEmptySubTitle>
|
|
</AnimatedPlaceholderEmptyTextContainer>
|
|
<Button
|
|
Icon={IconPlus}
|
|
title="New note"
|
|
variant="secondary"
|
|
onClick={() =>
|
|
openCreateActivity({
|
|
type: 'Note',
|
|
targetableObjects: [targetableObject],
|
|
})
|
|
}
|
|
/>
|
|
</AnimatedPlaceholderEmptyContainer>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<StyledNotesContainer>
|
|
<NoteList
|
|
title="All"
|
|
notes={notes}
|
|
button={
|
|
<Button
|
|
Icon={IconPlus}
|
|
size="small"
|
|
variant="secondary"
|
|
title="Add note"
|
|
onClick={() =>
|
|
openCreateActivity({
|
|
type: 'Note',
|
|
targetableObjects: [targetableObject],
|
|
})
|
|
}
|
|
></Button>
|
|
}
|
|
/>
|
|
</StyledNotesContainer>
|
|
);
|
|
};
|