forked from github/plane
f79bd9df60
* dev: draft and archived issue store * connect draft and archived issues * kanban for draft issues * fix filter store for calendar and kanban * dev: profile issues store and draft issues filters in header * disble issue creation for draft issues * dev: profile issues store filters * disable kanban properties in draft issues * dev: profile issues store filters * dev: seperated adding issues to the cycle and module as seperate methds in cycle and module store * dev: workspace profile issues store * dev: sub group issues in the swimlanes * profile issues and create issue connection * fix profile issues * fix spreadsheet issues * fix dissapearing project from create issue modal * page level modifications * fix additional bugs * dev: issues profile and global iisues and filters update * fix issue related bugs * fix project views for list and kanban * fix build errors --------- Co-authored-by: rahulramesha <rahulramesham@gmail.com>
49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
import { FC } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { ProjectIssueQuickActions } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
import { EIssueActions } from "../../types";
|
|
// constants
|
|
import { BaseListRoot } from "../base-list-root";
|
|
import { IProjectStore } from "store/project";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export const DraftIssueListLayout: FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
if (!workspaceSlug || !projectId) return null;
|
|
|
|
// store
|
|
const { projectDraftIssuesFilter: projectIssuesFilterStore, projectDraftIssues: projectIssuesStore } = useMobxStore();
|
|
|
|
const issueActions = {
|
|
[EIssueActions.UPDATE]: (group_by: string | null, issue: IIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
projectIssuesStore.updateIssue(workspaceSlug, projectId, issue.id, issue);
|
|
},
|
|
[EIssueActions.DELETE]: (group_by: string | null, issue: IIssue) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
projectIssuesStore.removeIssue(workspaceSlug, projectId, issue.id);
|
|
},
|
|
};
|
|
|
|
const getProjects = (projectStore: IProjectStore) => projectStore.workspaceProjects;
|
|
|
|
return (
|
|
<BaseListRoot
|
|
issueFilterStore={projectIssuesFilterStore}
|
|
issueStore={projectIssuesStore}
|
|
QuickActions={ProjectIssueQuickActions}
|
|
issueActions={issueActions}
|
|
getProjects={getProjects}
|
|
currentStore={EProjectStore.PROJECT}
|
|
/>
|
|
);
|
|
});
|