forked from github/plane
37df0bcdd8
* fix: issue with peek view properties not editable and options not being shown in `all workspace issues`.. * refactor: use projectId from props instead of router query. fix: issue in add to module/ cycle not working properly.
324 lines
12 KiB
TypeScript
324 lines
12 KiB
TypeScript
import { FC, useState } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// ui icons
|
|
import { DiceIcon, DoubleCircleIcon, UserGroupIcon, ContrastIcon } from "@plane/ui";
|
|
import { CalendarDays, Link2, Plus, Signal, Tag, Triangle, LayoutPanelTop } from "lucide-react";
|
|
import {
|
|
SidebarAssigneeSelect,
|
|
SidebarCycleSelect,
|
|
SidebarEstimateSelect,
|
|
SidebarLabelSelect,
|
|
SidebarModuleSelect,
|
|
SidebarParentSelect,
|
|
SidebarPrioritySelect,
|
|
SidebarStateSelect,
|
|
} from "../sidebar-select";
|
|
// components
|
|
import { CustomDatePicker } from "components/ui";
|
|
import { LinkModal, LinksList } from "components/core";
|
|
// types
|
|
import { IIssue, TIssuePriorities, ILinkDetails, IIssueLink } from "types";
|
|
// constants
|
|
import { EUserWorkspaceRoles } from "constants/workspace";
|
|
|
|
interface IPeekOverviewProperties {
|
|
issue: IIssue;
|
|
issueUpdate: (issue: Partial<IIssue>) => void;
|
|
issueLinkCreate: (data: IIssueLink) => Promise<ILinkDetails>;
|
|
issueLinkUpdate: (data: IIssueLink, linkId: string) => Promise<ILinkDetails>;
|
|
issueLinkDelete: (linkId: string) => Promise<void>;
|
|
disableUserActions: boolean;
|
|
}
|
|
|
|
export const PeekOverviewProperties: FC<IPeekOverviewProperties> = observer((props) => {
|
|
const { issue, issueUpdate, issueLinkCreate, issueLinkUpdate, issueLinkDelete, disableUserActions } = props;
|
|
// states
|
|
const [linkModal, setLinkModal] = useState(false);
|
|
const [selectedLinkToUpdate, setSelectedLinkToUpdate] = useState<ILinkDetails | null>(null);
|
|
|
|
const {
|
|
user: { currentProjectRole },
|
|
issueDetail: { fetchPeekIssueDetails },
|
|
project: { getProjectById },
|
|
} = useMobxStore();
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, peekProjectId: projectId } = router.query;
|
|
|
|
const handleState = (_state: string) => {
|
|
issueUpdate({ ...issue, state: _state });
|
|
};
|
|
const handlePriority = (_priority: TIssuePriorities) => {
|
|
issueUpdate({ ...issue, priority: _priority });
|
|
};
|
|
const handleAssignee = (_assignees: string[]) => {
|
|
issueUpdate({ ...issue, assignees: _assignees });
|
|
};
|
|
const handleEstimate = (_estimate: number | null) => {
|
|
issueUpdate({ ...issue, estimate_point: _estimate });
|
|
};
|
|
const handleStartDate = (_startDate: string | null) => {
|
|
issueUpdate({ ...issue, start_date: _startDate });
|
|
};
|
|
const handleTargetDate = (_targetDate: string | null) => {
|
|
issueUpdate({ ...issue, target_date: _targetDate });
|
|
};
|
|
const handleParent = (_parent: string) => {
|
|
issueUpdate({ ...issue, parent: _parent });
|
|
};
|
|
const handleLabels = (formData: Partial<IIssue>) => {
|
|
issueUpdate({ ...issue, ...formData });
|
|
};
|
|
|
|
const handleCycleOrModuleChange = async () => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
await fetchPeekIssueDetails(workspaceSlug.toString(), projectId.toString(), issue.id);
|
|
};
|
|
|
|
const handleEditLink = (link: ILinkDetails) => {
|
|
setSelectedLinkToUpdate(link);
|
|
setLinkModal(true);
|
|
};
|
|
|
|
const projectDetails = workspaceSlug ? getProjectById(workspaceSlug.toString(), issue.project) : null;
|
|
const isEstimateEnabled = projectDetails?.estimate;
|
|
|
|
const minDate = issue.start_date ? new Date(issue.start_date) : null;
|
|
minDate?.setDate(minDate.getDate());
|
|
|
|
const maxDate = issue.target_date ? new Date(issue.target_date) : null;
|
|
maxDate?.setDate(maxDate.getDate());
|
|
|
|
return (
|
|
<>
|
|
<LinkModal
|
|
isOpen={linkModal}
|
|
handleClose={() => {
|
|
setLinkModal(false);
|
|
setSelectedLinkToUpdate(null);
|
|
}}
|
|
data={selectedLinkToUpdate}
|
|
status={selectedLinkToUpdate ? true : false}
|
|
createIssueLink={issueLinkCreate}
|
|
updateIssueLink={issueLinkUpdate}
|
|
/>
|
|
<div className="flex flex-col">
|
|
<div className="flex w-full flex-col gap-5 py-5">
|
|
{/* state */}
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<DoubleCircleIcon className="h-4 w-4 flex-shrink-0" />
|
|
<p>State</p>
|
|
</div>
|
|
<div>
|
|
<SidebarStateSelect
|
|
value={issue?.state || ""}
|
|
projectId={projectId as string}
|
|
onChange={handleState}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* assignee */}
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<UserGroupIcon className="h-4 w-4 flex-shrink-0" />
|
|
<p>Assignees</p>
|
|
</div>
|
|
<div>
|
|
<SidebarAssigneeSelect
|
|
value={issue.assignees || []}
|
|
projectId={projectId as string}
|
|
onChange={handleAssignee}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* priority */}
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<Signal className="h-4 w-4 flex-shrink-0" />
|
|
<p>Priority</p>
|
|
</div>
|
|
<div>
|
|
<SidebarPrioritySelect
|
|
value={issue.priority || ""}
|
|
onChange={handlePriority}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* estimate */}
|
|
{isEstimateEnabled && (
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<Triangle className="h-4 w-4 flex-shrink-0 " />
|
|
<p>Estimate</p>
|
|
</div>
|
|
<div>
|
|
<SidebarEstimateSelect
|
|
value={issue.estimate_point}
|
|
onChange={handleEstimate}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* start date */}
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<CalendarDays className="h-4 w-4 flex-shrink-0" />
|
|
<p>Start date</p>
|
|
</div>
|
|
<div>
|
|
<CustomDatePicker
|
|
placeholder="Start date"
|
|
value={issue.start_date}
|
|
onChange={handleStartDate}
|
|
className="!rounded border-none bg-custom-background-80 !px-2.5 !py-0.5"
|
|
maxDate={maxDate ?? undefined}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* due date */}
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<CalendarDays className="h-4 w-4 flex-shrink-0" />
|
|
<p>Due date</p>
|
|
</div>
|
|
<div>
|
|
<CustomDatePicker
|
|
placeholder="Due date"
|
|
value={issue.target_date}
|
|
onChange={handleTargetDate}
|
|
className="!rounded border-none bg-custom-background-80 !px-2.5 !py-0.5"
|
|
minDate={minDate ?? undefined}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* parent */}
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<LayoutPanelTop className="h-4 w-4 flex-shrink-0" />
|
|
<p>Parent</p>
|
|
</div>
|
|
<div>
|
|
<SidebarParentSelect
|
|
onChange={handleParent}
|
|
issueDetails={issue}
|
|
projectId={projectId as string}
|
|
disabled={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<span className="border-t border-custom-border-200" />
|
|
|
|
<div className="flex w-full flex-col gap-5 py-5">
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<ContrastIcon className="h-4 w-4 flex-shrink-0" />
|
|
<p>Cycle</p>
|
|
</div>
|
|
<div>
|
|
<SidebarCycleSelect
|
|
issueDetail={issue}
|
|
projectId={projectId as string}
|
|
disabled={disableUserActions}
|
|
handleIssueUpdate={handleCycleOrModuleChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex w-full items-center gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<DiceIcon className="h-4 w-4 flex-shrink-0" />
|
|
<p>Module</p>
|
|
</div>
|
|
<div>
|
|
<SidebarModuleSelect
|
|
issueDetail={issue}
|
|
projectId={projectId as string}
|
|
disabled={disableUserActions}
|
|
handleIssueUpdate={handleCycleOrModuleChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="flex w-full items-start gap-2">
|
|
<div className="flex w-40 flex-shrink-0 items-center gap-2 text-sm">
|
|
<Tag className="h-4 w-4 flex-shrink-0" />
|
|
<p>Label</p>
|
|
</div>
|
|
<div className="flex w-full flex-col gap-3">
|
|
<SidebarLabelSelect
|
|
issueDetails={issue}
|
|
projectId={projectId as string}
|
|
labelList={issue.labels}
|
|
submitChanges={handleLabels}
|
|
isNotAllowed={disableUserActions}
|
|
uneditable={disableUserActions}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<span className="border-t border-custom-border-200" />
|
|
|
|
<div className="flex w-full flex-col gap-5 pt-5">
|
|
<div className="flex w-full flex-col gap-2">
|
|
<div className="flex w-80 items-center gap-2">
|
|
<div className="flex w-40 items-center gap-2 text-sm">
|
|
<Link2 className="h-4 w-4 flex-shrink-0" />
|
|
<p>Links</p>
|
|
</div>
|
|
<div>
|
|
{!disableUserActions && (
|
|
<button
|
|
type="button"
|
|
className={`flex ${
|
|
disableUserActions ? "cursor-not-allowed" : "cursor-pointer hover:bg-custom-background-90"
|
|
} items-center gap-1 rounded-2xl border border-custom-border-100 px-2 py-0.5 text-xs text-custom-text-300 hover:text-custom-text-200`}
|
|
onClick={() => setLinkModal(true)}
|
|
disabled={false}
|
|
>
|
|
<Plus className="h-3 w-3" /> New
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col gap-3">
|
|
{issue?.issue_link && issue.issue_link.length > 0 ? (
|
|
<LinksList
|
|
links={issue.issue_link}
|
|
handleDeleteLink={issueLinkDelete}
|
|
handleEditLink={handleEditLink}
|
|
userAuth={{
|
|
isGuest: currentProjectRole === EUserWorkspaceRoles.GUEST,
|
|
isViewer: currentProjectRole === EUserWorkspaceRoles.VIEWER,
|
|
isMember: currentProjectRole === EUserWorkspaceRoles.MEMBER,
|
|
isOwner: currentProjectRole === EUserWorkspaceRoles.ADMIN,
|
|
}}
|
|
/>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
});
|