mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import userService from "services/user.service";
|
|
// layouts
|
|
import { ProfileAuthWrapper } from "layouts/profile-layout";
|
|
// components
|
|
import {
|
|
ProfileActivity,
|
|
ProfilePriorityDistribution,
|
|
ProfileStateDistribution,
|
|
ProfileStats,
|
|
ProfileWorkload,
|
|
} from "components/profile";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
import { IUserStateDistribution, TStateGroups } from "types";
|
|
// constants
|
|
import { USER_PROFILE_DATA } from "constants/fetch-keys";
|
|
import { GROUP_CHOICES } from "constants/project";
|
|
|
|
const ProfileOverview: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, userId } = router.query;
|
|
|
|
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 (
|
|
<ProfileAuthWrapper>
|
|
<div className="h-full w-full px-5 md:px-9 py-5 space-y-7 overflow-y-auto">
|
|
<ProfileStats userProfile={userProfile} />
|
|
<ProfileWorkload stateDistribution={stateDistribution} />
|
|
<div className="grid grid-cols-1 xl:grid-cols-2 items-stretch gap-5">
|
|
<ProfilePriorityDistribution userProfile={userProfile} />
|
|
<ProfileStateDistribution
|
|
stateDistribution={stateDistribution}
|
|
userProfile={userProfile}
|
|
/>
|
|
</div>
|
|
<ProfileActivity />
|
|
</div>
|
|
</ProfileAuthWrapper>
|
|
);
|
|
};
|
|
|
|
export default ProfileOverview;
|