mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
011db50da6
* fix profile issue filters and kanban * chore: calendar drag and drop * chore: kanban drag and drop * dev: remove issue from the kanban layout and resolved build errors --------- Co-authored-by: rahulramesha <rahulramesham@gmail.com>
75 lines
2.0 KiB
TypeScript
75 lines
2.0 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { ProjectIssueQuickActions } from "components/issues";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// constants
|
|
import { EIssueActions } from "../../types";
|
|
import { BaseKanBanRoot } from "../base-kanban-root";
|
|
import { EProjectStore } from "store/command-palette.store";
|
|
|
|
export interface IKanBanLayout {}
|
|
|
|
export const KanBanLayout: React.FC = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query as { workspaceSlug: string; projectId: string };
|
|
|
|
const {
|
|
projectIssues: issueStore,
|
|
projectIssuesFilter: issuesFilterStore,
|
|
issueKanBanView: issueKanBanViewStore,
|
|
kanBanHelpers: kanBanHelperStore,
|
|
} = useMobxStore();
|
|
|
|
const issueActions = {
|
|
[EIssueActions.UPDATE]: async (issue: IIssue) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await issueStore.updateIssue(workspaceSlug, issue.project, issue.id, issue);
|
|
},
|
|
[EIssueActions.DELETE]: async (issue: IIssue) => {
|
|
if (!workspaceSlug) return;
|
|
|
|
await issueStore.removeIssue(workspaceSlug, issue.project, issue.id);
|
|
},
|
|
};
|
|
|
|
const handleDragDrop = (
|
|
source: any,
|
|
destination: any,
|
|
subGroupBy: string | null,
|
|
groupBy: string | null,
|
|
issues: IIssue[],
|
|
issueWithIds: any
|
|
) => {
|
|
if (kanBanHelperStore.handleDragDrop)
|
|
kanBanHelperStore.handleDragDrop(
|
|
source,
|
|
destination,
|
|
workspaceSlug,
|
|
projectId,
|
|
issueStore,
|
|
subGroupBy,
|
|
groupBy,
|
|
issues,
|
|
issueWithIds
|
|
);
|
|
};
|
|
|
|
return (
|
|
<BaseKanBanRoot
|
|
issueActions={issueActions}
|
|
issuesFilterStore={issuesFilterStore}
|
|
issueStore={issueStore}
|
|
kanbanViewStore={issueKanBanViewStore}
|
|
showLoader={true}
|
|
QuickActions={ProjectIssueQuickActions}
|
|
currentStore={EProjectStore.PROJECT}
|
|
handleDragDrop={handleDragDrop}
|
|
/>
|
|
);
|
|
});
|