| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- import React, { useCallback } from 'react';
- import { useTranslation } from 'next-i18next';
- import { toastSuccess } from '~/client/util/toastr';
- import { IPageToDeleteWithMeta } from '~/interfaces/page';
- import { OnDeletedFunction } from '~/interfaces/ui';
- import { useSWRxUserBookmarks, useSWRBookmarkInfo } from '~/stores/bookmark';
- import { useSWRxBookmarkFolderAndChild } from '~/stores/bookmark-folder';
- import { useIsReadOnlyUser } from '~/stores/context';
- import { usePageDeleteModal } from '~/stores/modal';
- import { useSWRxCurrentPage } from '~/stores/page';
- import { BookmarkFolderItem } from './BookmarkFolderItem';
- import { BookmarkItem } from './BookmarkItem';
- import styles from './BookmarkFolderTree.module.scss';
- // type DragItemDataType = {
- // bookmarkFolder: BookmarkFolderItems
- // level: number
- // parentFolder: BookmarkFolderItems | null
- // } & IPageHasId
- type Props = {
- isUserHomePage?: boolean,
- userId?: string,
- }
- export const BookmarkFolderTree: React.FC<Props> = (props: Props) => {
- const { isUserHomePage, userId } = props;
- // const acceptedTypes: DragItemType[] = [DRAG_ITEM_TYPE.FOLDER, DRAG_ITEM_TYPE.BOOKMARK];
- const { t } = useTranslation();
- const { data: isReadOnlyUser } = useIsReadOnlyUser();
- const { data: currentPage } = useSWRxCurrentPage();
- const { mutate: mutateBookmarkInfo } = useSWRBookmarkInfo(currentPage?._id);
- const { data: bookmarkFolders, mutate: mutateBookmarkFolders } = useSWRxBookmarkFolderAndChild(userId);
- const { data: userBookmarks, mutate: mutateUserBookmarks } = useSWRxUserBookmarks(userId);
- const { open: openDeleteModal } = usePageDeleteModal();
- const bookmarkFolderTreeMutation = useCallback(() => {
- mutateUserBookmarks();
- mutateBookmarkInfo();
- mutateBookmarkFolders();
- }, [mutateBookmarkFolders, mutateBookmarkInfo, mutateUserBookmarks]);
- const onClickDeleteBookmarkHandler = useCallback((pageToDelete: IPageToDeleteWithMeta) => {
- const pageDeletedHandler: OnDeletedFunction = (pathOrPathsToDelete, _isRecursively, isCompletely) => {
- if (typeof pathOrPathsToDelete !== 'string') return;
- toastSuccess(isCompletely ? t('deleted_pages_completely', { pathOrPathsToDelete }) : t('deleted_pages', { pathOrPathsToDelete }));
- bookmarkFolderTreeMutation();
- };
- openDeleteModal([pageToDelete], { onDeleted: pageDeletedHandler });
- }, [openDeleteModal, t, bookmarkFolderTreeMutation]);
- /* TODO: update in bookmarks folder v2. */
- // const itemDropHandler = async(item: DragItemDataType, dragType: string | null | symbol) => {
- // if (dragType === DRAG_ITEM_TYPE.FOLDER) {
- // try {
- // await updateBookmarkFolder(item.bookmarkFolder._id, item.bookmarkFolder.name, null);
- // await mutateBookmarkData();
- // toastSuccess(t('toaster.update_successed', { target: t('bookmark_folder.bookmark_folder'), ns: 'commons' }));
- // }
- // catch (err) {
- // toastError(err);
- // }
- // }
- // else {
- // try {
- // await addBookmarkToFolder(item._id, null);
- // await mutateUserBookmarks();
- // toastSuccess(t('toaster.add_succeeded', { target: t('bookmark_folder.bookmark'), ns: 'commons' }));
- // }
- // catch (err) {
- // toastError(err);
- // }
- // }
- // };
- // const isDroppable = (item: DragItemDataType, dragType: string | null | symbol) => {
- // if (dragType === DRAG_ITEM_TYPE.FOLDER) {
- // const isRootFolder = item.level === 0;
- // return !isRootFolder;
- // }
- // const isRootBookmark = item.parentFolder == null;
- // return !isRootBookmark;
- // };
- return (
- <div className={`grw-folder-tree-container ${styles['grw-folder-tree-container']}` } >
- <ul className={`grw-foldertree ${styles['grw-foldertree']} list-group px-2 py-2`}>
- {bookmarkFolders?.map((bookmarkFolder) => {
- return (
- <BookmarkFolderItem
- key={bookmarkFolder._id}
- isReadOnlyUser={!!isReadOnlyUser}
- bookmarkFolder={bookmarkFolder}
- isOpen={false}
- level={0}
- root={bookmarkFolder._id}
- isUserHomePage={isUserHomePage}
- onClickDeleteBookmarkHandler={onClickDeleteBookmarkHandler}
- bookmarkFolderTreeMutation={bookmarkFolderTreeMutation}
- />
- );
- })}
- {userBookmarks?.map(userBookmark => (
- <div key={userBookmark._id} className="grw-foldertree-item-container grw-root-bookmarks">
- <BookmarkItem
- key={userBookmark._id}
- isReadOnlyUser={!!isReadOnlyUser}
- bookmarkedPage={userBookmark}
- level={0}
- parentFolder={null}
- canMoveToRoot={false}
- onClickDeleteBookmarkHandler={onClickDeleteBookmarkHandler}
- bookmarkFolderTreeMutation={bookmarkFolderTreeMutation}
- />
- </div>
- ))}
- </ul>
- {/* TODO: update in bookmarks folder v2. Also delete drop_item_here in translation.json, if don't need it. */}
- {/* {bookmarkFolderData != null && bookmarkFolderData.length > 0 && (
- <DragAndDropWrapper
- useDropMode={true}
- type={acceptedTypes}
- onDropItem={itemDropHandler}
- isDropable={isDroppable}
- >
- <div className="grw-drop-item-area">
- <div className="d-flex flex-column align-items-center">
- {t('bookmark_folder.drop_item_here')}
- </div>
- </div>
- </DragAndDropWrapper>
- )} */}
- </div>
- );
- };
|