c5349291c8
Split from https://github.com/twentyhq/twenty/pull/4518 - Setup `@ui/*` as an internal alias to reference `twenty-ui/src`. - Configures twenty-front to understand the `@ui/*` alias on development mode, so twenty-ui can be hot reloaded. - When building on production mode, twenty-front needs twenty-ui to be built beforehand (which is automatic with the `dependsOn` option). - Configures twenty-front to understand the `@ui/*` alias when launching tests, so there is no need to re-build twenty-ui for tests. --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import { useSetRecoilState } from 'recoil';
|
|
import { IconCheckbox, IconNotes, IconPaperclip } from 'twenty-ui';
|
|
|
|
import { useOpenCreateActivityDrawer } from '@/activities/hooks/useOpenCreateActivityDrawer';
|
|
import { ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
|
|
import { Button } from '@/ui/input/button/components/Button';
|
|
import { ButtonGroup } from '@/ui/input/button/components/ButtonGroup';
|
|
import { TAB_LIST_COMPONENT_ID } from '@/ui/layout/show-page/components/ShowPageRightContainer';
|
|
import { useTabList } from '@/ui/layout/tab/hooks/useTabList';
|
|
|
|
export const TimelineCreateButtonGroup = ({
|
|
targetableObject,
|
|
}: {
|
|
targetableObject: ActivityTargetableObject;
|
|
}) => {
|
|
const { activeTabIdState } = useTabList(TAB_LIST_COMPONENT_ID);
|
|
const setActiveTabId = useSetRecoilState(activeTabIdState);
|
|
|
|
const openCreateActivity = useOpenCreateActivityDrawer();
|
|
|
|
return (
|
|
<ButtonGroup variant={'secondary'}>
|
|
<Button
|
|
Icon={IconNotes}
|
|
title="Note"
|
|
onClick={() =>
|
|
openCreateActivity({
|
|
type: 'Note',
|
|
targetableObjects: [targetableObject],
|
|
})
|
|
}
|
|
/>
|
|
<Button
|
|
Icon={IconCheckbox}
|
|
title="Task"
|
|
onClick={() =>
|
|
openCreateActivity({
|
|
type: 'Task',
|
|
targetableObjects: [targetableObject],
|
|
})
|
|
}
|
|
/>
|
|
<Button
|
|
Icon={IconPaperclip}
|
|
title="File"
|
|
onClick={() => setActiveTabId('files')}
|
|
/>
|
|
</ButtonGroup>
|
|
);
|
|
};
|