mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
import React, { useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
// components
|
|
import { CycleDropdown } from "@/components/dropdowns";
|
|
// ui
|
|
// helpers
|
|
import { cn } from "@/helpers/common.helper";
|
|
import { useIssueDetail } from "@/hooks/store";
|
|
// types
|
|
import type { TIssueOperations } from "./root";
|
|
|
|
type TIssueCycleSelect = {
|
|
className?: string;
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
issueId: string;
|
|
issueOperations: TIssueOperations;
|
|
disabled?: boolean;
|
|
};
|
|
|
|
export const IssueCycleSelect: React.FC<TIssueCycleSelect> = observer((props) => {
|
|
const { className = "", workspaceSlug, projectId, issueId, issueOperations, disabled = false } = props;
|
|
// states
|
|
const [isUpdating, setIsUpdating] = useState(false);
|
|
// store hooks
|
|
const {
|
|
issue: { getIssueById },
|
|
} = useIssueDetail();
|
|
// derived values
|
|
const issue = getIssueById(issueId);
|
|
const disableSelect = disabled || isUpdating;
|
|
|
|
const handleIssueCycleChange = async (cycleId: string | null) => {
|
|
if (!issue || issue.cycle_id === cycleId) return;
|
|
setIsUpdating(true);
|
|
if (cycleId) await issueOperations.addIssueToCycle?.(workspaceSlug, projectId, cycleId, [issueId]);
|
|
else await issueOperations.removeIssueFromCycle?.(workspaceSlug, projectId, issue.cycle_id ?? "", issueId);
|
|
setIsUpdating(false);
|
|
};
|
|
|
|
return (
|
|
<div className={cn("flex h-full items-center gap-1", className)}>
|
|
<CycleDropdown
|
|
value={issue?.cycle_id ?? null}
|
|
onChange={handleIssueCycleChange}
|
|
projectId={projectId}
|
|
disabled={disableSelect}
|
|
buttonVariant="transparent-with-text"
|
|
className="group w-full"
|
|
buttonContainerClassName="w-full text-left"
|
|
buttonClassName={`text-sm justify-between ${issue?.cycle_id ? "" : "text-custom-text-400"}`}
|
|
placeholder="No cycle"
|
|
hideIcon
|
|
dropdownArrow
|
|
dropdownArrowClassName="h-3.5 w-3.5 hidden group-hover:inline"
|
|
/>
|
|
</div>
|
|
);
|
|
});
|