mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6a2be6afc4
* make computedFn without optional arguments * fix archived issues * fix activity changes with proper context * fix display filters that require server side filtering
79 lines
2.3 KiB
TypeScript
79 lines
2.3 KiB
TypeScript
import React, { ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
import { observer } from "mobx-react-lite";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { ProjectIssueDetailsHeader } from "components/headers";
|
|
import { IssueDetailRoot } from "components/issues";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// fetch-keys
|
|
import { useIssueDetail } from "hooks/store";
|
|
|
|
const IssueDetailsPage: NextPageWithLayout = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, issueId } = router.query;
|
|
// hooks
|
|
const {
|
|
fetchIssue,
|
|
issue: { getIssueById },
|
|
} = useIssueDetail();
|
|
|
|
const { isLoading } = useSWR(
|
|
workspaceSlug && projectId && issueId ? `ISSUE_DETAIL_${workspaceSlug}_${projectId}_${issueId}` : null,
|
|
workspaceSlug && projectId && issueId
|
|
? () => fetchIssue(workspaceSlug.toString(), projectId.toString(), issueId.toString())
|
|
: null
|
|
);
|
|
|
|
const issue = getIssueById(issueId?.toString() || "") || undefined;
|
|
const issueLoader = !issue || isLoading ? true : false;
|
|
|
|
return (
|
|
<>
|
|
{issueLoader ? (
|
|
<Loader className="flex h-full gap-5 p-5">
|
|
<div className="basis-2/3 space-y-2">
|
|
<Loader.Item height="30px" width="40%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="40%" />
|
|
</div>
|
|
<div className="basis-1/3 space-y-3">
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
<Loader.Item height="30px" />
|
|
</div>
|
|
</Loader>
|
|
) : (
|
|
workspaceSlug &&
|
|
projectId &&
|
|
issueId && (
|
|
<IssueDetailRoot
|
|
workspaceSlug={workspaceSlug.toString()}
|
|
projectId={projectId.toString()}
|
|
issueId={issueId.toString()}
|
|
is_archived={!!issue?.archived_at}
|
|
/>
|
|
)
|
|
)}
|
|
</>
|
|
);
|
|
});
|
|
|
|
IssueDetailsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectIssueDetailsHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default IssueDetailsPage;
|