closes - #5755 --------- Co-authored-by: martmull <martmull@hotmail.fr> Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com> Co-authored-by: Charles Bochet <charles@twenty.com>
86 lines
2.6 KiB
TypeScript
86 lines
2.6 KiB
TypeScript
import { useState } from 'react';
|
|
import { useRecoilState } from 'recoil';
|
|
import { IconFolder } from 'twenty-ui';
|
|
|
|
import { CurrentWorkspaceMemberFavorites } from '@/favorites/components/CurrentWorkspaceMemberFavorites';
|
|
import { FavoriteFolderHotkeyScope } from '@/favorites/constants/FavoriteFolderRightIconDropdownHotkeyScope';
|
|
import { useCreateFavoriteFolder } from '@/favorites/hooks/useCreateFavoriteFolder';
|
|
import { useFavoritesByFolder } from '@/favorites/hooks/useFavoritesByFolder';
|
|
import { isFavoriteFolderCreatingState } from '@/favorites/states/isFavoriteFolderCreatingState';
|
|
import { NavigationDrawerInput } from '@/ui/navigation/navigation-drawer/components/NavigationDrawerInput';
|
|
|
|
type FavoriteFoldersProps = {
|
|
isNavigationSectionOpen: boolean;
|
|
};
|
|
|
|
export const FavoriteFolders = ({
|
|
isNavigationSectionOpen,
|
|
}: FavoriteFoldersProps) => {
|
|
const [newFolderName, setNewFolderName] = useState('');
|
|
|
|
const favoritesByFolder = useFavoritesByFolder();
|
|
const createFavoriteFolder = useCreateFavoriteFolder();
|
|
|
|
const [isFavoriteFolderCreating, setIsFavoriteFolderCreating] =
|
|
useRecoilState(isFavoriteFolderCreatingState);
|
|
|
|
const handleFavoriteFolderNameChange = (value: string) => {
|
|
setNewFolderName(value);
|
|
};
|
|
|
|
const handleSubmitFavoriteFolderCreation = async (value: string) => {
|
|
if (value === '') return;
|
|
|
|
setIsFavoriteFolderCreating(false);
|
|
setNewFolderName('');
|
|
await createFavoriteFolder(value);
|
|
return true;
|
|
};
|
|
|
|
const handleClickOutside = async (
|
|
event: MouseEvent | TouchEvent,
|
|
value: string,
|
|
) => {
|
|
if (!value) {
|
|
setIsFavoriteFolderCreating(false);
|
|
return;
|
|
}
|
|
|
|
setIsFavoriteFolderCreating(false);
|
|
setNewFolderName('');
|
|
await createFavoriteFolder(value);
|
|
};
|
|
|
|
const handleCancelFavoriteFolderCreation = () => {
|
|
setNewFolderName('');
|
|
setIsFavoriteFolderCreating(false);
|
|
};
|
|
|
|
if (!isNavigationSectionOpen) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{isFavoriteFolderCreating && (
|
|
<NavigationDrawerInput
|
|
Icon={IconFolder}
|
|
value={newFolderName}
|
|
onChange={handleFavoriteFolderNameChange}
|
|
onSubmit={handleSubmitFavoriteFolderCreation}
|
|
onCancel={handleCancelFavoriteFolderCreation}
|
|
onClickOutside={handleClickOutside}
|
|
hotkeyScope={FavoriteFolderHotkeyScope.FavoriteFolderNavigationInput}
|
|
/>
|
|
)}
|
|
{favoritesByFolder.map((folder) => (
|
|
<CurrentWorkspaceMemberFavorites
|
|
key={folder.folderId}
|
|
folder={folder}
|
|
isGroup={favoritesByFolder.length > 1}
|
|
/>
|
|
))}
|
|
</>
|
|
);
|
|
};
|