mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
10f145f85c
* feat: user profile overview * chore: profile sidebar designed * feat: user issues filters and view options * refactor: filters * refactor: mutation logic * fix: percentage calculation logic and sidebar shadow
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import React from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// contexts
|
|
import { ProfileIssuesContextProvider } from "contexts/profile-issues-context";
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
// layouts
|
|
import { WorkspaceAuthorizationLayout } from "layouts/auth-layout";
|
|
// components
|
|
import { ProfileIssuesView, ProfileNavbar, ProfileSidebar } from "components/profile";
|
|
// ui
|
|
import { BreadcrumbItem, Breadcrumbs } from "components/breadcrumbs";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
const ProfileAssignedIssues: NextPage = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
const { user } = useUser();
|
|
|
|
return (
|
|
<ProfileIssuesContextProvider>
|
|
<WorkspaceAuthorizationLayout
|
|
breadcrumbs={
|
|
<Breadcrumbs>
|
|
<BreadcrumbItem title="Settings" link={`/${workspaceSlug}/me/profile`} />
|
|
<BreadcrumbItem title={`${user?.first_name} ${user?.last_name}`} />
|
|
</Breadcrumbs>
|
|
}
|
|
>
|
|
<div className="h-full w-full flex overflow-hidden">
|
|
<div className="h-full w-full flex flex-col overflow-hidden">
|
|
<ProfileNavbar />
|
|
<div className="h-full w-full flex flex-col overflow-hidden">
|
|
<ProfileIssuesView />
|
|
</div>
|
|
</div>
|
|
<ProfileSidebar />
|
|
</div>
|
|
</WorkspaceAuthorizationLayout>
|
|
</ProfileIssuesContextProvider>
|
|
);
|
|
};
|
|
|
|
export default ProfileAssignedIssues;
|