mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0f47762e6d
* dev: implement module issues using mobx store * dev: module filter store setup * chore: module store crud operations
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { observer } from "mobx-react-lite";
|
|
import { DragDropContext, DropResult } from "@hello-pangea/dnd";
|
|
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { CalendarChart } from "components/issues";
|
|
// types
|
|
import { IIssueGroupedStructure } from "store/issue";
|
|
|
|
export const ModuleCalendarLayout: React.FC = observer(() => {
|
|
const { module: moduleStore } = useMobxStore();
|
|
|
|
// TODO: add drag and drop functionality
|
|
const onDragEnd = (result: DropResult) => {
|
|
if (!result) return;
|
|
|
|
// return if not dropped on the correct place
|
|
if (!result.destination) return;
|
|
|
|
// return if dropped on the same date
|
|
if (result.destination.droppableId === result.source.droppableId) return;
|
|
|
|
// issueKanBanViewStore?.handleDragDrop(result.source, result.destination);
|
|
};
|
|
|
|
const issues = moduleStore.getIssues;
|
|
|
|
return (
|
|
<div className="h-full w-full pt-4 bg-custom-background-100 overflow-hidden">
|
|
<DragDropContext onDragEnd={onDragEnd}>
|
|
<CalendarChart issues={issues as IIssueGroupedStructure | null} />
|
|
</DragDropContext>
|
|
</div>
|
|
);
|
|
});
|