mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
afc2ca65cf
* List Dnd Complete feature * fix minor bugs in list dnd * remove double overlay in kanban post refactor * add missing dependencies to useEffects * make provision to add to the last issue of the group * show current child issues to also be disabled if the parent issue is being dragged * fix last issue border * fix code static analysis suggestions * prevent context menu on drag handle
224 lines
6.5 KiB
TypeScript
224 lines
6.5 KiB
TypeScript
import { useEffect, useRef } from "react";
|
|
import { combine } from "@atlaskit/pragmatic-drag-and-drop/combine";
|
|
import { autoScrollForElements } from "@atlaskit/pragmatic-drag-and-drop-auto-scroll/element";
|
|
// components
|
|
import {
|
|
GroupByColumnTypes,
|
|
TGroupedIssues,
|
|
TIssue,
|
|
IIssueDisplayProperties,
|
|
TIssueMap,
|
|
TUnGroupedIssues,
|
|
IGroupByColumn,
|
|
TIssueOrderByOptions,
|
|
TIssueGroupByOptions,
|
|
} from "@plane/types";
|
|
// hooks
|
|
import { EIssuesStoreType } from "@/constants/issue";
|
|
import { useCycle, useLabel, useMember, useModule, useProject, useProjectState } from "@/hooks/store";
|
|
// utils
|
|
import { getGroupByColumns, isWorkspaceLevel, GroupDropLocation } from "../utils";
|
|
import { ListGroup } from "./list-group";
|
|
import { TRenderQuickActions } from "./list-view-types";
|
|
|
|
export interface IGroupByList {
|
|
issueIds: TGroupedIssues | TUnGroupedIssues | any;
|
|
issuesMap: TIssueMap;
|
|
group_by: TIssueGroupByOptions | null;
|
|
orderBy: TIssueOrderByOptions | undefined;
|
|
updateIssue: ((projectId: string, issueId: string, data: Partial<TIssue>) => Promise<void>) | undefined;
|
|
quickActions: TRenderQuickActions;
|
|
displayProperties: IIssueDisplayProperties | undefined;
|
|
enableIssueQuickAdd: boolean;
|
|
showEmptyGroup?: boolean;
|
|
canEditProperties: (projectId: string | undefined) => boolean;
|
|
quickAddCallback?: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: TIssue,
|
|
viewId?: string
|
|
) => Promise<TIssue | undefined>;
|
|
disableIssueCreation?: boolean;
|
|
storeType: EIssuesStoreType;
|
|
handleOnDrop: (source: GroupDropLocation, destination: GroupDropLocation) => Promise<void>;
|
|
addIssuesToView?: (issueIds: string[]) => Promise<TIssue>;
|
|
viewId?: string;
|
|
isCompletedCycle?: boolean;
|
|
}
|
|
|
|
const GroupByList: React.FC<IGroupByList> = (props) => {
|
|
const {
|
|
issueIds,
|
|
issuesMap,
|
|
group_by,
|
|
orderBy,
|
|
updateIssue,
|
|
quickActions,
|
|
displayProperties,
|
|
enableIssueQuickAdd,
|
|
showEmptyGroup,
|
|
canEditProperties,
|
|
quickAddCallback,
|
|
viewId,
|
|
disableIssueCreation,
|
|
storeType,
|
|
handleOnDrop,
|
|
addIssuesToView,
|
|
isCompletedCycle = false,
|
|
} = props;
|
|
// store hooks
|
|
const member = useMember();
|
|
const project = useProject();
|
|
const label = useLabel();
|
|
const projectState = useProjectState();
|
|
const cycle = useCycle();
|
|
const projectModule = useModule();
|
|
|
|
const containerRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
const groups = getGroupByColumns(
|
|
group_by as GroupByColumnTypes,
|
|
project,
|
|
cycle,
|
|
projectModule,
|
|
label,
|
|
projectState,
|
|
member,
|
|
true,
|
|
isWorkspaceLevel(storeType)
|
|
);
|
|
|
|
// Enable Auto Scroll for Main Kanban
|
|
useEffect(() => {
|
|
const element = containerRef.current;
|
|
|
|
if (!element) return;
|
|
|
|
return combine(
|
|
autoScrollForElements({
|
|
element,
|
|
})
|
|
);
|
|
}, [containerRef]);
|
|
|
|
if (!groups) return null;
|
|
|
|
const validateEmptyIssueGroups = (issues: TIssue[]) => {
|
|
const issuesCount = issues?.length || 0;
|
|
if (!showEmptyGroup && issuesCount <= 0) return false;
|
|
return true;
|
|
};
|
|
|
|
const getGroupIndex = (groupId: string | undefined) => groups.findIndex(({ id }) => id === groupId);
|
|
|
|
const is_list = group_by === null ? true : false;
|
|
|
|
return (
|
|
<div
|
|
ref={containerRef}
|
|
className="vertical-scrollbar scrollbar-lg relative h-full w-full overflow-auto vertical-scrollbar-margin-top-md"
|
|
>
|
|
{groups &&
|
|
groups.length > 0 &&
|
|
groups.map(
|
|
(group: IGroupByColumn) =>
|
|
validateEmptyIssueGroups(is_list ? issueIds : issueIds?.[group.id]) && (
|
|
<ListGroup
|
|
key={group.id}
|
|
group={group}
|
|
getGroupIndex={getGroupIndex}
|
|
issueIds={issueIds}
|
|
issuesMap={issuesMap}
|
|
group_by={group_by}
|
|
orderBy={orderBy}
|
|
updateIssue={updateIssue}
|
|
quickActions={quickActions}
|
|
displayProperties={displayProperties}
|
|
enableIssueQuickAdd={enableIssueQuickAdd}
|
|
canEditProperties={canEditProperties}
|
|
storeType={storeType}
|
|
containerRef={containerRef}
|
|
quickAddCallback={quickAddCallback}
|
|
disableIssueCreation={disableIssueCreation}
|
|
addIssuesToView={addIssuesToView}
|
|
handleOnDrop={handleOnDrop}
|
|
viewId={viewId}
|
|
isCompletedCycle={isCompletedCycle}
|
|
/>
|
|
)
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export interface IList {
|
|
issueIds: TGroupedIssues | TUnGroupedIssues | any;
|
|
issuesMap: TIssueMap;
|
|
group_by: TIssueGroupByOptions | null;
|
|
orderBy: TIssueOrderByOptions | undefined;
|
|
updateIssue: ((projectId: string, issueId: string, data: Partial<TIssue>) => Promise<void>) | undefined;
|
|
quickActions: TRenderQuickActions;
|
|
displayProperties: IIssueDisplayProperties | undefined;
|
|
showEmptyGroup: boolean;
|
|
enableIssueQuickAdd: boolean;
|
|
canEditProperties: (projectId: string | undefined) => boolean;
|
|
quickAddCallback?: (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
data: TIssue,
|
|
viewId?: string
|
|
) => Promise<TIssue | undefined>;
|
|
viewId?: string;
|
|
disableIssueCreation?: boolean;
|
|
storeType: EIssuesStoreType;
|
|
handleOnDrop: (source: GroupDropLocation, destination: GroupDropLocation) => Promise<void>;
|
|
addIssuesToView?: (issueIds: string[]) => Promise<TIssue>;
|
|
isCompletedCycle?: boolean;
|
|
}
|
|
|
|
export const List: React.FC<IList> = (props) => {
|
|
const {
|
|
issueIds,
|
|
issuesMap,
|
|
group_by,
|
|
orderBy,
|
|
updateIssue,
|
|
quickActions,
|
|
quickAddCallback,
|
|
viewId,
|
|
displayProperties,
|
|
showEmptyGroup,
|
|
enableIssueQuickAdd,
|
|
canEditProperties,
|
|
disableIssueCreation,
|
|
storeType,
|
|
handleOnDrop,
|
|
addIssuesToView,
|
|
isCompletedCycle = false,
|
|
} = props;
|
|
|
|
return (
|
|
<div className="relative h-full w-full">
|
|
<GroupByList
|
|
issueIds={issueIds as TUnGroupedIssues}
|
|
issuesMap={issuesMap}
|
|
group_by={group_by}
|
|
orderBy={orderBy}
|
|
updateIssue={updateIssue}
|
|
quickActions={quickActions}
|
|
displayProperties={displayProperties}
|
|
enableIssueQuickAdd={enableIssueQuickAdd}
|
|
showEmptyGroup={showEmptyGroup}
|
|
canEditProperties={canEditProperties}
|
|
quickAddCallback={quickAddCallback}
|
|
viewId={viewId}
|
|
disableIssueCreation={disableIssueCreation}
|
|
storeType={storeType}
|
|
handleOnDrop={handleOnDrop}
|
|
addIssuesToView={addIssuesToView}
|
|
isCompletedCycle={isCompletedCycle}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|