mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
a49f00bd39
* chore: update all issue property components * style: issue properties
67 lines
2.1 KiB
TypeScript
67 lines
2.1 KiB
TypeScript
import React from "react";
|
|
import type { NextPage } from "next";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProfileAuthWrapper } from "layouts/profile-layout";
|
|
// components
|
|
import { UserProfileHeader } from "components/headers";
|
|
import { ProfileIssuesListLayout } from "components/issues/issue-layouts/list/roots/profile-issues-root";
|
|
import { ProfileIssuesKanBanLayout } from "components/issues/issue-layouts/kanban/roots/profile-issues-root";
|
|
// hooks
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
import { RootStore } from "store/root";
|
|
|
|
// types
|
|
|
|
const ProfileAssignedIssues: NextPage = observer(() => {
|
|
const {
|
|
workspace: workspaceStore,
|
|
project: projectStore,
|
|
profileIssueFilters: profileIssueFiltersStore,
|
|
profileIssues: profileIssuesStore,
|
|
}: RootStore = useMobxStore();
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, userId } = router.query as {
|
|
workspaceSlug: string;
|
|
userId: string;
|
|
};
|
|
|
|
useSWR(`PROFILE_ISSUES_${workspaceSlug}_${userId}`, async () => {
|
|
if (workspaceSlug && userId) {
|
|
// workspace labels
|
|
workspaceStore.setWorkspaceSlug(workspaceSlug);
|
|
await workspaceStore.fetchWorkspaceLabels(workspaceSlug);
|
|
await projectStore.fetchProjects(workspaceSlug);
|
|
|
|
//profile issues
|
|
await profileIssuesStore.fetchIssues(workspaceSlug, userId, "assigned");
|
|
}
|
|
});
|
|
|
|
const activeLayout = profileIssueFiltersStore.userDisplayFilters.layout;
|
|
|
|
return (
|
|
<AppLayout header={<UserProfileHeader />}>
|
|
<ProfileAuthWrapper>
|
|
{profileIssuesStore.loader ? (
|
|
<div>Loading...</div>
|
|
) : (
|
|
<div className="w-full h-full relative overflow-auto -z-1">
|
|
{activeLayout === "list" ? (
|
|
<ProfileIssuesListLayout />
|
|
) : activeLayout === "kanban" ? (
|
|
<ProfileIssuesKanBanLayout />
|
|
) : null}
|
|
</div>
|
|
)}
|
|
</ProfileAuthWrapper>
|
|
</AppLayout>
|
|
);
|
|
});
|
|
|
|
export default ProfileAssignedIssues;
|