mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
85 lines
2.8 KiB
TypeScript
85 lines
2.8 KiB
TypeScript
import { ReactElement, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
// ui
|
|
import { Button } from "@plane/ui";
|
|
// components
|
|
import { PageHead } from "@/components/core";
|
|
import { SidebarHamburgerToggle } from "@/components/core/sidebar";
|
|
import { EmptyState } from "@/components/empty-state";
|
|
import { ProfileActivityListPage } from "@/components/profile";
|
|
// constants
|
|
import { EmptyStateType } from "@/constants/empty-state";
|
|
//hooks
|
|
import { useAppTheme } from "@/hooks/store";
|
|
// layouts
|
|
import { ProfileSettingsLayout } from "@/layouts/settings-layout";
|
|
// type
|
|
import { NextPageWithLayout } from "@/lib/types";
|
|
|
|
const PER_PAGE = 100;
|
|
|
|
const ProfileActivityPage: NextPageWithLayout = observer(() => {
|
|
// states
|
|
const [pageCount, setPageCount] = useState(1);
|
|
const [totalPages, setTotalPages] = useState(0);
|
|
const [resultsCount, setResultsCount] = useState(0);
|
|
const [isEmpty, setIsEmpty] = useState(false);
|
|
// store hooks
|
|
const { toggleSidebar } = useAppTheme();
|
|
|
|
const updateTotalPages = (count: number) => setTotalPages(count);
|
|
|
|
const updateResultsCount = (count: number) => setResultsCount(count);
|
|
|
|
const updateEmptyState = (isEmpty: boolean) => setIsEmpty(isEmpty);
|
|
|
|
const handleLoadMore = () => setPageCount((prev) => prev + 1);
|
|
|
|
const activityPages: JSX.Element[] = [];
|
|
for (let i = 0; i < pageCount; i++)
|
|
activityPages.push(
|
|
<ProfileActivityListPage
|
|
key={i}
|
|
cursor={`${PER_PAGE}:${i}:0`}
|
|
perPage={PER_PAGE}
|
|
updateResultsCount={updateResultsCount}
|
|
updateTotalPages={updateTotalPages}
|
|
updateEmptyState={updateEmptyState}
|
|
/>
|
|
);
|
|
|
|
const isLoadMoreVisible = pageCount < totalPages && resultsCount !== 0;
|
|
|
|
if (isEmpty) {
|
|
return <EmptyState type={EmptyStateType.PROFILE_ACTIVITY} layout="screen-detailed" />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<PageHead title="Profile - Activity" />
|
|
<section className="mx-auto mt-5 md:mt-16 h-full w-full flex flex-col overflow-hidden px-5 md:px-8 pb-8 lg:w-3/5">
|
|
<div className="flex items-center border-b border-custom-border-100 gap-4 pb-3.5">
|
|
<SidebarHamburgerToggle onClick={() => toggleSidebar()} />
|
|
<h3 className="text-xl font-medium">Activity</h3>
|
|
</div>
|
|
<div className="vertical-scrollbar scrollbar-md flex h-full w-full flex-col overflow-y-auto">
|
|
{activityPages}
|
|
{isLoadMoreVisible && (
|
|
<div className="flex w-full items-center justify-center text-xs">
|
|
<Button variant="accent-primary" size="sm" onClick={handleLoadMore}>
|
|
Load more
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</section>
|
|
</>
|
|
);
|
|
});
|
|
|
|
ProfileActivityPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <ProfileSettingsLayout>{page}</ProfileSettingsLayout>;
|
|
};
|
|
|
|
export default ProfileActivityPage;
|