| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import React, { useState } from 'react';
- import { useTranslation } from 'next-i18next';
- import { RecentlyCreatedIcon } from '~/components/Icons/RecentlyCreatedIcon';
- import { RecentCreated } from '~/components/RecentCreated/RecentCreated';
- import styles from '~/components/UsersHomepageFooter.module.scss';
- import { useCurrentUser } from '~/stores/context';
- import { BookmarkFolderTree } from './Bookmarks/BookmarkFolderTree';
- import { CompressIcon } from './Icons/CompressIcon';
- import { ExpandIcon } from './Icons/ExpandIcon';
- export type UsersHomepageFooterProps = {
- creatorId: string,
- }
- export const UsersHomepageFooter = (props: UsersHomepageFooterProps): JSX.Element => {
- const { t } = useTranslation();
- const { creatorId } = props;
- const [isExpanded, setIsExpanded] = useState<boolean>(false);
- const { data: currentUser } = useCurrentUser();
- const isOperable = currentUser?._id === creatorId;
- return (
- <div className={`container-lg user-page-footer py-5 ${styles['user-page-footer']}`}>
- <div className="grw-user-page-list-m d-edit-none">
- <h2 id="bookmarks-list" className="grw-user-page-header border-bottom pb-2 mb-3 d-flex">
- <span style={{ fontSize: '1.3em' }} className="material-symbols-outlined">bookmark</span>
- {t('footer.bookmarks')}
- <span className="ms-auto ps-2 ">
- <button
- type="button"
- className={`btn btn-sm grw-expand-compress-btn ${isExpanded ? 'active' : ''}`}
- onClick={() => setIsExpanded(!isExpanded)}
- >
- { isExpanded
- ? <ExpandIcon />
- : <CompressIcon />
- }
- </button>
- </span>
- </h2>
- {/* TODO: In bookmark folders v1, the button to create a new folder does not exist. The button should be included in the bookmark component. */}
- <div className={`${isExpanded ? `${styles['grw-bookarks-contents-expanded']}` : `${styles['grw-bookarks-contents-compressed']}`}`}>
- <BookmarkFolderTree isUserHomepage isOperable={isOperable} userId={creatorId} />
- </div>
- </div>
- <div className="grw-user-page-list-m mt-5 d-edit-none">
- <h2 id="recently-created-list" className="grw-user-page-header border-bottom pb-2 mb-3">
- <i id="recent-created-icon" className="me-1"><RecentlyCreatedIcon /></i>
- {t('footer.recently_created')}
- </h2>
- <div id="user-created-list" className={`page-list ${styles['page-list']}`}>
- <RecentCreated userId={creatorId} />
- </div>
- </div>
- </div>
- );
- };
|