mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
05de4d83f3
* chore: header refactor. * fix: core imports * chore: refactor profile activity header and fix all other header imports. * fix: import fixes * chore: header refactor. * fix: app dir header reimplementation * fix: removing parllel headers * fix: adding route groups to handle pages * fix: disabling sentry for temp * chore: update default exports in layouts & headers for consistency. * fix: bugfixes * fix: build errors --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import { useParams } from "next/navigation";
|
|
import useSWR from "swr";
|
|
// types
|
|
import { IUserStateDistribution, TStateGroups } from "@plane/types";
|
|
// components
|
|
import { PageHead } from "@/components/core";
|
|
import {
|
|
ProfileActivity,
|
|
ProfilePriorityDistribution,
|
|
ProfileStateDistribution,
|
|
ProfileStats,
|
|
ProfileWorkload,
|
|
} from "@/components/profile";
|
|
// constants
|
|
import { USER_PROFILE_DATA } from "@/constants/fetch-keys";
|
|
import { GROUP_CHOICES } from "@/constants/project";
|
|
// services
|
|
import { UserService } from "@/services/user.service";
|
|
|
|
// services
|
|
const userService = new UserService();
|
|
|
|
export default function ProfileOverviewPage() {
|
|
const { workspaceSlug, userId } = useParams();
|
|
|
|
const { data: userProfile } = useSWR(
|
|
workspaceSlug && userId ? USER_PROFILE_DATA(workspaceSlug.toString(), userId.toString()) : null,
|
|
workspaceSlug && userId ? () => userService.getUserProfileData(workspaceSlug.toString(), userId.toString()) : null
|
|
);
|
|
|
|
const stateDistribution: IUserStateDistribution[] = Object.keys(GROUP_CHOICES).map((key) => {
|
|
const group = userProfile?.state_distribution.find((g) => g.state_group === key);
|
|
|
|
if (group) return group;
|
|
else return { state_group: key as TStateGroups, state_count: 0 };
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<PageHead title="Profile - Summary" />
|
|
<div className="h-full w-full space-y-7 overflow-y-auto px-5 py-5 md:px-9 vertical-scrollbar scrollbar-md">
|
|
<ProfileStats userProfile={userProfile} />
|
|
<ProfileWorkload stateDistribution={stateDistribution} />
|
|
<div className="grid grid-cols-1 items-stretch gap-5 xl:grid-cols-2">
|
|
<ProfilePriorityDistribution userProfile={userProfile} />
|
|
<ProfileStateDistribution stateDistribution={stateDistribution} userProfile={userProfile} />
|
|
</div>
|
|
<ProfileActivity />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|