mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
85 lines
2.7 KiB
TypeScript
85 lines
2.7 KiB
TypeScript
import { ReactElement, useState } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
// hooks
|
|
import { Button } from "@plane/ui";
|
|
import { UserProfileHeader } from "@/components/headers";
|
|
import { DownloadActivityButton, WorkspaceActivityListPage } from "@/components/profile";
|
|
import { EUserWorkspaceRoles } from "@/constants/workspace";
|
|
import { useUser } from "@/hooks/store";
|
|
// layouts
|
|
import { AppLayout } from "@/layouts/app-layout";
|
|
import { ProfileAuthWrapper } from "@/layouts/user-profile-layout";
|
|
// components
|
|
// ui
|
|
// types
|
|
import { NextPageWithLayout } from "@/lib/types";
|
|
// constants
|
|
|
|
const PER_PAGE = 100;
|
|
|
|
const ProfileActivityPage: NextPageWithLayout = observer(() => {
|
|
// states
|
|
const [pageCount, setPageCount] = useState(1);
|
|
const [totalPages, setTotalPages] = useState(0);
|
|
const [resultsCount, setResultsCount] = useState(0);
|
|
// router
|
|
const router = useRouter();
|
|
const { userId } = router.query;
|
|
// store hooks
|
|
const {
|
|
currentUser,
|
|
membership: { currentWorkspaceRole },
|
|
} = useUser();
|
|
|
|
const updateTotalPages = (count: number) => setTotalPages(count);
|
|
|
|
const updateResultsCount = (count: number) => setResultsCount(count);
|
|
|
|
const handleLoadMore = () => setPageCount((prev) => prev + 1);
|
|
|
|
const activityPages: JSX.Element[] = [];
|
|
for (let i = 0; i < pageCount; i++)
|
|
activityPages.push(
|
|
<WorkspaceActivityListPage
|
|
key={i}
|
|
cursor={`${PER_PAGE}:${i}:0`}
|
|
perPage={PER_PAGE}
|
|
updateResultsCount={updateResultsCount}
|
|
updateTotalPages={updateTotalPages}
|
|
/>
|
|
);
|
|
|
|
const canDownloadActivity =
|
|
currentUser?.id === userId && !!currentWorkspaceRole && currentWorkspaceRole >= EUserWorkspaceRoles.MEMBER;
|
|
|
|
return (
|
|
<div className="h-full w-full py-5 flex flex-col overflow-hidden">
|
|
<div className="flex items-center justify-between gap-2 px-5 md:px-9">
|
|
<h3 className="text-lg font-medium">Recent activity</h3>
|
|
{canDownloadActivity && <DownloadActivityButton />}
|
|
</div>
|
|
<div className="h-full flex flex-col overflow-y-auto vertical-scrollbar scrollbar-md px-5 md:px-9">
|
|
{activityPages}
|
|
{pageCount < totalPages && resultsCount !== 0 && (
|
|
<div className="flex items-center justify-center text-xs w-full">
|
|
<Button variant="accent-primary" size="sm" onClick={handleLoadMore}>
|
|
Load more
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|
|
|
|
ProfileActivityPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<UserProfileHeader type="Activity" />}>
|
|
<ProfileAuthWrapper>{page}</ProfileAuthWrapper>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ProfileActivityPage;
|