forked from github/plane
8d15b9e7de
* chore: format all files in the project * fix: removing @types/react from dependencies * fix: adding prettier and eslint config * chore: format files * fix: upgrading turbo version * chore: ignoring warnings and adding todos * fix: updated the type of bubble menu item in the document editor * chore: format files --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import React from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import useSWR from "swr";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { ArchivedIssueListLayout, ArchivedIssueAppliedFiltersRoot } from "components/issues";
|
|
|
|
export const ArchivedIssueLayoutRoot: React.FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
const {
|
|
projectArchivedIssues: { getIssues, fetchIssues },
|
|
projectArchivedIssuesFilter: { fetchFilters },
|
|
} = useMobxStore();
|
|
|
|
useSWR(workspaceSlug && projectId ? `ARCHIVED_FILTERS_AND_ISSUES_${projectId.toString()}` : null, async () => {
|
|
if (workspaceSlug && projectId) {
|
|
await fetchFilters(workspaceSlug, projectId);
|
|
await fetchIssues(workspaceSlug, projectId, getIssues ? "mutation" : "init-loader");
|
|
}
|
|
});
|
|
|
|
return (
|
|
<div className="relative flex h-full w-full flex-col overflow-hidden">
|
|
<ArchivedIssueAppliedFiltersRoot />
|
|
<div className="h-full w-full overflow-auto">
|
|
<ArchivedIssueListLayout />
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|