forked from github/plane
63b6150b9c
* fix: Labels reordering inconsistency * fix: Delete child labels * feat: multi-select while grouping labels * refactor: label sorting in mobx computed function * feat: drag & drop label grouping, un-grouping * chore: removed label select modal * fix: moving labels from project store to project label store * fix: typo changes and build tree function added * labels feature * disable dropping group into a group * fix build errors * fix more issues * chore: added combining state UI, fixed scroll issue for label groups * chore: group icon for label groups * fix: group cannot be dropped in another group --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: rahulramesha <rahulramesham@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
180 lines
6.9 KiB
TypeScript
180 lines
6.9 KiB
TypeScript
import React, { useCallback, useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
import { DragDropContext } from "@hello-pangea/dnd";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// components
|
|
import { KanBanSwimLanes } from "../swimlanes";
|
|
import { KanBan } from "../default";
|
|
import { CycleIssueQuickActions } from "components/issues";
|
|
import { Spinner } from "@plane/ui";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// constants
|
|
import { ISSUE_STATE_GROUPS, ISSUE_PRIORITIES } from "constants/issue";
|
|
|
|
export interface ICycleKanBanLayout {}
|
|
|
|
export const CycleKanBanLayout: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, cycleId } = router.query;
|
|
// store
|
|
const {
|
|
project: projectStore,
|
|
projectLabel: { projectLabels },
|
|
projectMember: { projectMembers },
|
|
projectState: projectStateStore,
|
|
cycleIssue: cycleIssueStore,
|
|
issueFilter: issueFilterStore,
|
|
cycleIssueKanBanView: cycleIssueKanBanViewStore,
|
|
issueDetail: issueDetailStore,
|
|
} = useMobxStore();
|
|
|
|
const issues = cycleIssueStore?.getIssues;
|
|
|
|
const sub_group_by: string | null = issueFilterStore?.userDisplayFilters?.sub_group_by || null;
|
|
|
|
const group_by: string | null = issueFilterStore?.userDisplayFilters?.group_by || null;
|
|
|
|
const order_by: string | null = issueFilterStore?.userDisplayFilters?.order_by || null;
|
|
|
|
const userDisplayFilters = issueFilterStore?.userDisplayFilters || null;
|
|
|
|
const displayProperties = issueFilterStore?.userDisplayProperties || null;
|
|
|
|
const currentKanBanView: "swimlanes" | "default" = issueFilterStore?.userDisplayFilters?.sub_group_by
|
|
? "swimlanes"
|
|
: "default";
|
|
|
|
const [isDragStarted, setIsDragStarted] = useState<boolean>(false);
|
|
|
|
// const onDragStart = () => {
|
|
// setIsDragStarted(true);
|
|
// };
|
|
|
|
const onDragEnd = (result: any) => {
|
|
setIsDragStarted(false);
|
|
|
|
if (!result) return;
|
|
|
|
if (
|
|
result.destination &&
|
|
result.source &&
|
|
result.destination.droppableId === result.source.droppableId &&
|
|
result.destination.index === result.source.index
|
|
)
|
|
return;
|
|
|
|
currentKanBanView === "default"
|
|
? cycleIssueKanBanViewStore?.handleDragDrop(result.source, result.destination)
|
|
: cycleIssueKanBanViewStore?.handleSwimlaneDragDrop(result.source, result.destination);
|
|
};
|
|
|
|
const handleIssues = useCallback(
|
|
(sub_group_by: string | null, group_by: string | null, issue: IIssue, action: "update" | "delete" | "remove") => {
|
|
if (!workspaceSlug || !cycleId) return;
|
|
|
|
if (action === "update") {
|
|
cycleIssueStore.updateIssueStructure(group_by, sub_group_by, issue);
|
|
issueDetailStore.updateIssue(workspaceSlug.toString(), issue.project, issue.id, issue);
|
|
}
|
|
if (action === "delete") cycleIssueStore.deleteIssue(group_by, sub_group_by, issue);
|
|
if (action === "remove" && issue.bridge_id) {
|
|
cycleIssueStore.deleteIssue(group_by, sub_group_by, issue);
|
|
cycleIssueStore.removeIssueFromCycle(
|
|
workspaceSlug.toString(),
|
|
issue.project,
|
|
cycleId.toString(),
|
|
issue.bridge_id
|
|
);
|
|
}
|
|
},
|
|
[cycleIssueStore, issueDetailStore, cycleId, workspaceSlug]
|
|
);
|
|
|
|
const handleKanBanToggle = (toggle: "groupByHeaderMinMax" | "subgroupByIssuesVisibility", value: string) => {
|
|
cycleIssueKanBanViewStore.handleKanBanToggle(toggle, value);
|
|
};
|
|
|
|
const states = projectStateStore?.projectStates || null;
|
|
const priorities = ISSUE_PRIORITIES || null;
|
|
const stateGroups = ISSUE_STATE_GROUPS || null;
|
|
const projects = workspaceSlug ? projectStore?.projects[workspaceSlug.toString()] || null : null;
|
|
// const estimates =
|
|
// currentProjectDetails?.estimate !== null
|
|
// ? projectStore.projectEstimates?.find((e) => e.id === currentProjectDetails?.estimate) || null
|
|
// : null;
|
|
|
|
return (
|
|
<>
|
|
{cycleIssueStore.loader ? (
|
|
<div className="w-full h-full flex justify-center items-center">
|
|
<Spinner />
|
|
</div>
|
|
) : (
|
|
<div className={`relative min-w-full min-h-full h-max bg-custom-background-90 px-3 horizontal-scroll-enable`}>
|
|
<DragDropContext onDragEnd={onDragEnd}>
|
|
{currentKanBanView === "default" ? (
|
|
<KanBan
|
|
issues={issues}
|
|
sub_group_by={sub_group_by}
|
|
group_by={group_by}
|
|
order_by={order_by}
|
|
handleIssues={handleIssues}
|
|
quickActions={(sub_group_by, group_by, issue) => (
|
|
<CycleIssueQuickActions
|
|
issue={issue}
|
|
handleDelete={async () => handleIssues(sub_group_by, group_by, issue, "delete")}
|
|
handleUpdate={async (data) => handleIssues(sub_group_by, group_by, data, "update")}
|
|
handleRemoveFromCycle={async () => handleIssues(sub_group_by, group_by, issue, "remove")}
|
|
/>
|
|
)}
|
|
displayProperties={displayProperties}
|
|
kanBanToggle={cycleIssueKanBanViewStore?.kanBanToggle}
|
|
handleKanBanToggle={handleKanBanToggle}
|
|
states={states}
|
|
stateGroups={stateGroups}
|
|
priorities={priorities}
|
|
labels={projectLabels}
|
|
members={projectMembers?.map((m) => m.member) ?? null}
|
|
projects={projects}
|
|
showEmptyGroup={userDisplayFilters?.show_empty_groups || true}
|
|
isDragStarted={isDragStarted}
|
|
/>
|
|
) : (
|
|
<KanBanSwimLanes
|
|
issues={issues}
|
|
sub_group_by={sub_group_by}
|
|
group_by={group_by}
|
|
order_by={order_by}
|
|
handleIssues={handleIssues}
|
|
quickActions={(sub_group_by, group_by, issue) => (
|
|
<CycleIssueQuickActions
|
|
issue={issue}
|
|
handleDelete={async () => handleIssues(sub_group_by, group_by, issue, "delete")}
|
|
handleUpdate={async (data) => handleIssues(sub_group_by, group_by, data, "update")}
|
|
handleRemoveFromCycle={async () => handleIssues(sub_group_by, group_by, issue, "remove")}
|
|
/>
|
|
)}
|
|
displayProperties={displayProperties}
|
|
kanBanToggle={cycleIssueKanBanViewStore?.kanBanToggle}
|
|
handleKanBanToggle={handleKanBanToggle}
|
|
states={states}
|
|
stateGroups={stateGroups}
|
|
priorities={priorities}
|
|
labels={projectLabels}
|
|
members={projectMembers?.map((m) => m.member) ?? null}
|
|
projects={projects}
|
|
showEmptyGroup={userDisplayFilters?.show_empty_groups || true}
|
|
isDragStarted={isDragStarted}
|
|
/>
|
|
)}
|
|
</DragDropContext>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
});
|